From d607559f2626d7984a99f0544783ba0ab7a62210 Mon Sep 17 00:00:00 2001 From: Kevin Ross Date: Wed, 4 Nov 2015 15:56:56 -0600 Subject: [PATCH] shadows are mixins and must be placed at the top for usage by other files (sass requirement) --- less/material.less | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/less/material.less b/less/material.less index 647128ab..9e9895f1 100644 --- a/less/material.less +++ b/less/material.less @@ -2,6 +2,7 @@ @import "_variables.less"; @import "_mixins.less"; @import "_icons-material-design.less"; +@import "_shadows.less"; // these are mixins only, and must be placed at the top before use (sass requiremnt) body { background-color: @body-bg; @@ -136,7 +137,3 @@ legend { @import "_plugin-nouislider.less"; @import "_plugin-selectize.less"; @import "_plugin-dropdownjs.less"; - -// Material shadows -// Place them on bottom of stylesheet to increase the importance of it and override other same-specificity selectors -@import "_shadows.less";