blob: f70cbd64404cb7d10f3248bfba2f93556b5a9208 (
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
25
26
27
|
/* Disable highlighting for all text in the filters. */
.filter-checkbox,
.filter-panel label,
.card-header span {
user-select: none
}
/* Remove pointless margin in panel header */
#filter-panel-header {
margin-bottom: 0;
}
/* Full width filter cards */
#resource-filtering-panel .card .collapsible-content .card-content {
padding:0
}
/* Disable clicking on the checkbox itself. */
/* Instead, we want to let the anchor tag handle clicks. */
.filter-checkbox {
pointer-events: none;
}
/* Blurple category icons */
i.is-primary {
color: #7289da;
}
|