diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-26 17:05:59 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-26 17:05:59 +0000 |
commit | c27a7044bb0ed55eb51b53bd7b2bd9204d614383 (patch) | |
tree | 768ff83ba6a21ce2b30586d4412ae2b7fa85aec8 /theme-compiler/tests/resources/sasslangbroken/css/224-update_stylesheet.css | |
parent | a325ce3dd531a59d87842e304aaeb6ccb81fb6bb (diff) | |
parent | e87d3ac6027d48bfcdb4d77ec28a1eb3181c0ee8 (diff) | |
download | vaadin-framework-c27a7044bb0ed55eb51b53bd7b2bd9204d614383.tar.gz vaadin-framework-c27a7044bb0ed55eb51b53bd7b2bd9204d614383.zip |
Merge "Refactor tests imported from the sass-lang project (#9751)"
Diffstat (limited to 'theme-compiler/tests/resources/sasslangbroken/css/224-update_stylesheet.css')
-rw-r--r-- | theme-compiler/tests/resources/sasslangbroken/css/224-update_stylesheet.css | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/sasslangbroken/css/224-update_stylesheet.css b/theme-compiler/tests/resources/sasslangbroken/css/224-update_stylesheet.css new file mode 100644 index 0000000000..f5e45c8df5 --- /dev/null +++ b/theme-compiler/tests/resources/sasslangbroken/css/224-update_stylesheet.css @@ -0,0 +1,79 @@ +@import url(basic.css); +@import url(../results/complex.css); +imported { + otherconst: hello; + myconst: goodbye; + pre-mixin: here; +} + +body { + font: Arial; + background: blue; +} + +#page { + width: 700px; + height: 100; +} +#page #header { + height: 300px; +} +#page #header h1 { + font-size: 50px; + color: blue; +} + +#content.user.show #container.top #column.left { + width: 100px; +} +#content.user.show #container.top #column.right { + width: 600px; +} +#content.user.show #container.bottom { + background: brown; +} + +midrule { + inthe: middle; +} + +scss { + imported: yes; +} + +body { + font: Arial; + background: blue; +} + +#page { + width: 700px; + height: 100; +} +#page #header { + height: 300px; +} +#page #header h1 { + font-size: 50px; + color: blue; +} + +#content.user.show #container.top #column.left { + width: 100px; +} +#content.user.show #container.top #column.right { + width: 600px; +} +#content.user.show #container.bottom { + background: brown; +} + +#foo { + background-color: #bbaaff; +} + +nonimported { + myconst: hello; + otherconst: goodbye; + post-mixin: here; +} |