main
css 90 lines 1.79 KB
Raw
1 .InspectedElement {
2 display: flex;
3 flex-direction: column;
4 height: 100%;
5 width: 100%;
6 border-top: 1px solid var(--color-border);
7 }
8
9 .TitleRow {
10 flex: 0 0 42px;
11 display: flex;
12 align-items: center;
13 font-size: var(--font-size-monospace-large);
14 border-bottom: 1px solid var(--color-border);
15 padding: 0.5rem;
16 }
17
18 .Key {
19 flex: 0 1 auto;
20 padding-left: 0.25rem;
21 padding-right: 0.125rem;
22 line-height: 1rem;
23 border-top-left-radius: 0.125rem;
24 border-bottom-left-radius: 0.125rem;
25 display: inline-block;
26 background-color: var(--color-component-badge-background);
27 color: var(--color-text);
28 font-family: var(--font-family-monospace);
29 font-size: var(--font-size-monospace-small);
30 white-space: nowrap;
31 overflow: hidden;
32 text-overflow: ellipsis;
33 max-width: 100%;
34 }
35
36 .KeyArrow {
37 height: 1rem;
38 width: 1rem;
39 margin-right: -0.25rem;
40 border: 0.5rem solid transparent;
41 border-left: 0.5rem solid var(--color-component-badge-background);
42 }
43
44 .SelectedComponentName {
45 flex: 1 1 auto;
46 overflow: hidden;
47 display: flex;
48 padding: 0.25rem 0;
49 height: 100%;
50 align-items: flex-end;
51 }
52
53 .ComponentName {
54 color: var(--color-component-name);
55 font-family: var(--font-family-monospace);
56 font-size: var(--font-size-monospace-normal);
57 white-space: nowrap;
58 overflow: hidden;
59 text-overflow: ellipsis;
60 max-width: 100%;
61 }
62
63 .StrictModeNonCompliantComponentName {
64 color: var(--color-console-error-icon);
65 }
66
67 .Loading {
68 padding: 0.25rem;
69 color: var(--color-dimmer);
70 font-style: italic;
71 }
72
73 .NoInspectionFallback {
74 padding: 0.25rem;
75 font-style: italic;
76 }
77
78 .StrictModeNonCompliant {
79 display: inline-flex;
80 padding: 0.25rem;
81 color: var(--color-console-error-icon);
82 }
83
84 .VRule {
85 height: 20px;
86 width: 1px;
87 flex: 0 0 1px;
88 margin: 0 0.5rem;
89 background-color: var(--color-border);
90 }