summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/scss
diff options
context:
space:
mode:
authorSebastian Nyholm <sebastian@vaadin.com>2012-11-15 17:45:19 +0200
committerSebastian Nyholm <sebastian@vaadin.com>2012-11-15 17:45:19 +0200
commit0bfa96ee1e05ad0867eb22e05a44e3a4290ec586 (patch)
tree2064433c55e5799077c1ea87ee7b4fae2c2ba8b4 /theme-compiler/tests/resources/scss
parente54ff59fbe6a5452b469a355176351cd710663d1 (diff)
downloadvaadin-framework-0bfa96ee1e05ad0867eb22e05a44e3a4290ec586.tar.gz
vaadin-framework-0bfa96ee1e05ad0867eb22e05a44e3a4290ec586.zip
(#10174) Value of a variable cannot be assigned to another variable
Change-Id: Ib6879b685259c775fc9159e572c182093ae69f8d
Diffstat (limited to 'theme-compiler/tests/resources/scss')
-rw-r--r--theme-compiler/tests/resources/scss/variables.scss3
1 files changed, 3 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/scss/variables.scss b/theme-compiler/tests/resources/scss/variables.scss
index 60acc5dd10..2448aaddb9 100644
--- a/theme-compiler/tests/resources/scss/variables.scss
+++ b/theme-compiler/tests/resources/scss/variables.scss
@@ -1,6 +1,7 @@
$blue: #3bbfce;
$margin: 8px;
$chameleon-font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
+$font: 12px;
.content-navigation {
border-color: $blue;
@@ -8,6 +9,8 @@ $chameleon-font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode"
color: $blue;
color1: darken($blue, 9%);
font-family: $chameleon-font-family;
+ $font-size: $font;
+ font-size: $font-size;
}
.border {