-
Notifications
You must be signed in to change notification settings - Fork 0
/
discord.css
109 lines (90 loc) · 1.75 KB
/
discord.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
* Guild Sidebar
*/
/* 'Home' button */
div[class*="tutorialContainer-"] {
margin-top: -4px;
}
/* sidebar */
nav[aria-label*="Servers sidebar"] {
width: 64px;
margin: 0;
margin-left: -5px;
margin-right: -12px;
}
/* server indicator */
div[class*="pill"] {
transform: translate(4px);
}
/* sidebar items */
div[class*="listItem-"] {
width: 64px;
}
/*
* Channel Sidebar
*/
div[class*="sidebar-"] {
width: 164px;
}
div[id*="channels"][class*="scroller"] {
-ms-overflow-style: none;
scrollbar-width: none;
overflow-y: scroll;
}
/* channel name takes up all space */
div[class*="content-"] {
margin: 0;
padding: 0;
width: 100%;
padding-left: 8px;
}
/* no # icon */
div[class*="iconContainer"][aria-label*="Text"] {
display:none;
}
/* Hide the action bar nametag and status */
section > div[class*="container"] > [class*='nameTag-'] {
display:none;
}
/* no useless padding at top of channels bar */
li[class*="containerDefault"] {
padding-top: 0px;
}
/*
* Top bar
*/
section[aria-label="Channel header"] {
height: 28px;
}
header[class*="header-"] {
padding: 2px;
height: 28px;
}
/* no ^ on server name or boost indicator */
div[class*="headerChildren-"], div[class*="guildIconContainer-"] {
display: none;
}
/* server name takes up all space */
h1[class*="name-"] {
overflow: clip;
position: absolute;
}
/*useless buttons*/
div[aria-label="Notification Settings"],
div[aria-label="Help"] {
display: none;
}
/*
* Messages
*/
div[class*="compact-"] div[class*="contents-"] {
margin-left: -7em;
}
form[class*="form-"] {
padding-left: 0;
margin-left: -0.25em;
}
button[aria-label="Send a gift"],
button[aria-label="Open sticker picker"] {
display: none;
}