diff options
author | Haijian Wang <haijian@vaadin.com> | 2013-02-26 13:32:28 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-02-26 14:37:42 +0000 |
commit | b6feca3324b400e7abf870515ec8213715187c71 (patch) | |
tree | 23aae0524e56ad4f81ff6065f9de77397b19a579 /theme-compiler/tests/resources/automatic/scss/extending-selector-with-same-beginning.scss | |
parent | 4bffeac5c248bf9c2fb296231f4134925dde1d9c (diff) | |
download | vaadin-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.scss | 8 |
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 |