-
Notifications
You must be signed in to change notification settings - Fork 0
/
personal-preferences.css
36 lines (34 loc) · 1.17 KB
/
personal-preferences.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
/* change text sizes */
.markup_f8f345{ font-size: 20px; } /* message */
.shiki-table { font-size: 16px; } /* code block */
.username_f9f2ca{ font-size: 18px; } /* username */
/* don't show unusable actions in mod view from ShowHiddenThings plugin */
[class^=guildSidebar_] [class^=bottomRow_]:has([class*=bottomRowActionDisabled_]) [class*=bottomRowActionDisabled_] {
display: none; }
/* message timestamps */
/* "(edited)" text timestamps */
span[class*="timestamp_"] time::before {
content: '✎ ' attr(aria-label);
font-size: 0.75rem;
font-weight: 400;}
/* message header timestamps */
span[class*="timestampInline_"] time::before {
content: attr(aria-label);
font-size: 0.75rem;
font-weight: 500;}
/* header-less multi-line hover timestamps */
span[class*="timestampVisibleOnHover_"] time::before {
content: attr(aria-label);
position: absolute;
font-size: 0.6rem;
line-height: 0.85rem;
width: 65px;
left: -1px;
top: -2px;}
/* hide the old timestamps */
span[class*="timestampInline_"], span[class*="timestampVisibleOnHover_"] {
font-size: 0rem !important;}
span[class*="edited_"] {
position: relative;
right: 95px;
color: transparent;}