summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/scss
diff options
context:
space:
mode:
authorMarc Englund <marc@vaadin.com>2012-10-04 15:46:02 +0300
committerMarc Englund <marc@vaadin.com>2012-10-04 15:46:02 +0300
commitc380ecbe45dbb507e12f5cf22c72313229e66530 (patch)
tree67d91903f56c40713b2b47aef8a8dab8b9841848 /theme-compiler/tests/resources/scss
parent98318862015078a756e3a37ef709eecf7012cdfd (diff)
downloadvaadin-framework-c380ecbe45dbb507e12f5cf22c72313229e66530.tar.gz
vaadin-framework-c380ecbe45dbb507e12f5cf22c72313229e66530.zip
Partial fix for sass mixins with multiple optional params #9846 (author: seba)
Change-Id: Iacd94ffb41a91e9dd20874cd7f981830e4267a87
Diffstat (limited to 'theme-compiler/tests/resources/scss')
-rw-r--r--theme-compiler/tests/resources/scss/mixins.scss5
1 files changed, 3 insertions, 2 deletions
diff --git a/theme-compiler/tests/resources/scss/mixins.scss b/theme-compiler/tests/resources/scss/mixins.scss
index 5ae7dc8faa..32d8250fe8 100644
--- a/theme-compiler/tests/resources/scss/mixins.scss
+++ b/theme-compiler/tests/resources/scss/mixins.scss
@@ -55,11 +55,12 @@ $mixinVar : 1px;
}
.banner {
- @include fontType(1px solid black);
+ @include fontType(1px solid black, $color : red);
}
-@mixin fontType($border){
+@mixin fontType($border, $color : black){
border : $border;
+ font-color: $color;
}
@include interpolation(interpolation);