summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/remove-directive.scss
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2012-11-27 11:14:57 +0200
committerHenri Sara <hesara@vaadin.com>2012-11-27 11:14:57 +0200
commite8ef66d2d6dde9cb1b9b0fa0df24643c1e0f6f26 (patch)
treee1db21d0bdbf3eede8f721527ce57a12e86d4c7d /theme-compiler/tests/resources/automatic/scss/remove-directive.scss
parentec9b340b8d2bbbaed560834ad828f7d9857eaf15 (diff)
downloadvaadin-framework-e8ef66d2d6dde9cb1b9b0fa0df24643c1e0f6f26.tar.gz
vaadin-framework-e8ef66d2d6dde9cb1b9b0fa0df24643c1e0f6f26.zip
Move some SCSS tests to be scanned automatically
Change-Id: I7590c6cd20f649a5c02e92673d44cf1c2721b95d
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/remove-directive.scss')
-rw-r--r--theme-compiler/tests/resources/automatic/scss/remove-directive.scss24
1 files changed, 24 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/remove-directive.scss b/theme-compiler/tests/resources/automatic/scss/remove-directive.scss
new file mode 100644
index 0000000000..ca9a19522f
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/scss/remove-directive.scss
@@ -0,0 +1,24 @@
+$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