diff options
Diffstat (limited to 'vendor/leafo/lessphp/tests/outputs/nested.css')
-rw-r--r-- | vendor/leafo/lessphp/tests/outputs/nested.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/vendor/leafo/lessphp/tests/outputs/nested.css b/vendor/leafo/lessphp/tests/outputs/nested.css new file mode 100644 index 00000000..454dcfcc --- /dev/null +++ b/vendor/leafo/lessphp/tests/outputs/nested.css @@ -0,0 +1,51 @@ +#header { + color: black; +} +#header .navigation { + font-size: 12px; +} +#header .navigation .border .outside { + color: blue; +} +#header .logo { + width: 300px; +} +#header .logo:hover { + text-decoration: none; +} +a b ul li { + color: green; +} +div .cool { + color: green; +} +p .cool span { + color: yellow; +} +div another { + color: green; +} +p another span { + color: yellow; +} +b .something { + color: blue; +} +b.something { + color: blue; +} +.foo .bar .qux, +.foo .baz .qux { + display: block; +} +.qux .foo .bar, +.qux .foo .baz { + display: inline; +} +.qux .foo .bar .biz, +.qux .foo .baz .biz { + display: none; +} +b hello [x="&yeah"] { + color: red; +} |