diff options
Diffstat (limited to 'tests/sass/resources/scss/parent-selector.scss')
-rw-r--r-- | tests/sass/resources/scss/parent-selector.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/sass/resources/scss/parent-selector.scss b/tests/sass/resources/scss/parent-selector.scss new file mode 100644 index 0000000000..3d0f694801 --- /dev/null +++ b/tests/sass/resources/scss/parent-selector.scss @@ -0,0 +1,14 @@ +a { + font-weight: bold; + text-decoration: none; + &:hover { text-decoration: underline; } + body.firefox & { font-weight: normal; } +} + +#main { + color: black; + a { + font-weight: bold; + &:hover { color: red; } + } +}
\ No newline at end of file |