Warning, /webapps/ocs-webserver/library/lessphp/tests/inputs/selector_expressions.less is written in an unsupported language. File is not indexed.

0001 
0002 @color: blue;
0003 
0004 something @{color}, world {
0005         color: blue;
0006 }
0007 
0008 .div {
0009         @color: red;
0010         (3434) {
0011                 height: 100px;
0012         }
0013 
0014         cool @{color} {
0015                 height: 4000px;
0016         }
0017 }
0018 
0019 .heck(@a) { color: @a+10 }
0020 
0021 .spanX (@index) when (@index > 0) {
0022         .span@{index} { .heck(@index) }
0023         .spanX(@index - 1);
0024 }
0025 .spanX (0) {}
0026 
0027 .spanX (5);
0028 
0029