Changes between Version 12 and Version 13 of DeveloperGuidelines/Themes/SCSS


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

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Themes/SCSS

    v12 v13  
    44== Creating the Theme ==
    55
    6 === CSS/SCSS Files and Folders ===
     6=== Directory Layout ===
    77
    88{{{
    99themes/THEME                    Base folder of the theme
    1010|
    11 +---theme.css                       the theme's SCSS-built parts
     11+---theme.css                       the theme's SCSS-built CSS style sheet
    1212+---style.css                       the theme's additional CSS (optional)
    13 +---eden.min.css                    css.cfg-built, minified CSS
     13+---eden.min.css                    css.cfg-built, minified CSS (includes the two above)
    1414+---*.css                           any additional injectable CSS (s3.stylesheets)
    15 
    16 themes/THEME/foundation         The theme's Foundation base style sheets (CSS)
    1715|
    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 
    23 themes/THEME/img                Image folder of the theme
    24 themes/THEME/js                 Script folder of the theme (injected scripts)
    25 themes/THEME/favicon.ico        The bookmark icon of the theme
    26 
    27 themes/THEME/scss               The SCSS environment of the theme
     16+---foundation                  The theme's Foundation base style sheets (CSS)
     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      "
    2822|
    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 +---config.rb                       the build configuration for Compass
     23+---scss                        The SCSS environment of the theme
     24|   |
     25|   +---_settings.scss              the theme's foundation SCSS settings (=> falls back to default/scss/_settings.scss if not present)
     26|   +---foundation.scss             the theme's foundation SCSS imports
     27|   +---foundation.rtl.scss         the theme's foundation SCSS RTL overrides
     28|   +---theme.scss                  the theme's SCSS imports
     29|   +---config.rb                   the build configuration for Compass
     30|   |
     31|   +---theme/                  The theme's SCSS sources
     32|       |
     33|       +---_base.scss              the theme's SCSS base (required)
     34|       +---_config.scss            the theme's Sahana-specific SCSS settings
     35|       +---_*.scss                 the individual SCSS sources (=> fall back to the corresponding default/scss/theme/*.scss)
    3436|
    35 +---theme/                      The theme's SCSS sources
    36     |
    37     +---_base.scss                  the theme's SCSS base (required)
    38     +---_config.scss                the theme's Sahana-specific SCSS settings
    39     +---_*.scss                     the individual SCSS sources (=> fall back to the corresponding default/scss/theme/*.scss)
     37+---img                         Image folder of the theme
     38+---js                          Script folder of the theme (injected scripts)
     39+---favicon.ico                 The bookmark icon of the theme
    4040}}}
    4141=== Copying from Skeleton ===