summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/extending-selector-with-same-beginning.scss
diff options
context:
space:
mode:
authorHaijian Wang <haijian@vaadin.com>2013-02-26 13:32:28 +0200
committerVaadin Code Review <review@vaadin.com>2013-02-26 14:37:42 +0000
commitb6feca3324b400e7abf870515ec8213715187c71 (patch)
tree23aae0524e56ad4f81ff6065f9de77397b19a579 /theme-compiler/tests/resources/automatic/scss/extending-selector-with-same-beginning.scss
parent4bffeac5c248bf9c2fb296231f4134925dde1d9c (diff)
downloadvaadin-framework-b6feca3324b400e7abf870515ec8213715187c71.tar.gz
vaadin-framework-b6feca3324b400e7abf870515ec8213715187c71.zip
Fixed several problems related to @extend directive (Ticket #10976)
Change-Id: I5e409856601aa514965319453c11946028b08dda
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/extending-selector-with-same-beginning.scss')
-rw-r--r--theme-compiler/tests/resources/automatic/scss/extending-selector-with-same-beginning.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/extending-selector-with-same-beginning.scss b/theme-compiler/tests/resources/automatic/scss/extending-selector-with-same-beginning.scss
new file mode 100644
index 0000000000..c7a9e5e921
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/scss/extending-selector-with-same-beginning.scss
@@ -0,0 +1,8 @@
+.test1 {
+ color: blue;
+}
+
+.test2 {
+ @extend .test1;
+ background: red;
+} \ No newline at end of file