wp-autoless/vendor/leafo/lessphp/tests/inputs/compile_on_mixin.less

40 lines
322 B
Text
Raw Normal View History

2016-07-25 13:40:28 +01:00
@mixin {
height: 22px;
ul {
height: 20px;
li {
@color: red;
height: 10px;
div span, link {
margin: 10px;
color: @color;
}
}
div, p {
border: 1px;
&.hello {
color: green;
}
:what {
color: blue;
}
}
a {
b {
color: blue;
}
}
}
}
body {
@mixin;
}