mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
3ee8f505b7
The main benefit of this is so that authors who make use of .editorconfig don't end up with whitespace changes in their PRs. Spaces vs. tabs has been left alone, although that could do with a tidy-up in SS4 after the switch to PSR-1/2. The command used was this: for match in '*.ss' '*.css' '*.scss' '*.html' '*.yml' '*.php' '*.js' '*.csv' '*.inc' '*.php5'; do find . -path ./thirdparty -not -prune -o -path ./admin/thirdparty -not -prune -o -type f -name "$match" -exec sed -E -i '' 's/[[:space:]]+$//' {} \+ find . -path ./thirdparty -not -prune -o -path ./admin/thirdparty -not -prune -o -type f -name "$match" | xargs perl -pi -e 's/ +$//' done
69 lines
2.0 KiB
SCSS
69 lines
2.0 KiB
SCSS
/**
|
|
* This file is the central collection of included modules, links to custom SCSS files,
|
|
* and any global SCSS variable definitions.
|
|
*
|
|
* DO NOT ADD stylesheet rules to this file directly!
|
|
*
|
|
* Note: By prefixing files with an underscore, they won't create individual CSS files.
|
|
*
|
|
* Notes:
|
|
* --------------------------------------------------------------
|
|
* Z-indexes:
|
|
* * Menu bar on the right should always be on top. This is in the 80 range
|
|
* * Top navingation bar must always sit over the content. This is in the 60 range
|
|
* * Footer must sit over the content as well so this in the 40 range
|
|
*/
|
|
|
|
/** -----------------------------
|
|
* Core Compass Libraries
|
|
* ------------------------------ */
|
|
@import "compass/reset";
|
|
@import "compass/css3";
|
|
@import "compass/utilities/sprites/sprite-img";
|
|
@import "compass/utilities/general";
|
|
@import "compass/support";
|
|
|
|
/*$experimental-support-for-svg variable comes from
|
|
imported compass/support file and enables svg gradients in IE9.
|
|
It was put here because there didn't seem to be a more logical place to put it.
|
|
If more variables exist in the future, consider creating a variables file.*/
|
|
|
|
$experimental-support-for-svg: true;
|
|
|
|
/** -----------------------------
|
|
* Theme
|
|
* ------------------------------ */
|
|
@import "themes/default.scss";
|
|
|
|
/** -----------------------------
|
|
* Custom mixins
|
|
* ------------------------------ */
|
|
@import "mixins.scss";
|
|
|
|
/** -----------------------------
|
|
* Sprite images
|
|
* ----------------------------- */
|
|
@import "sprites.scss";
|
|
|
|
/** -----------------------------
|
|
* CMS Components
|
|
* ------------------------------ */
|
|
@import "fonts.scss";
|
|
@import "typography.scss";
|
|
@import "uitheme.scss";
|
|
@import "forms.scss";
|
|
@import "style.scss";
|
|
@import "tree.scss";
|
|
@import "menu.scss";
|
|
@import "preview.scss";
|
|
@import "actionTabs.scss";
|
|
@import "ModelAdmin.scss";
|
|
@import "SecurityAdmin.scss";
|
|
@import "CMSSecurity.scss";
|
|
|
|
/** -----------------------------
|
|
* Retina graphics
|
|
* ----------------------------- */
|
|
@import "retina.scss";
|
|
|