Changes between Version 16 and Version 17 of DeveloperGuidelines/Themes/SCSS


Ignore:
Timestamp:
07/05/18 12:07:46 (6 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Themes/SCSS

    v16 v17  
    4444== Building the Theme ==
    4545
    46 === Developer Preview ===
     46=== Debug Versions ===
    4747
     48The theme can be built using {{{compass}}}:
     49
     50{{{
     51cd static/themes/THEME/scss
     52compass compile
     53}}}
     54
     55This will rebuild the following CSS style sheets as/when required:
     56  - foundation/foundation.css
     57  - foundation/foundation.rtl.css
     58  - theme.css
     59
     60For longer development sessions, it can be convenient to let {{{compass}}} automatically rebuild the theme whenever a source changes:
     61{{{
     62cd static/themes/THEME/scss
     63compass watch
     64}}}
     65This runs continuously, watching the file system, and will automatically run {{{compass compile}}} when a source changes.
    4866=== Production ===
    4967