You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.2 KiB
55 lines
1.2 KiB
/*******************************
|
|
Import Directives
|
|
*******************************/
|
|
|
|
@theme : @@element;
|
|
|
|
|
|
/*--------------------
|
|
Site Variables
|
|
---------------------*/
|
|
|
|
/* Default */
|
|
@import "@{themesFolder}/default/globals/site.variables";
|
|
|
|
/* Packaged Theme */
|
|
@import (optional) "@{themesFolder}/@{site}/globals/site.variables";
|
|
|
|
/* Site Theme */
|
|
@import (optional) "@{siteFolder}/globals/site.variables";
|
|
|
|
|
|
/*-------------------
|
|
Component Variables
|
|
---------------------*/
|
|
|
|
/* Default */
|
|
@import "@{themesFolder}/default/@{type}s/@{element}.variables";
|
|
|
|
/* Packaged Theme */
|
|
@import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.variables";
|
|
|
|
/* Site Theme */
|
|
@import (optional) "@{siteFolder}/@{type}s/@{element}.variables";
|
|
|
|
|
|
/*******************************
|
|
Mix-ins
|
|
*******************************/
|
|
|
|
/*------------------
|
|
Fonts
|
|
-------------------*/
|
|
|
|
.loadFonts() when (@importGoogleFonts) {
|
|
@import url('@{googleProtocol}fonts.googleapis.com/css?family=@{googleFontRequest}');
|
|
}
|
|
|
|
/*------------------
|
|
Overrides
|
|
-------------------*/
|
|
|
|
.loadUIOverrides() {
|
|
@import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.overrides";
|
|
@import (optional) "@{siteFolder}/@{type}s/@{element}.overrides";
|
|
}
|