File: extend-media.less

package info (click to toggle)
less.js 1.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,576 kB
  • ctags: 3,819
  • sloc: makefile: 105
file content (24 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.ext1 .ext2 {
  background: black;
}

@media tv {
  .ext1 .ext3 {
    color: white;
  }
  .tv-lowres :extend(.ext1 all) {
    background: blue;
  }
  @media hires {
    .ext1 .ext4 {
      color: green;
    }
    .tv-hires :extend(.ext1 all) {
      background: red;
    }
  }
}

.all:extend(.ext1 all) {

}