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/extends.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/extends.scss')
-rw-r--r-- | sass/tests/resources/scss/extends.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sass/tests/resources/scss/extends.scss b/sass/tests/resources/scss/extends.scss new file mode 100644 index 0000000000..c9e0f85381 --- /dev/null +++ b/sass/tests/resources/scss/extends.scss @@ -0,0 +1,13 @@ +.error { + border: 1px #f00; + background: #fdd; +} +.error.intrusion { + font-size: 1.3em; + font-weight: bold; +} + +.badError { + @extend .error; + border-width: 3px; +}
\ No newline at end of file |