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/automatic/css/selector-with-parenthesis.css5
-rw-r--r--theme-compiler/tests/resources/automatic/scss/selector-with-parenthesis.scss11
2 files changed, 16 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/css/selector-with-parenthesis.css b/theme-compiler/tests/resources/automatic/css/selector-with-parenthesis.css
new file mode 100644
index 0000000000..5b9066b7f0
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/css/selector-with-parenthesis.css
@@ -0,0 +1,5 @@
+@charset "UTF-8";
+
+.foo .v-button:not(.link) {
+ color: #323232;
+} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/automatic/scss/selector-with-parenthesis.scss b/theme-compiler/tests/resources/automatic/scss/selector-with-parenthesis.scss
new file mode 100644
index 0000000000..8bc6271e29
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/scss/selector-with-parenthesis.scss
@@ -0,0 +1,11 @@
+@charset "UTF-8";
+
+@mixin buttons {
+ .v-button:not(.link) {
+ color: #323232;
+ }
+}
+
+.foo {
+ @include buttons;
+} \ No newline at end of file