Index
Outputs helper stylesheets (overriding stylesheets that should be output after base and components)
Variables
$all-includes
Variable Type: List
Default includes, all modules
$all-includes: (
"typography",
"units",
"display",
"utilities",
"print",
"color"
);
File Information
- File: _index.scss
- Group: index
- Type: variable
- Lines (comments): 23-24
- Lines (code): 26-33
$current-includes
Variable Type: List
Current included modules (for output when using styles), defaults to all
$current-includes: $all-includes;
File Information
- File: _index.scss
- Group: index
- Type: variable
- Lines (comments): 35-36
- Lines (code): 38-38
Mixins
set-includes()
Mixin
Change default includes (when user prints modules)
- This available as configuration so that it can be configured (to allow easily copying configuration)
File Information
- File: _index.scss
- Group: index
- Type: mixin
- Lines (comments): 40-43
- Lines (code): 45-48
Parameters
| Name | Type | Description |
|---|---|---|
| $includes | List |
List of modules by name to be included when styles are printed |
| $merge-mode | String |
Merge mode see utils.list-merge() ["merge" |
Require
set-excludes()
Mixin
Exclude certain items from includes
File Information
- File: _index.scss
- Group: index
- Type: mixin
- Lines (comments): 50-51
- Lines (code): 53-55
Parameters
| Name | Type | Description |
|---|---|---|
| $excludes | List |
List of item names |
Require
helper-styles()
Mixin
Prints all Helper styles
File Information
- File: _index.scss
- Group: index
- Type: mixin
- Lines (comments): 57-61
- Lines (code): 63-86
Examples
@include ulu.helper-styles();
Parameters
| Name | Type | Default | Description |
|---|---|---|---|
| $includes | List |
$all-includes | A list of components to include (defaults to all) |