forked from LinkedInAttic/Backbone.TableView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackbone.tableview.css
More file actions
46 lines (38 loc) · 792 Bytes
/
backbone.tableview.css
File metadata and controls
46 lines (38 loc) · 792 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
42
43
44
45
46
div.tableview-info {
padding-top: 8px;
}
div.tableview-pagination {
float: right;
margin: 0;
}
.tableview-table {
margin-top: 1em;
}
.tableview-table th, .tableview-table td {
text-align: center;
}
.tableview-filterbox {
padding-right: 10px;
}
.tableview-sorting:after {
content: "";
float: right;
margin-top: 7px;
border-width: 0 4px 4px;
border-style: solid;
border-color: black transparent;
visibility: hidden;
}
.tableview-sorting:hover:after {
visibility: visible;
}
.tableview-sorting-asc:after {
visibility: visible;
}
.tableview-sorting-desc:after {
border-bottom: none;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 4px solid black;
visibility: visible;
}