blob: 3ab92e73f986484e4c147722e1248a6d9e9e22fd (
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
|
/* a tags are here because of css specificity */
a.notificationsArea {
left: calc(48px + var(--spacing-medium));
top: 92px;
transform: translateY(-100%);
text-align: left;
width: 400px;
height: 450px;
}
html.dark a.notificationsArea { background-color: var(--gray-700); }
html.dark .notificationsArea .acceptable { background-color: var(--gray-800); }
a.notificationsArea .tuitje {
left: var(--spacing-medium);
bottom: 86px;
transform: translate(-100%, 100%) rotate(90deg);
fill: var(--gray-800);
}
html.dark a.notificationsArea .tuitje { fill: var(--gray-700); }
.notificationsArea .title {
margin-bottom: var(--spacing-large);
}
.notificationsArea .inner {
overflow-y: scroll;
white-space: normal;
height: calc(450px - 4 * var(--spacing-large));
}
.notificationsArea .acceptable {
margin: 0;
margin-bottom: var(--spacing-medium);
}
.notificationsArea .acceptable:last-child {
margin-bottom: 0;
}
.notificationsArea .buttons .button {
margin: 0;
}
.notificationsArea .buttons {
margin-top: var(--spacing-medium);
}
.notificationsArea .noMsgsWrapper h1 {
white-space: nowrap;
user-select: none;
}
.notificationsArea .acceptable .userInfo {
margin-left: var(--spacing-small);
}
|