Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/vendor/leafo/lessphp/tests/inputs/selector_expressions.less

29 lines
303 B

@color: blue;
something @{color}, world {
color: blue;
}
.div {
@color: red;
(3434) {
height: 100px;
}
cool @{color} {
height: 4000px;
}
}
.heck(@a) { color: @a+10 }
.spanX (@index) when (@index > 0) {
.span@{index} { .heck(@index) }
.spanX(@index - 1);
}
.spanX (0) {}
.spanX (5);