File: extend-selector.css

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 (72 lines) | stat: -rw-r--r-- 1,075 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.error,
.badError {
  border: 1px #f00;
  background: #fdd;
}
.error.intrusion,
.badError.intrusion {
  font-size: 1.3em;
  font-weight: bold;
}
.intrusion .error,
.intrusion .badError {
  display: none;
}
.badError {
  border-width: 3px;
}
.foo .bar,
.foo .baz,
.ext1 .ext2 .bar,
.ext1 .ext2 .baz,
.ext3 .bar,
.ext3 .baz,
.ext4 .bar,
.ext4 .baz {
  display: none;
}
div.ext5,
.ext6 > .ext5,
div.ext7,
.ext6 > .ext7 {
  width: 100px;
}
.ext,
.a .c,
.b .c {
  test: 1;
}
.a,
.b {
  test: 2;
}
.a .c,
.b .c {
  test: 3;
}
.a .c .d,
.b .c .d {
  test: 4;
}
.replace.replace .replace,
.c.replace + .replace .replace,
.replace.replace .c,
.c.replace + .replace .c,
.rep_ace .rep_ace .rep_ace,
.c.rep_ace + .rep_ace .rep_ace,
.rep_ace .rep_ace .c,
.c.rep_ace + .rep_ace .c {
  prop: copy-paste-replace;
}
.attributes [data="test"],
.attributes .attributes .attribute-test {
  extend: attributes;
}
.attributes [data],
.attributes .attributes .attribute-test2 {
  extend: attributes2;
}
.attributes [data="test3"],
.attributes .attributes .attribute-test {
  extend: attributes2;
}