-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
62 lines (51 loc) · 1.31 KB
/
styles.css
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
.import-export-div .setting-item {
border-top: none;
}
.pattern,
.command {
border-top: 2px solid var(--interactive-accent);
}
.pattern:nth-last-child(2),
.command:nth-last-child(2) {
border-bottom: 2px solid var(--interactive-accent);
margin-bottom: 1em;
}
.patterns .rule.disabled,
.patterns .pattern .is-disabled,
.patterns .rule .is-disabled,
.commands .command .is-disabled {
opacity: 50%;
}
.bold {
font-weight: bold;
}
.pattern.collapsed [aria-label="Expand"] {
color: var(--interactive-success);
}
.pattern.collapsed .pattern-rules,
.pattern.collapsed .pattern-cursor {
display: none;
}
.pattern.primed div[aria-label="Delete pattern"],
.rule.primed div[aria-label="Delete rule"],
.command.primed div[aria-label="Delete command"] {
color: var(--text-error) !important;
}
.clear-settings-button.primed button {
background-color: var(--background-modifier-error) !important;
color: var(--text-error) !important;
}
.commands .bold {
color: var(--text-error);
font-size: 1.15em;
}
.invalid input[type='text'] {
background: rgb(255, 0, 0, 0.2) !important;
}
.validation-text {
color: var(--text-error) !important;
text-align: right;
display: block;
font-size: small;
font-style: italic;
}