forked from carlosrocha/react-data-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable-twbs.css
More file actions
41 lines (36 loc) · 770 Bytes
/
table-twbs.css
File metadata and controls
41 lines (36 loc) · 770 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
35
36
37
38
39
40
41
.table th {
cursor: pointer;
text-align: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.table .empty-cell {
font-style: italic;
color: darkgray;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.sort-icon:after {
float: right;
color: hsl(20, 0%, 70%);
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.sort-icon.sort-ascending:after {
content: '\f0de';
}
.sort-icon.sort-descending:after {
content: '\f0dd';
}
.sort-icon.sort-none:after {
content: '\f0dc';
}