From c380ecbe45dbb507e12f5cf22c72313229e66530 Mon Sep 17 00:00:00 2001 From: Marc Englund Date: Thu, 4 Oct 2012 15:46:02 +0300 Subject: Partial fix for sass mixins with multiple optional params #9846 (author: seba) Change-Id: Iacd94ffb41a91e9dd20874cd7f981830e4267a87 --- theme-compiler/tests/resources/scss/mixins.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'theme-compiler/tests/resources/scss') 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); -- cgit v1.2.3