-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (51 loc) · 1.33 KB
/
Copy pathstyle.css
File metadata and controls
62 lines (51 loc) · 1.33 KB
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
#sorcery-button.flashing-icon .drawer-icon {
opacity: 1 !important;
text-shadow: 0 0 10px #0ff !important;
}
#sorcery-button .drawer-content {
padding: 10px;
}
#sorcery-button .caution {
margin-top: 1em;
margin-bottom: 1em;
color: var(--golden);
}
#sorcery-button .inline-drawer-content label {
width: 100%;
}
#sorcery-button code-input {
border: 1px solid var(--SmartThemeBorderColor);
border-radius: 5px;
font-family: var(--monoFontFamily);
--padding: 5px;
margin: 5px 0;
resize: vertical;
width: 100%;
height: 150px;
}
#sorcery-button code-input:has(textarea:focus) {
outline: 1px solid var(--interactable-outline-color-faint);
}
#sorcery-button code-input.sorcery-condition {
font-family: var(--mainFontFamily);
height: fit-content;
}
#sorcery-button .sorcery-run-wrapper {
display: grid;
}
#sorcery-button .sorcery-run-wrapper .sorcery-run {
grid-area: 1/1;
align-self: start;
justify-self: end;
z-index: 100;
transform: translate(-5px, 5px);
}
#sorcery-button .sorcery-run-wrapper .sorcery-run:hover {
background-color: color-mix(in srgb, var(--SmartThemeBlurTintColor), var(--active) 30%);
}
#sorcery-button .sorcery-run-wrapper .sorcery-run i {
color: var(--active);
}
#sorcery-button .sorcery-run-wrapper code-input {
grid-area: 1/1;
}