diff options
Diffstat (limited to 'theme-compiler/tests/resources/scss')
-rw-r--r-- | theme-compiler/tests/resources/scss/parent-selector.scss | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/theme-compiler/tests/resources/scss/parent-selector.scss b/theme-compiler/tests/resources/scss/parent-selector.scss index 68f66a4a27..c0ef46afb3 100644 --- a/theme-compiler/tests/resources/scss/parent-selector.scss +++ b/theme-compiler/tests/resources/scss/parent-selector.scss @@ -27,7 +27,23 @@ a { } .part { - &.one, &.two { + &.one, &.two, .non-parent { color: blue; } +} + +.root { + .part, .part2 { + &.one, .non-parent { + color: blue; + } + } +} + +.root2 { + .part, .part2 { + .one, .non-parent { + color: blue; + } + } }
\ No newline at end of file |