-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathtablesort.css
More file actions
34 lines (30 loc) · 779 Bytes
/
tablesort.css
File metadata and controls
34 lines (30 loc) · 779 Bytes
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
th[role=columnheader]:not([data-sort-method='none']) {
cursor: pointer;
}
th[role=columnheader]:not([data-sort-method='none']):after {
content: '';
float: right;
margin-top: 7px;
border-width: 0 4px 4px;
border-style: solid;
border-color: #404040 transparent;
visibility: hidden;
opacity: 0;
-ms-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
th[aria-sort=ascending]:not([data-sort-method='none']):after {
border-bottom: none;
border-width: 4px 4px 0;
}
th[aria-sort]:not([data-sort-method='none']):after {
visibility: visible;
opacity: 0.4;
}
th[role=columnheader]:not([data-sort-method='none']):focus:after,
th[role=columnheader]:not([data-sort-method='none']):hover:after {
visibility: visible;
opacity: 1;
}