summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/scss/parent-selector.scss
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/tests/resources/scss/parent-selector.scss')
-rw-r--r--theme-compiler/tests/resources/scss/parent-selector.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/scss/parent-selector.scss b/theme-compiler/tests/resources/scss/parent-selector.scss
index 3d0f694801..60e7608c07 100644
--- a/theme-compiler/tests/resources/scss/parent-selector.scss
+++ b/theme-compiler/tests/resources/scss/parent-selector.scss
@@ -11,4 +11,14 @@ a {
font-weight: bold;
&:hover { color: red; }
}
+}
+
+@mixin parent {
+ &:hover {
+ color: blue;
+ }
+}
+
+.mixin-parent {
+ @include parent;
} \ No newline at end of file