-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
30 lines (27 loc) · 944 Bytes
/
custom.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
/* Remove the slightly darker background on hover over messages. */
.theme-dark {
--background-message-hover: unset;
}
/* Remove all emoji bar buttons except for the emoji picker itself. */
div[class*='buttonContainer-'] div[class*='emojiButton-'],
div[class*='buttonContainer-'] div[class*='emojiSeparator-'],
div[class*='buttonContainer-'] div[class*='button-']:last-child {
display: none;
}
/* Remove emoji picker border. */
div[class*='buttonContainer-'] div[class*='wrapper-'] {
box-shadow: none;
}
/* Resize and place emoji picker within message height, positioned at the top. */
div[class*='buttonContainer-'] div[class*='buttons-'] {
top: 0;
}
div[class*='message-'][class*='groupStart-'] div[class*='buttonContainer-'] div[class*='buttons-'] {
top: 22px;
}
div[class*='buttonContainer-'] div[class*='wrapper-'] {
height: 26px;
}
div[class*='buttonContainer-'] div[class*='button-']:nth-last-child(2) {
height: 18px;
}