summaryrefslogtreecommitdiffstats
path: root/tests/sass/resources/scss/nesting.scss
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-08-10 15:06:25 +0300
committerJohannes Dahlström <johannesd@vaadin.com>2012-08-10 15:06:25 +0300
commitb52fbdfc7f03d83b521cc969acae906b669cd64c (patch)
treec7b47951078fd37c848707a599444808c5c0a2fc /tests/sass/resources/scss/nesting.scss
parentff4988f6beaa0a1c8b908e098525afc3505ece64 (diff)
parent2bb642c779cb6dba9856882de92fec772590135f (diff)
downloadvaadin-framework-b52fbdfc7f03d83b521cc969acae906b669cd64c.tar.gz
vaadin-framework-b52fbdfc7f03d83b521cc969acae906b669cd64c.zip
Merge branch 'master' into root-cleanup
Diffstat (limited to 'tests/sass/resources/scss/nesting.scss')
-rw-r--r--tests/sass/resources/scss/nesting.scss40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/sass/resources/scss/nesting.scss b/tests/sass/resources/scss/nesting.scss
new file mode 100644
index 0000000000..0336c9e86d
--- /dev/null
+++ b/tests/sass/resources/scss/nesting.scss
@@ -0,0 +1,40 @@
+.top-bar {
+ color: red;
+ .alt {
+ color: blue;
+ }
+}
+
+.menu {
+ background-color: red;
+ a {
+ color: blue;
+ }
+}
+
+.caption {
+ padding: 10px;
+ .text, .header {
+ color: green;
+ }
+}
+
+.footer {
+ padding: 10px;
+ .left, .right {
+ color: purple;
+ a {
+ color: orange;
+ }
+ }
+}
+
+.main {
+ color: red;
+ .second.third {
+ color: blue;
+ .fourth {
+ color: black;
+ }
+ }
+} \ No newline at end of file