forked from An00nymushun/DiscordFreeEmojis
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathUseful.css
64 lines (52 loc) · 1.56 KB
/
Useful.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
63
64
/* DO NOT USE */
/* This functionality is included as settings in the plugin.*/
/* Left as a base for future CSS rules.*/
/* Misc items to add to Custom CSS for a better experience. Pick and choose as you please.*/
/* Clean up emojis darkened, monotone, lock icon */
/* Make nitro emojis normal colored and outlined */
button[class*='emojiItemDisabled'] {
filter: none !important;
outline: dotted 4px rgba(255, 255, 255, 0.46);
outline-offset: -2px;
cursor: pointer !important;
}
/* Makes the dark background transparent */
[class*="emojiLockIconContainer_"] {
background: rgba(0,0,0,0) !important;
scale: 0.01 !important;
}
/* Makes the emoji lock icon itself too small to see */
[class*="emojiLockIcon_"] {
width: 0 !important;
}
/* Hides lock on server icons */
[class*="categoryItemLockIconContainer_"] {
display: none;
}
/* Hides the "Unlock every emoji with Nitro - Get Nitro" pop-up */
[class*="upsellContainer_"] {
display: none;
}
/* Hides the divider between "Frequently Used" and server emojis */
[class*="categorySectionNitroTopDivider_"] {
display: none;
}
/* Makes the pink background behind "locked" emojis transparent. */
[class*="categorySectionNitroLocked_"] {
background-color: transparent;
}
/* Other misc rules */
/* Make (normal) text emojis bigger */
.emoji.jumboable {
width:150px;
height:150px;
}
/* Really big emoji/sticker/gif drawer */
[class*="positionLayer_"] {
height: calc(100vh - 220px);
}
/* Hide send gift button */
button[aria-label="Send a gift"] {
visibility: hidden;
display: none;
}