Blame view

node_modules/less/test/css/extend-selector.css 1.33 KB
ce4c83ff   wxy   初始提交
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
  .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;
  }
  .header .header-nav,
  .footer .footer-nav {
    background: red;
  }
  .header .header-nav:before,
  .footer .footer-nav:before {
    background: blue;
  }
  .issue-2586-bordered,
  .issue-2586-somepage .content {
    border: solid 1px black;
  }
  .issue-2586-somepage .content > span {
    margin-bottom: 10px;
  }