-
Notifications
You must be signed in to change notification settings - Fork 1
/
bootstrap-sortable.css
executable file
·84 lines (67 loc) · 1.53 KB
/
bootstrap-sortable.css
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
table.sortable span.sign {
display: block;
position: absolute;
top: 50%;
right: 5px;
font-size: 12px;
margin-top: -10px;
color: #bfbfc1;
}
table.sortable span.arrow, span.reversed {
border-style: solid;
border-width: 5px;
font-size: 0;
border-color: #ccc transparent transparent transparent;
line-height: 0;
height: 0;
width: 0;
margin-top: -2px;
}
table.sortable span.arrow.up {
border-color: transparent transparent #ccc transparent;
margin-top: -7px;
}
table.sortable span.reversed {
border-color: transparent transparent #ccc transparent;
margin-top: -7px;
}
table.sortable span.reversed.up {
border-color: #ccc transparent transparent transparent;
margin-top: -2px;
}
table.sortable span.az:before {
content: "a .. z";
}
table.sortable span.az.up:before {
content: "z .. a";
}
table.sortable span.AZ:before {
content: "A .. Z";
}
table.sortable span.AZ.up:before {
content: "Z .. A";
}
table.sortable span._19:before {
content: "1 .. 9";
}
table.sortable span._19.up:before {
content: "9 .. 1";
}
table.sortable span.month:before {
content: "jan .. dec";
}
table.sortable span.month.up:before {
content: "dec .. jan";
}
table.sortable thead th {
cursor: pointer;
position: relative;
top: 0;
left: 0;
}
table.sortable thead th:hover:not([data-defaultsort=disabled]) {
background: #efefef;
}
table.sortable thead th div.mozilla {
position: relative;
}