summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/tests/resources')
-rw-r--r--theme-compiler/tests/resources/css/remove-directive.css8
-rw-r--r--theme-compiler/tests/resources/scss/remove-directive.scss12
2 files changed, 18 insertions, 2 deletions
diff --git a/theme-compiler/tests/resources/css/remove-directive.css b/theme-compiler/tests/resources/css/remove-directive.css
index b7fd2c7e6c..1e6d41c128 100644
--- a/theme-compiler/tests/resources/css/remove-directive.css
+++ b/theme-compiler/tests/resources/css/remove-directive.css
@@ -28,4 +28,12 @@
.exotic-animals .llama-icon {
background-image: url('/images/llama.png');
+}
+
+.ball {
+ font-size: 12px;
+}
+
+.cube {
+ font-size: 12px;
} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/remove-directive.scss b/theme-compiler/tests/resources/scss/remove-directive.scss
index cbfca9dcda..ca9a19522f 100644
--- a/theme-compiler/tests/resources/scss/remove-directive.scss
+++ b/theme-compiler/tests/resources/scss/remove-directive.scss
@@ -7,10 +7,18 @@ $remove : duck;
}
}
-remove($animals, $remove, space);
+$exotic : remove($animals, $remove, space);
-@each $animal in $animals{
+@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