~ubuntu-branches/ubuntu/wily/phabricator/wily

« back to all changes in this revision

Viewing changes to src/lint/linter/__tests__/lessc/rulesets.lint-test

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2014-11-01 23:20:06 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20141101232006-mvlnp0cil67tsboe
Tags: upstream-0~git20141101/arcanist
Import upstream version 0~git20141101, component arcanist

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#first > .one {
 
2
  > #second .two > #deux {
 
3
    width: 50%;
 
4
    #third {
 
5
      &:focus {
 
6
        color: black;
 
7
        #fifth {
 
8
          > #sixth {
 
9
            .seventh #eighth {
 
10
              + #ninth {
 
11
                color: purple;
 
12
              }
 
13
            }
 
14
          }
 
15
        }
 
16
      }
 
17
      height: 100%;
 
18
    }
 
19
    #fourth, #five, #six {
 
20
      color: #110000;
 
21
      .seven, .eight > #nine {
 
22
        border: 1px solid black;
 
23
      }
 
24
      #ten {
 
25
        color: red;
 
26
      }
 
27
    }
 
28
  }
 
29
  font-size: 2em;
 
30
}
 
31
~~~~~~~~~~