summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/scss/functions.scss
diff options
context:
space:
mode:
authorMarc Englund <marc@vaadin.com>2012-09-21 11:52:52 +0300
committerMarc Englund <marc@vaadin.com>2012-09-21 11:53:22 +0300
commit8b28ea439cf09b69574009337c2659dd653d3760 (patch)
treec7e28e1e29b5608115b84f7b0b0cc334fd312455 /theme-compiler/tests/resources/scss/functions.scss
parent9500a714336d6f08b47f7cba980fc82faf318ef3 (diff)
downloadvaadin-framework-8b28ea439cf09b69574009337c2659dd653d3760.tar.gz
vaadin-framework-8b28ea439cf09b69574009337c2659dd653d3760.zip
Big SassCompiler change, fixes #9411 #9489 partials for #9354 #9545 #9380 (applied patch)
Diffstat (limited to 'theme-compiler/tests/resources/scss/functions.scss')
-rw-r--r--theme-compiler/tests/resources/scss/functions.scss4
1 files changed, 4 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/scss/functions.scss b/theme-compiler/tests/resources/scss/functions.scss
index abf6f6187d..b9860311ea 100644
--- a/theme-compiler/tests/resources/scss/functions.scss
+++ b/theme-compiler/tests/resources/scss/functions.scss
@@ -1,3 +1,5 @@
+$base-color : hsl(33, 7%, 89%);
+$app-bg-color : lighten($base-color, 6%);
.main {
margin: abs(-2px);
border: ceil(10.4px);
@@ -11,6 +13,8 @@
color: darken(#800, 20%);
color: lighten(#880000, 20%);
color: lighten(#800, 20%);
+ color : $base-color;
+ color : $app-bg-color;
}