diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/remove-directive.scss')
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/remove-directive.scss | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/remove-directive.scss b/theme-compiler/tests/resources/automatic/scss/remove-directive.scss deleted file mode 100644 index ca9a19522f..0000000000 --- a/theme-compiler/tests/resources/automatic/scss/remove-directive.scss +++ /dev/null @@ -1,24 +0,0 @@ -$animals : platypus, rhinoceros, llama, duck, duck; -$remove : duck; - -@each $animal in $animals { - .animals .#{$animal}-icon { - background-image: url('/images/#{$animal}.png'); - } -} - -$exotic : remove($animals, $remove, space); - -@each $animal in $exotic{ - .exotic-animals .#{$animal}-icon { - background-image: url('/images/#{$animal}.png'); - } -} - -$things : remove((ball,cube,duck), duck); - -@each $thing in $things{ - .#{$thing}{ - font-size: 12px; - } -}
\ No newline at end of file |