summaryrefslogtreecommitdiffstats
path: root/sass/tests/resources/scss/extends.scss
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-30 15:22:06 +0300
committerArtur Signell <artur@vaadin.com>2012-08-30 15:22:06 +0300
commitd028bf97a4ce9629b8ebab06978218fc9fa4ca71 (patch)
tree6ab09d7f23bf72e9a0f0f49ad5d2084ebcbe58fe /sass/tests/resources/scss/extends.scss
parented2a07f55455eef981944e57ea0e2e35ee11971a (diff)
downloadvaadin-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.scss13
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