Warning, /webapps/ocs-webserver/library/lessphp/tests/inputs/accessors.less.disable is written in an unsupported language. File is not indexed.
0001 /* accessors */
0002
0003 #defaults {
0004 @width: 960px;
0005 @color: black;
0006 .something {
0007 @space: 10px;
0008 @hello {
0009 color: green;
0010 }
0011 }
0012 }
0013
0014 .article { color: #294366; }
0015
0016 .comment {
0017 width: #defaults[@width];
0018 color: .article['color'];
0019 padding: #defaults > .something[@space];
0020 }
0021
0022 .wow {
0023 height: .comment['width'];
0024 background-color: .comment['color'];
0025 color: #defaults > .something > @hello['color'];
0026
0027 padding: #defaults > non-existant['padding'];
0028 margin: #defaults > .something['non-existant'];
0029 }
0030
0031 .mix {
0032 #defaults;
0033 font-size: .something[@space];
0034 }
0035
0036