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

0001 #header {
0002   color: black;
0003 
0004   .navigation {
0005     font-size: 12px;
0006         .border {
0007                 .outside {
0008                         color: blue;
0009                 }
0010         }
0011   }
0012   .logo {
0013     width: 300px;
0014     &:hover { text-decoration: none }
0015   }
0016 }
0017 
0018 a { b { ul { li { color: green; } } } }
0019 
0020 this { will { not { show { } } } }
0021 
0022 .cool {
0023   div & { color: green; }
0024   p & span { color: yellow; }
0025 }
0026 
0027 another {
0028  .cool;
0029 }
0030 
0031 b {
0032   & .something {
0033     color: blue;
0034   }
0035 
0036   &.something {
0037     color: blue;
0038   }
0039 }
0040 
0041 .foo {
0042   .bar, .baz {
0043     & .qux {
0044       display: block;
0045     }
0046     .qux & {
0047       display: inline;
0048     }
0049     .qux & .biz {
0050       display: none;
0051     }
0052   }
0053 }
0054 
0055 b {
0056         hello [x="&yeah"] {
0057                 color: red;
0058         }
0059 }
0060