UNPKG

less-tests

Version:

LESS CSS test-suite. Run any kind of test on LESS stylesheets.

30 lines (25 loc) 362 B
.sidebar { width: 300px; background: red; .box { background: #FFF; border: 1px solid #000; margin: 10px 0; } } .sidebar2 { &:extend(.sidebar all); background: blue; } .type1 { .sidebar3 { &:extend(.sidebar all); background: green; } } .type2 { &.sidebar4 { &:extend(.sidebar all); background: red; } }