-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.css
More file actions
62 lines (56 loc) · 977 Bytes
/
Copy pathbutton.css
File metadata and controls
62 lines (56 loc) · 977 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
51
52
53
54
55
56
57
58
59
60
61
62
.draggable-btn {
all: initial;
position: fixed;
z-index: 999;
border: none;
background: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
button {
padding: 0;
}
}
@media (prefers-color-scheme: dark) {
.draggable-btn {
button {
background-color: var(--arrow-fill-dark);
}
path {
stroke: var(--arrow-stroke-dark);
}
}
}
@media (prefers-color-scheme: light) {
.draggable-btn {
button {
background-color: var(--arrow-fill-light);
}
path {
stroke: var(--arrow-stroke-light);
}
}
}
:root:not(.theme-light) .draggable-btn {
button {
background-color: var(--arrow-fill-dark);
}
path {
stroke: var(--arrow-stroke-dark);
}
}
:root.theme-light .draggable-btn {
button {
background-color: var(--arrow-fill-light);
}
path {
stroke: var(--arrow-stroke-light);
}
}
.disabled {
cursor: none;
opacity: 0.5;
}