diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-30 15:22:06 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-30 15:22:06 +0300 |
commit | d028bf97a4ce9629b8ebab06978218fc9fa4ca71 (patch) | |
tree | 6ab09d7f23bf72e9a0f0f49ad5d2084ebcbe58fe /sass/tests/resources/scss/parent-selector.scss | |
parent | ed2a07f55455eef981944e57ea0e2e35ee11971a (diff) | |
download | vaadin-framework-d028bf97a4ce9629b8ebab06978218fc9fa4ca71.tar.gz vaadin-framework-d028bf97a4ce9629b8ebab06978218fc9fa4ca71.zip |
Moved tests/sass to sass/tests (#9299)
Diffstat (limited to 'sass/tests/resources/scss/parent-selector.scss')
-rw-r--r-- | sass/tests/resources/scss/parent-selector.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sass/tests/resources/scss/parent-selector.scss b/sass/tests/resources/scss/parent-selector.scss new file mode 100644 index 0000000000..3d0f694801 --- /dev/null +++ b/sass/tests/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 |