forked from quoid/userscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicon.css
More file actions
44 lines (38 loc) · 724 Bytes
/
Copy pathicon.css
File metadata and controls
44 lines (38 loc) · 724 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
.icon {
align-items: center;
background-color: transparent;
border: none;
border-radius: var(--border-radius);
cursor: pointer;
display: flex;
font-weight: 500;
height: 24px;
justify-content: center;
padding: 0;
user-select: none;
width: 24px;
}
.icon svg {
fill: rgba(255, 255, 255, 0.65);
height: 16px;
width: 16px;
}
.icon:hover svg,
.icon.active svg {
fill: rgba(255, 255, 255, 1.0);
}
.icon.waiting {
cursor: default;
pointer-events: none;
}
.icon.waiting svg:nth-child(1) {
display: none;
}
.icon:not(.waiting) svg:nth-child(2) {
display: none;
}
.icon.disabled {
cursor: default;
opacity: 0.40;
pointer-events: none;
}