Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
18027 Weergaven

Hi, After looking around for a solution of the to small form sheet I figured out the base.sass file defining the sheet-max-width for the forms in the webUI. There are some places describe how the change the CSS files to achieve a wider form sheet. however since the base.sass file already declares a variable for $sheet-max-width I changed this variable. Anybody knows how to recompile the CSS files from the SASS file? The Makefile included in the directory makes clear the sass command needs to be called. The question is, is this save (enough) to call make on a "production" system or is this mentioned as a build step while packaging? Further is it easy to write a very simple module overwriting this settings or export this settings to a configuration screen?

Avatar
Annuleer
Beste antwoord

[This tutorial works with Debian systems]

In order to be able to convert SASS file to CSS you will need to install sass package from RubyGems. First you need to install rubygems using the following command:

apt-get install rubygems

After that you will need to fix your path because if you try to run sass you will get sass: Command not found error. To do this type the following commands on your terminal and relogin to refresh your basj script:

echo 'PATH=/var/lib/gems/1.8/bin:$PATH' >

/etc/profile.d/gemspath.sh chmod 0755 /etc/profile.d/gemspath.sh

Now we can use gem to install sass package:

gem install sass

After you make the changes in the same directory openerp-web/addons/web/static/src/css/ type make

cd openerp-web/addons/web/static/src/css
make

you should get output like this:

openerp@oerpdev:~/openerp-web/web/addons/web/static/src/css$

make sass --trace -t expanded base.sass base.css

And your base.sass is recompiled to base.css

Avatar
Annuleer

Isn't there a way to to this without Ruby?

I don't Know.

sass --trace -t expanded base.sass base.css base.sass:776: Inconsistent indentation: 3 tabs were used for indentation, but the rest of the document was indented using 4 spaces. (Sass::SyntaxError) from /var/lib/gems/1.8/gems/sass-3.2.14/bin/../lib/sass/../sass/engine.rb:424:in tabulate' from /usr/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:36:ineach_with_index' from /var/lib/gems/1.8/gems/sass-3.2.14/bin/../lib/sass/../sass/engine.rb:382:in each' from /var/lib/gems/1.8/gems/sass-3.2.14/bin/../lib/sass/../sass/engine.rb:382:ineach_with_index'

Gerelateerde posts Antwoorden Weergaven Activiteit
1
mrt. 15
4035
2
mrt. 15
9626
1
mei 25
696
2
mei 25
1265
0
nov. 24
1069