diff options
Diffstat (limited to 'theme-compiler/tests/resources/scss/control-directives.scss')
-rw-r--r-- | theme-compiler/tests/resources/scss/control-directives.scss | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/theme-compiler/tests/resources/scss/control-directives.scss b/theme-compiler/tests/resources/scss/control-directives.scss deleted file mode 100644 index 6cf05518bf..0000000000 --- a/theme-compiler/tests/resources/scss/control-directives.scss +++ /dev/null @@ -1,42 +0,0 @@ -$borderWeight : solid; - -@mixin animals($list : puma, sea-slug, egret, salamander){ - @each $animal in $list { - .#{$animal}-icon #animal, .menu { - background-image: url('/images/#{$animal}.png'); - @include logo(10px); - @if 1+1 == 2 { border: 1px solid; } - } - } -} - -@include animals; - -.trueIf { - @if solid != dotted { border: 1px $borderWeight; } - @else { border: 2px solid; } -} - -.falseIf { - @if 1+2 == 2 { border: 2px solid; } - @else { border: 1px solid; } -} - -.falseIfTrueElse { - @if 1+2 == 2 { border: 2px solid; } - @else if 1+1 == 2 { border: 1px solid; } - @else { border: 3px solid; } -} - -@each $thing in cube, triangle, circle{ - .#{$thing}-icon { - background-image: url('/images/#{$thing}.png'); - } -} - -@mixin logo($size){ - font: { - size: $size; - color: blue; - } -}
\ No newline at end of file |