From d028bf97a4ce9629b8ebab06978218fc9fa4ca71 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Thu, 30 Aug 2012 15:22:06 +0300 Subject: Moved tests/sass to sass/tests (#9299) --- sass/tests/resources/scss/nesting.scss | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 sass/tests/resources/scss/nesting.scss (limited to 'sass/tests/resources/scss/nesting.scss') diff --git a/sass/tests/resources/scss/nesting.scss b/sass/tests/resources/scss/nesting.scss new file mode 100644 index 0000000000..0336c9e86d --- /dev/null +++ b/sass/tests/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 -- cgit v1.2.3