Changes between Version 10 and Version 11 of DeveloperGuidelines/Themes/SCSS


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

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Themes/SCSS

    v10 v11  
    44== Creating the Theme ==
    55
    6 === Files and Folders ===
     6=== CSS/SCSS Files and Folders ===
    77
     8{{{
     9themes/THEME                    Base folder
     10|
     11+---theme.css                       the theme's SCSS-built parts
     12+---style.css                       the theme's additional CSS (optional)
     13+---eden.min.css                    css.cfg-built, minified CSS
     14+---*.css                           any additional injectable CSS (s3.stylesheets)
     15
     16themes/THEME/foundation         The theme's Foundation base stylesheets
     17|
     18+---foundation.css                  the theme's foundation stylesheet for Left-to-Right writing direction
     19+---foundation.rtl.css              the theme's foundation stylesheet for Right-to-Left writing direction
     20+---foundation.min.css              minified versions of the above
     21+---foundation.rtl.min.css          "
     22
     23themes/THEME/img                Image folder of the theme
     24themes/THEME/js                 Script folder of the theme (injected scripts)
     25themes/THEME/favicon.ico        The bookmark icon of the theme
     26
     27themes/THEME/scss               the SCSS folder of the theme
     28|
     29+---_settings.scss                  the theme's foundation SCSS settings (=> falls back to default/scss/_settings.scss if not present)
     30+---foundation.scss                 the theme's foundation SCSS imports
     31+---foundation.rtl.scss             the theme's foundation SCSS RTL overrides
     32+---theme.scss                      the theme's SCSS imports
     33|
     34+---theme/                      the theme's SCSS sources
     35    |
     36    +---_base.scss                  the theme's SCSS base (required)
     37    +---_config.scss                the theme's Sahana-specific SCSS settings
     38    +---_*.scss                     the individual SCSS sources (=> fall back to the corresponding default/scss/theme/*.scss)
     39
     40}}}
    841=== Copying from Skeleton ===
    942