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

« back to all changes in this revision

Viewing changes to src/lint/linter/__tests__/lessc/extend-media.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
.ext1 .ext2 {
 
2
  background: black;
 
3
}
 
4
 
 
5
@media tv {
 
6
  .ext1 .ext3 {
 
7
    color: white;
 
8
  }
 
9
  .tv-lowres :extend(.ext1 all) {
 
10
    background: blue;
 
11
  }
 
12
  @media hires {
 
13
    .ext1 .ext4 {
 
14
      color: green;
 
15
    }
 
16
    .tv-hires :extend(.ext1 all) {
 
17
      background: red;
 
18
    }
 
19
  }
 
20
}
 
21
 
 
22
.all:extend(.ext1 all) {
 
23
 
 
24
}
 
25
~~~~~~~~~~