diff options
Diffstat (limited to 'theme-compiler/tests/resources/scss/parent-selector.scss')
-rw-r--r-- | theme-compiler/tests/resources/scss/parent-selector.scss | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/theme-compiler/tests/resources/scss/parent-selector.scss b/theme-compiler/tests/resources/scss/parent-selector.scss deleted file mode 100644 index 74f0e15b9e..0000000000 --- a/theme-compiler/tests/resources/scss/parent-selector.scss +++ /dev/null @@ -1,53 +0,0 @@ -a { - font-weight: bold; - text-decoration: none; - .sub { - color: blue; - } - &:hover { text-decoration: underline; } - body.firefox & { font-weight: normal; } -} - -#main { - color: black; - a { - font-weight: bold; - &:hover { color: red; } - } -} - -@mixin parent { - &:hover { - color: blue; - } -} - -.mixin-parent { - @include parent; -} - -.part { - &.one, &.two, .non-parent { - color: blue; - } -} - -.root { - .part, .part2 { - &.one, .non-parent { - color: blue; - } - } -} - -.root2 { - .part, .part2 { - .one, .non-parent { - color: blue; - } - } -} - -&.drop-parent-reference { - color: green; -}
\ No newline at end of file |