Changes between Version 8 and Version 9 of DeveloperGuidelines/Themes/SCSS


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

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Themes/SCSS

    v8 v9  
    22[[TOC]]
    33
    4 == Adding Foundation to layout.html ==
     4== Creating an SCSS-built Foundation Theme ==
    55
    6 === Base Styles ===
     6=== Files and Folders ===
     7
     8=== Copying from Skeleton ===
     9
     10== Building the Theme ==
     11
     12=== Developer Preview ===
     13
     14=== Production ===
     15
     16== Using the Theme in a Template ==
     17
     18=== Adding Foundation to layout.html ===
     19
     20==== Base Styles ====
    721
    822Foundation-based themes must include the '''Foundation base stylesheets''', ahead of any Sahana style sheets:
     
    3448}}}
    3549
    36 === Scripts ===
     50==== Scripts ====
    3751
    3852Additionally, Foundation requires loading and initialization of some scripts at the end of the {{{<body>}}}. The corresponding sequence is also encoded in a view template {{{views/foundation.js.html}}}, so it can easily be added to {{{layout.html}}}:
     
    4559}}}
    4660
    47 == Adding Theme Styles to css.cfg ==
     61=== Adding Theme Styles to css.cfg ===
    4862
    4963The SCSS-built {{{theme.css}}} style sheet is included at the end of {{{css.cfg}}}:
     
    5771
    5872It can be followed by an optional {{{THEME/style.css}}} to add CSS for template-specific elements as well as final overrides. The {{{style.css}}} style sheet is not built from SCSS, so it can be edited directly.
     73