blob: e3d1bb1a7658675352368f444662d020a6b10793 (
plain)
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
110
111
112
113
114
115
116
117
118
119
|
.embed {
border-radius: 5px;
padding: 10px;
background-color: rgba(0.0, 0.0, 0.0, 0.1);
}
.embed-footer {
margin-top: 5px;
font-size: 11px;
}
.embed-author {
margin-bottom: 10px;
font-size: 12px;
}
.message-attachment-box {
border: 1px solid #aaaaaa;
padding: 2px 5px 2px 5px;
}
.message-attachment-box label {
margin: 5px;
}
.status-indicator.dnd {
color: #982929;
}
.status-indicator.online {
color: #43B581;
}
.status-indicator.offline {
color: #808080;
}
.status-indicator.idle {
color: #FAA61A;
}
.message-input textview, .message-input textview text {
background-color: inherit;
}
.message-text, .message-text text {
background: inherit;
}
.message-input textview {
padding: 10px 5px;
}
.message-reply {
border-left: 2px solid gray;
padding-left: 10px;
padding-top: 6px;
padding-bottom: 6px;
opacity: 0.8;
}
.profile-main-container {
padding: 20px;
}
.profile-username {
margin-left: 10px;
font-size: 20px;
}
.profile-username-nondisplay {
margin-left: 10px;
}
.profile-switcher {
padding-top: 5px;
}
.profile-stack {
padding-top: 5px;
}
.profile-notes-label {
padding-top: 5px;
padding-bottom: 5px;
}
.profile-badges {
padding-left: 5px;
}
.profile-badge {
margin-right: 5px;
}
.profile-connections {
margin-top: 10px;
}
.profile-connection {
padding: 5px;
border-radius: 10px;
border: 1px solid black;
}
.profile-connection-image {
padding-right: 5px;
}
.reaction-box {
padding: 2px 5px 2px 5px;
border-radius: 5px;
border: 1px solid black;
}
.reaction-box.reacted {
border: 1px solid #5865f2;
background-color: rgba(89, 102, 242, 0.5);
}
|