blob: f34887987b095fd68be6903b2401de417273f07f (
plain)
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
|
table > thead > tr > th {
cursor: pointer;
position: relative;
background-image: none;
color: #fff;
background-color: #666;
a{
color: #fff;
}
}
.table-sortable > thead > tr > th:after,
.table-sortable > thead > tr > th.sort-false:after,
.table-sortable > thead > tr > th.sort-true:after {
font-family: FontAwesome;
padding-left: 5px;
}
.table-sortable > thead > tr > th:after {
content: "\f0dc";
color: #ddd;
}
.table-sortable > thead > tr > th.sort-false:after {
content: "\f0de";
color: #767676;
}
.table-sortable > thead > tr > th.sort-true:after {
content: "\f0dd";
color: #767676;
}
//.table-sortable > tbody > td >
.table-sortable {
tbody{
td{
.btn-primary{
min-width: 100px;
}
}
}
}
|