-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicker.css
More file actions
57 lines (47 loc) · 1.04 KB
/
picker.css
File metadata and controls
57 lines (47 loc) · 1.04 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
.zudo-emote-picker {
display: none;
position: fixed;
z-index: 9999999999999999999; /* ffs osk */
background-color: rgba(0,0,0,0.5);
color: #fff;
font-family: PFW, sans-serif;
font-size: 1.05em;
height: 400px;
overflow-y: scroll;
box-shadow: 0 2px 6px #000a, 0 0 8px #fff;
}
.zudo-emote-picker-emote {
cursor: pointer;
display: flex;
}
.zudo-emote-picker-emote > div {
padding: 0.25em;
}
.zudo-emote-picker-emote img {
width: 1.3em;
height: 1.3em;
vertical-align: middle;
object-fit: contain;
}
.zudo-emote-picker-emote-supporter {
color: #ff4a19;
}
.zudo-emote-picker-emote-staff {
color: #2e9be8;
}
.zudo-emote-picker-emote-verified {
color: #19ff95;
}
.zudo-emote-picker-emote-name {
line-height: 1.3em;
padding-left: 1em;
}
.zudo-emote-picker-emote-hidden {
display: none !important;
}
body:not(.supporter) .zudo-emote-picker-emote-supporter {
display: none !important;
}
body:not(.staff) .zudo-emote-picker-emote-staff {
display: none !important;
}