diff options
author | Henri Sara <hesara@vaadin.com> | 2013-05-23 12:42:14 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-05-28 14:07:51 +0000 |
commit | 3b888fe28b22de289ac658e9d36073d751705c70 (patch) | |
tree | f50482e2b59e4683545abffd62f67ef57e728f08 /theme-compiler/tests/resources | |
parent | 51c9fb5322c450ab51de728a735cc6ad6975ca00 (diff) | |
download | vaadin-framework-3b888fe28b22de289ac658e9d36073d751705c70.tar.gz vaadin-framework-3b888fe28b22de289ac658e9d36073d751705c70.zip |
Support nested SASS imports (#11909)
Change-Id: I05f88e398e7e28f476d8c0d50b7f9ac54a7cba0b
Diffstat (limited to 'theme-compiler/tests/resources')
-rw-r--r-- | theme-compiler/tests/resources/automatic/css/nested-import.css | 5 | ||||
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/nested-import.scss | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/css/nested-import.css b/theme-compiler/tests/resources/automatic/css/nested-import.css new file mode 100644 index 0000000000..7c6793f9ed --- /dev/null +++ b/theme-compiler/tests/resources/automatic/css/nested-import.css @@ -0,0 +1,5 @@ +.foo .bar { + background: url(foo/lorem.png); + background: url(foo/lorem.png); + background: url(foo/lorem.png); +}
\ No newline at end of file diff --git a/theme-compiler/tests/resources/automatic/scss/nested-import.scss b/theme-compiler/tests/resources/automatic/scss/nested-import.scss new file mode 100644 index 0000000000..605d64a13a --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/nested-import.scss @@ -0,0 +1,3 @@ +.foo { + @import "foo/bar.scss"; +}
\ No newline at end of file |