aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/showHiddenChannels/style.css
blob: 301ad75d4a469afcf84a2a832e4d46638bfa0634 (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
.shc-lock-screen-outer-container {
    overflow: hidden scroll;
    flex: 1 1 auto;
    height: 100%;
    width: 100%;
}

.shc-lock-screen-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100%;
}

.shc-lock-screen-container > * {
    margin: 5px;
}

.shc-lock-screen-logo {
    width: 180px;
    height: 180px;
}

.shc-lock-screen-heading-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.shc-lock-screen-heading-container > * {
    margin: inherit;
}

.shc-lock-screen-heading-nsfw-icon {
    color: var(--text-normal);
}

.shc-lock-screen-topic-container {
    color: var(--text-normal);
    background: var(--bg-overlay-3, var(--background-secondary));
    border-radius: 5px;
    padding: 10px;
    max-width: 70vw;
}

.shc-lock-screen-tags-container {
    background: var(--bg-overlay-3, var(--background-secondary));
    border-radius: 5px;
    padding: 10px;
    max-width: 70vw;
}

.shc-lock-screen-tags-container > * {
    margin: inherit;
}

.shc-lock-screen-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.shc-evenodd-fill-current-color {
    fill-rule: evenodd;
    fill: currentcolor;
}

.shc-hidden-channel-icon {
    margin-left: 6px;
    z-index: 0;
    cursor: not-allowed;
}

.shc-lock-screen-default-emoji-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.shc-lock-screen-default-emoji-container > [class^="emojiContainer"] {
    background: var(--bg-overlay-3, var(--background-secondary));
    border-radius: 8px;
    padding: 5px 6px;
    margin-left: 5px;
}

.shc-lock-screen-allowed-users-and-roles-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-overlay-3, var(--background-secondary));
    border-radius: 5px;
    padding: 10px;
    max-width: 70vw;
}

.shc-lock-screen-allowed-users-and-roles-container-title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.shc-lock-screen-allowed-users-and-roles-container-toggle-btn {
    all: unset;
    margin-left: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.shc-lock-screen-allowed-users-and-roles-container-toggle-btn > svg {
    color: var(--text-normal);
}

.shc-lock-screen-allowed-users-and-roles-container-permdetails-btn {
    all: unset;
    margin-right: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.shc-lock-screen-allowed-users-and-roles-container-permdetails-btn > svg {
    color: var(--text-normal);
}

.shc-lock-screen-allowed-users-and-roles-container > [class^="members"] {
    margin-left: 10px;
    flex-wrap: wrap;
    justify-content: center;
}