blob: e5d71f99973e282cd7b01cdccb344dc166d93e29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Adjust spacing of empty sections */
.discussion-sidebar-item.rgh-clean-sidebar {
margin-bottom: -5px;
}
/* Align sidebar to the top */
.rgh-clean-sidebar .discussion-sidebar-item:first-child {
padding-top: 0 !important;
}
/* Move message under the `Unsubscribe` button above the button */
.rgh-clean-sidebar .thread-subscription-status {
display: flex;
flex-direction: column;
}
/* `form` excludes the header */
.rgh-clean-sidebar form.thread-subscribe-form {
order: 1;
}
.rgh-clean-sidebar .thread-subscription-status .reason {
margin: 0 0 10px !important;
}
|