summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/doc_class_panel_autocomplete_stylesheet.css
blob: 473e14bbbd6f097399001b1e76f4d72bb0656c93 (plain)
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
.auto-stylesheet-class-1 {
  padding: 1em;
}
.auto-stylesheet-class-2 {
  padding: 2em;
}
.auto-stylesheet-class-3 {
  padding: 3em;
}

.auto-stylesheet-class-1,
div.auto-stylesheet-class-2,
p:first-of-type.auto-stylesheet-class-3,
.auto-stylesheet-class-4 {
  background-color: blue;
}

:root .auto-bold .auto-stylesheet-class-5 {
  font-size: 1em;

  & .auto-stylesheet-nested-class-1,
  &:is(.auto-stylesheet-nested-class-2),
  &:has(.auto-stylesheet-nested-class-3) {
    font-weight: bold;
  }
}

@media (min-width: 1000px) {
  .auto-stylesheet-nested-class-4 {
    color: black;
  }

  @media (prefers-color-scheme: dark) {
    .auto-stylesheet-nested-class-5 {
      color: white;

      &.auto-stylesheet-nested-class-6 {
        outline: 1px solid;
      }
    }
  }
}