-
Notifications
You must be signed in to change notification settings - Fork 50.7k
Expand file tree
/
Copy pathStyleEditor.css
More file actions
51 lines (42 loc) · 835 Bytes
/
StyleEditor.css
File metadata and controls
51 lines (42 loc) · 835 Bytes
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
.StyleEditor {
font-family: var(--font-family-monospace);
font-size: var(--font-size-monospace-normal);
padding: 0.25rem;
}
.HeaderRow {
display: flex;
align-items: center;
}
.Header {
flex: 1 1;
}
.Brackets {
font-family: var(--font-family-sans);
font-size: var(--font-size-sans-small);
}
.Row {
white-space: nowrap;
padding-left: 1rem;
display: flex;
align-items: center;
}
.Invalid {
background-color: var(--color-background-invalid);
color: var(--color-text-invalid);
--color-border: var(--color-text-invalid);
}
.Attribute {
color: var(--color-attribute-name);
}
.Value {
color: var(--color-attribute-value);
}
.Input {
flex: 0 1 auto;
padding: 1px;
box-shadow: 0px 1px 3px transparent;
}
.Input:focus {
color: var(--color-text);
box-shadow: 0px 1px 3px var(--color-shadow);
}