| 9 |
lars |
1 |
table.dataTable tbody > tr.selected,
|
|
|
2 |
table.dataTable tbody > tr > .selected {
|
|
|
3 |
background-color: #008cba;
|
|
|
4 |
}
|
|
|
5 |
table.dataTable.stripe tbody > tr.odd.selected,
|
|
|
6 |
table.dataTable.stripe tbody > tr.odd > .selected, table.dataTable.display tbody > tr.odd.selected,
|
|
|
7 |
table.dataTable.display tbody > tr.odd > .selected {
|
|
|
8 |
background-color: #0089b6;
|
|
|
9 |
}
|
|
|
10 |
table.dataTable.hover tbody > tr.selected:hover,
|
|
|
11 |
table.dataTable.hover tbody > tr > .selected:hover, table.dataTable.display tbody > tr.selected:hover,
|
|
|
12 |
table.dataTable.display tbody > tr > .selected:hover {
|
|
|
13 |
background-color: #0087b3;
|
|
|
14 |
}
|
|
|
15 |
table.dataTable.order-column tbody > tr.selected > .sorting_1,
|
|
|
16 |
table.dataTable.order-column tbody > tr.selected > .sorting_2,
|
|
|
17 |
table.dataTable.order-column tbody > tr.selected > .sorting_3,
|
|
|
18 |
table.dataTable.order-column tbody > tr > .selected, table.dataTable.display tbody > tr.selected > .sorting_1,
|
|
|
19 |
table.dataTable.display tbody > tr.selected > .sorting_2,
|
|
|
20 |
table.dataTable.display tbody > tr.selected > .sorting_3,
|
|
|
21 |
table.dataTable.display tbody > tr > .selected {
|
|
|
22 |
background-color: #0089b6;
|
|
|
23 |
}
|
|
|
24 |
table.dataTable.display tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_1 {
|
|
|
25 |
background-color: #0084b0;
|
|
|
26 |
}
|
|
|
27 |
table.dataTable.display tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_2 {
|
|
|
28 |
background-color: #0085b1;
|
|
|
29 |
}
|
|
|
30 |
table.dataTable.display tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_3 {
|
|
|
31 |
background-color: #0087b3;
|
|
|
32 |
}
|
|
|
33 |
table.dataTable.display tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_1 {
|
|
|
34 |
background-color: #0089b6;
|
|
|
35 |
}
|
|
|
36 |
table.dataTable.display tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_2 {
|
|
|
37 |
background-color: #008ab8;
|
|
|
38 |
}
|
|
|
39 |
table.dataTable.display tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_3 {
|
|
|
40 |
background-color: #008bb9;
|
|
|
41 |
}
|
|
|
42 |
table.dataTable.display tbody > tr.odd > .selected, table.dataTable.order-column.stripe tbody > tr.odd > .selected {
|
|
|
43 |
background-color: #0084b0;
|
|
|
44 |
}
|
|
|
45 |
table.dataTable.display tbody > tr.even > .selected, table.dataTable.order-column.stripe tbody > tr.even > .selected {
|
|
|
46 |
background-color: #0089b6;
|
|
|
47 |
}
|
|
|
48 |
table.dataTable.display tbody > tr.selected:hover > .sorting_1, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_1 {
|
|
|
49 |
background-color: #0081ab;
|
|
|
50 |
}
|
|
|
51 |
table.dataTable.display tbody > tr.selected:hover > .sorting_2, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_2 {
|
|
|
52 |
background-color: #0082ac;
|
|
|
53 |
}
|
|
|
54 |
table.dataTable.display tbody > tr.selected:hover > .sorting_3, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_3 {
|
|
|
55 |
background-color: #0083ae;
|
|
|
56 |
}
|
|
|
57 |
table.dataTable.display tbody > tr:hover > .selected,
|
|
|
58 |
table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-column.hover tbody > tr:hover > .selected,
|
|
|
59 |
table.dataTable.order-column.hover tbody > tr > .selected:hover {
|
|
|
60 |
background-color: #0081ab;
|
|
|
61 |
}
|
|
|
62 |
table.dataTable td.select-checkbox {
|
|
|
63 |
position: relative;
|
|
|
64 |
}
|
|
|
65 |
table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after {
|
|
|
66 |
display: block;
|
|
|
67 |
position: absolute;
|
|
|
68 |
top: 1.2em;
|
|
|
69 |
left: 50%;
|
|
|
70 |
width: 12px;
|
|
|
71 |
height: 12px;
|
|
|
72 |
box-sizing: border-box;
|
|
|
73 |
}
|
|
|
74 |
table.dataTable td.select-checkbox:before {
|
|
|
75 |
content: ' ';
|
|
|
76 |
margin-top: -6px;
|
|
|
77 |
margin-left: -6px;
|
|
|
78 |
border: 1px solid black;
|
|
|
79 |
border-radius: 3px;
|
|
|
80 |
}
|
|
|
81 |
table.dataTable tr.selected td.select-checkbox:after {
|
|
|
82 |
content: '\2714';
|
|
|
83 |
margin-top: -11px;
|
|
|
84 |
margin-left: -4px;
|
|
|
85 |
text-align: center;
|
|
|
86 |
text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
|
|
|
87 |
}
|
|
|
88 |
|
|
|
89 |
div.dataTables_wrapper span.select-info,
|
|
|
90 |
div.dataTables_wrapper span.select-item {
|
|
|
91 |
margin-left: 0.5em;
|
|
|
92 |
}
|
|
|
93 |
|
|
|
94 |
@media screen and (max-width: 640px) {
|
|
|
95 |
div.dataTables_wrapper span.select-info,
|
|
|
96 |
div.dataTables_wrapper span.select-item {
|
|
|
97 |
margin-left: 0;
|
|
|
98 |
display: block;
|
|
|
99 |
}
|
|
|
100 |
}
|
|
|
101 |
table.dataTable tbody tr.selected th,
|
|
|
102 |
table.dataTable tbody tr.selected td,
|
|
|
103 |
table.dataTable tbody th.selected,
|
|
|
104 |
table.dataTable tbody td.selected {
|
|
|
105 |
color: white;
|
|
|
106 |
}
|
|
|
107 |
table.dataTable tbody tr.selected th a,
|
|
|
108 |
table.dataTable tbody tr.selected td a,
|
|
|
109 |
table.dataTable tbody th.selected a,
|
|
|
110 |
table.dataTable tbody td.selected a {
|
|
|
111 |
color: #a2d4ed;
|
|
|
112 |
}
|