diff options
author | Marc Englund <marc@vaadin.com> | 2012-10-04 15:46:02 +0300 |
---|---|---|
committer | Marc Englund <marc@vaadin.com> | 2012-10-04 15:46:02 +0300 |
commit | c380ecbe45dbb507e12f5cf22c72313229e66530 (patch) | |
tree | 67d91903f56c40713b2b47aef8a8dab8b9841848 /theme-compiler/tests/resources/scss | |
parent | 98318862015078a756e3a37ef709eecf7012cdfd (diff) | |
download | vaadin-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.scss | 5 |
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); |