-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.css
More file actions
63 lines (55 loc) · 1.06 KB
/
basic.css
File metadata and controls
63 lines (55 loc) · 1.06 KB
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
.sortable .sort,
.sort-group[data-container] .sort,
.sort[data-container] {
cursor: pointer;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
}
.sort.sortup:after {
content: "\2191";
}
.sort.sortdown:after {
content: "\2193";
}
.filterable:not([data-pages-include-filtered]) .filtered-out {
display: none !important;
}
.filterable[data-pages-include-filtered] .filtered-out * {
opacity: 0.3;
}
.filter-list * {
border-radius: 0.4em;
font-size: 0.9em;
margin: 0px 1px;
padding: 3px;
cursor: pointer;
}
.filter-list .filter-and {
background-color: rgba(150,150,255,0.8);
}
.filter-list .filter-or {
background-color: rgba(150,255,150,0.8);
}
.filter-list .filter-not {
background-color: rgba(255,150,150,0.8);
}
.paged .paged-out {
display: none !important;
}
.pageup,
.pagedown {
cursor: pointer;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
opacity: 0.5;
}
.pageup.active,
.pagedown.active {
opacity: 1;
}