File: extend-media.less

package info (click to toggle)
less.js 1.6.3~dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,240 kB
  • sloc: sh: 128; makefile: 35; perl: 11
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) {

}