jquery-datatables 1.10.15 → 1.10.16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +23 -16
- data/Rakefile +46 -27
- data/app/assets/javascripts/datatables/dataTables.bootstrap4.js +3 -3
- data/app/assets/javascripts/datatables/dataTables.jqueryui.js +6 -6
- data/app/assets/javascripts/datatables/extensions/AutoFill/dataTables.autoFill.js +5 -5
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap.js +3 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap4.js +3 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.colVis.js +2 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.flash.js +74 -69
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.foundation.js +3 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.html5.js +86 -63
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.print.js +16 -22
- data/app/assets/javascripts/datatables/extensions/Buttons/dataTables.buttons.js +131 -3
- data/app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js +12 -6
- data/app/assets/javascripts/datatables/extensions/FixedColumns/dataTables.fixedColumns.js +8 -5
- data/app/assets/javascripts/datatables/extensions/FixedHeader/dataTables.fixedHeader.js +14 -9
- data/app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js +103 -8
- data/app/assets/javascripts/datatables/extensions/Responsive/dataTables.responsive.js +106 -6
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap4.js +1 -1
- data/app/assets/javascripts/datatables/extensions/RowGroup/dataTables.rowGroup.js +8 -6
- data/app/assets/javascripts/datatables/extensions/RowReorder/dataTables.rowReorder.js +68 -35
- data/app/assets/javascripts/datatables/extensions/Scroller/dataTables.scroller.js +71 -10
- data/app/assets/javascripts/datatables/extensions/Select/dataTables.select.js +11 -7
- data/app/assets/javascripts/datatables/jquery.dataTables.js +19 -121
- data/app/assets/stylesheets/datatables/dataTables.bootstrap.scss +252 -0
- data/app/assets/stylesheets/datatables/{dataTables.bootstrap2.css → dataTables.bootstrap2.scss} +6 -6
- data/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss +262 -0
- data/app/assets/stylesheets/datatables/dataTables.foundation.scss +154 -0
- data/app/assets/stylesheets/datatables/dataTables.jqueryui.scss +93 -0
- data/app/assets/stylesheets/datatables/dataTables.material.scss +101 -0
- data/app/assets/stylesheets/datatables/dataTables.semanticui.scss +138 -0
- data/app/assets/stylesheets/datatables/dataTables.uikit.scss +195 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.scss +125 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.scss +13 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.scss +10 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.scss +40 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.scss +53 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.scss +141 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.scss +82 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.scss +98 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.scss +53 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.scss +17 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.scss +50 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.scss +11 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.scss +22 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/{fixedColumns.foundation.css → fixedColumns.foundation.scss} +15 -6
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.scss +16 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.scss +41 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.bootstrap4.css → fixedHeader.bootstrap.scss} +6 -5
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.foundation.css → fixedHeader.bootstrap4.scss} +6 -5
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.scss +21 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.bootstrap.css → fixedHeader.foundation.scss} +6 -5
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.semanticui.css → fixedHeader.jqueryui.scss} +7 -3
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.semanticui.scss +16 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.scss +10 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.scss +240 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.scss +10 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap4.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.dataTables.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.foundation.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.semanticui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/{semanticui.scss → rowReorder.bootstrap4.scss} +0 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.scss +26 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.scss +36 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.scss +31 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.scss +17 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.scss +17 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.scss +143 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.scss +18 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.scss +14 -0
- data/app/assets/stylesheets/datatables/jquery.dataTables.scss +599 -0
- data/lib/generators/jquery/datatables/install_generator.rb +1 -1
- data/lib/generators/jquery/datatables/templates/bootstrap.js.tt +3 -1
- data/lib/generators/jquery/datatables/templates/bootstrap.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/bootstrap4.js.tt +3 -1
- data/lib/generators/jquery/datatables/templates/bootstrap4.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/foundation.js.tt +4 -4
- data/lib/generators/jquery/datatables/templates/foundation.scss.tt +33 -0
- data/lib/generators/jquery/datatables/templates/jqueryui.js.tt +7 -1
- data/lib/generators/jquery/datatables/templates/jqueryui.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/material.js.tt +3 -1
- data/lib/generators/jquery/datatables/templates/material.scss.tt +1 -0
- data/lib/generators/jquery/datatables/templates/regular.js.tt +4 -3
- data/lib/generators/jquery/datatables/templates/regular.scss.tt +33 -0
- data/lib/generators/jquery/datatables/templates/semanticui.js.tt +4 -2
- data/lib/generators/jquery/datatables/templates/semanticui.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/uikit.js.tt +4 -2
- data/lib/generators/jquery/datatables/templates/uikit.scss.tt +1 -0
- data/lib/jquery-datatables/version.rb +1 -1
- metadata +86 -90
- data/app/assets/stylesheets/datatables/dataTables.bootstrap.css +0 -184
- data/app/assets/stylesheets/datatables/dataTables.bootstrap4.css +0 -194
- data/app/assets/stylesheets/datatables/dataTables.foundation.css +0 -118
- data/app/assets/stylesheets/datatables/dataTables.jqueryui.css +0 -482
- data/app/assets/stylesheets/datatables/dataTables.material.css +0 -87
- data/app/assets/stylesheets/datatables/dataTables.semanticui.css +0 -102
- data/app/assets/stylesheets/datatables/dataTables.uikit.css +0 -146
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.css +0 -81
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.css +0 -81
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.css +0 -92
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.css +0 -85
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.css +0 -85
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.css +0 -81
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.css +0 -158
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.css +0 -219
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.css +0 -354
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.css +0 -189
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.css +0 -218
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.css +0 -171
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.css +0 -44
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.css +0 -44
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.css +0 -18
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.css +0 -8
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.css +0 -16
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.css +0 -19
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.jqueryui.css +0 -15
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.css +0 -178
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.css +0 -178
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap4.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.dataTables.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.foundation.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.jqueryui.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.semanticui.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap4.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.css +0 -24
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.css +0 -24
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.css +0 -20
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.css +0 -17
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.css +0 -20
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.css +0 -20
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.css +0 -115
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.css +0 -115
- data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.css +0 -105
- data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.css +0 -117
- data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.css +0 -105
- data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.css +0 -110
- data/app/assets/stylesheets/datatables/jquery.dataTables.css +0 -455
- data/app/assets/stylesheets/datatables/jquery.dataTables_themeroller.css +0 -416
- data/lib/generators/jquery/datatables/templates/bootstrap.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/bootstrap2.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/bootstrap2.js.tt +0 -22
- data/lib/generators/jquery/datatables/templates/bootstrap4.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/foundation.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/jqueryui.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/material.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/regular.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/semanticui.css.tt +0 -16
- data/lib/generators/jquery/datatables/templates/uikit.css.tt +0 -15
@@ -1,117 +0,0 @@
|
|
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 tbody td.select-checkbox,
|
63
|
-
table.dataTable tbody th.select-checkbox {
|
64
|
-
position: relative;
|
65
|
-
}
|
66
|
-
table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
|
67
|
-
table.dataTable tbody th.select-checkbox:before,
|
68
|
-
table.dataTable tbody th.select-checkbox:after {
|
69
|
-
display: block;
|
70
|
-
position: absolute;
|
71
|
-
top: 1.2em;
|
72
|
-
left: 50%;
|
73
|
-
width: 12px;
|
74
|
-
height: 12px;
|
75
|
-
box-sizing: border-box;
|
76
|
-
}
|
77
|
-
table.dataTable tbody td.select-checkbox:before,
|
78
|
-
table.dataTable tbody th.select-checkbox:before {
|
79
|
-
content: ' ';
|
80
|
-
margin-top: -6px;
|
81
|
-
margin-left: -6px;
|
82
|
-
border: 1px solid black;
|
83
|
-
border-radius: 3px;
|
84
|
-
}
|
85
|
-
table.dataTable tr.selected td.select-checkbox:after,
|
86
|
-
table.dataTable tr.selected th.select-checkbox:after {
|
87
|
-
content: '\2714';
|
88
|
-
margin-top: -11px;
|
89
|
-
margin-left: -4px;
|
90
|
-
text-align: center;
|
91
|
-
text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
|
92
|
-
}
|
93
|
-
|
94
|
-
div.dataTables_wrapper span.select-info,
|
95
|
-
div.dataTables_wrapper span.select-item {
|
96
|
-
margin-left: 0.5em;
|
97
|
-
}
|
98
|
-
|
99
|
-
@media screen and (max-width: 640px) {
|
100
|
-
div.dataTables_wrapper span.select-info,
|
101
|
-
div.dataTables_wrapper span.select-item {
|
102
|
-
margin-left: 0;
|
103
|
-
display: block;
|
104
|
-
}
|
105
|
-
}
|
106
|
-
table.dataTable tbody tr.selected th,
|
107
|
-
table.dataTable tbody tr.selected td,
|
108
|
-
table.dataTable tbody th.selected,
|
109
|
-
table.dataTable tbody td.selected {
|
110
|
-
color: white;
|
111
|
-
}
|
112
|
-
table.dataTable tbody tr.selected th a,
|
113
|
-
table.dataTable tbody tr.selected td a,
|
114
|
-
table.dataTable tbody th.selected a,
|
115
|
-
table.dataTable tbody td.selected a {
|
116
|
-
color: #a2d4ed;
|
117
|
-
}
|
@@ -1,105 +0,0 @@
|
|
1
|
-
table.dataTable tbody > tr.selected,
|
2
|
-
table.dataTable tbody > tr > .selected {
|
3
|
-
background-color: #B0BED9;
|
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: #acbad4;
|
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: #aab7d1;
|
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: #acbad5;
|
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: #a6b4cd;
|
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: #a8b5cf;
|
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: #a9b7d1;
|
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: #acbad5;
|
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: #aebcd6;
|
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: #afbdd8;
|
41
|
-
}
|
42
|
-
table.dataTable.display tbody > tr.odd > .selected, table.dataTable.order-column.stripe tbody > tr.odd > .selected {
|
43
|
-
background-color: #a6b4cd;
|
44
|
-
}
|
45
|
-
table.dataTable.display tbody > tr.even > .selected, table.dataTable.order-column.stripe tbody > tr.even > .selected {
|
46
|
-
background-color: #acbad5;
|
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: #a2aec7;
|
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: #a3b0c9;
|
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: #a5b2cb;
|
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: #a2aec7;
|
61
|
-
}
|
62
|
-
table.dataTable tbody td.select-checkbox,
|
63
|
-
table.dataTable tbody th.select-checkbox {
|
64
|
-
position: relative;
|
65
|
-
}
|
66
|
-
table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
|
67
|
-
table.dataTable tbody th.select-checkbox:before,
|
68
|
-
table.dataTable tbody th.select-checkbox:after {
|
69
|
-
display: block;
|
70
|
-
position: absolute;
|
71
|
-
top: 1.2em;
|
72
|
-
left: 50%;
|
73
|
-
width: 12px;
|
74
|
-
height: 12px;
|
75
|
-
box-sizing: border-box;
|
76
|
-
}
|
77
|
-
table.dataTable tbody td.select-checkbox:before,
|
78
|
-
table.dataTable tbody th.select-checkbox:before {
|
79
|
-
content: ' ';
|
80
|
-
margin-top: -6px;
|
81
|
-
margin-left: -6px;
|
82
|
-
border: 1px solid black;
|
83
|
-
border-radius: 3px;
|
84
|
-
}
|
85
|
-
table.dataTable tr.selected td.select-checkbox:after,
|
86
|
-
table.dataTable tr.selected th.select-checkbox:after {
|
87
|
-
content: '\2714';
|
88
|
-
margin-top: -11px;
|
89
|
-
margin-left: -4px;
|
90
|
-
text-align: center;
|
91
|
-
text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
|
92
|
-
}
|
93
|
-
|
94
|
-
div.dataTables_wrapper span.select-info,
|
95
|
-
div.dataTables_wrapper span.select-item {
|
96
|
-
margin-left: 0.5em;
|
97
|
-
}
|
98
|
-
|
99
|
-
@media screen and (max-width: 640px) {
|
100
|
-
div.dataTables_wrapper span.select-info,
|
101
|
-
div.dataTables_wrapper span.select-item {
|
102
|
-
margin-left: 0;
|
103
|
-
display: block;
|
104
|
-
}
|
105
|
-
}
|
@@ -1,110 +0,0 @@
|
|
1
|
-
table.dataTable tbody > tr.selected,
|
2
|
-
table.dataTable tbody > tr > .selected {
|
3
|
-
background-color: rgba(0, 0, 0, 0.05);
|
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: rgba(0, 0, 0, 0.07233);
|
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: rgba(0, 0, 0, 0.0842);
|
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: rgba(0, 0, 0, 0.069);
|
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: rgba(0, 0, 0, 0.1013);
|
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: rgba(0, 0, 0, 0.09465);
|
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: rgba(0, 0, 0, 0.08705);
|
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: rgba(0, 0, 0, 0.069);
|
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: rgba(0, 0, 0, 0.0614);
|
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: rgba(0, 0, 0, 0.0538);
|
41
|
-
}
|
42
|
-
table.dataTable.display tbody > tr.odd > .selected, table.dataTable.order-column.stripe tbody > tr.odd > .selected {
|
43
|
-
background-color: rgba(0, 0, 0, 0.1013);
|
44
|
-
}
|
45
|
-
table.dataTable.display tbody > tr.even > .selected, table.dataTable.order-column.stripe tbody > tr.even > .selected {
|
46
|
-
background-color: rgba(0, 0, 0, 0.069);
|
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: rgba(0, 0, 0, 0.1279);
|
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: rgba(0, 0, 0, 0.12125);
|
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: rgba(0, 0, 0, 0.10985);
|
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: rgba(0, 0, 0, 0.1279);
|
61
|
-
}
|
62
|
-
table.dataTable tbody td.select-checkbox,
|
63
|
-
table.dataTable tbody th.select-checkbox {
|
64
|
-
position: relative;
|
65
|
-
}
|
66
|
-
table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
|
67
|
-
table.dataTable tbody th.select-checkbox:before,
|
68
|
-
table.dataTable tbody th.select-checkbox:after {
|
69
|
-
display: block;
|
70
|
-
position: absolute;
|
71
|
-
top: 1.2em;
|
72
|
-
left: 50%;
|
73
|
-
width: 12px;
|
74
|
-
height: 12px;
|
75
|
-
box-sizing: border-box;
|
76
|
-
}
|
77
|
-
table.dataTable tbody td.select-checkbox:before,
|
78
|
-
table.dataTable tbody th.select-checkbox:before {
|
79
|
-
content: ' ';
|
80
|
-
margin-top: -6px;
|
81
|
-
margin-left: -6px;
|
82
|
-
border: 1px solid black;
|
83
|
-
border-radius: 3px;
|
84
|
-
}
|
85
|
-
table.dataTable tr.selected td.select-checkbox:after,
|
86
|
-
table.dataTable tr.selected th.select-checkbox:after {
|
87
|
-
content: '\2714';
|
88
|
-
margin-top: -11px;
|
89
|
-
margin-left: -4px;
|
90
|
-
text-align: center;
|
91
|
-
text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
|
92
|
-
}
|
93
|
-
|
94
|
-
div.dataTables_wrapper span.select-info,
|
95
|
-
div.dataTables_wrapper span.select-item {
|
96
|
-
margin-left: 0.5em;
|
97
|
-
}
|
98
|
-
|
99
|
-
@media screen and (max-width: 640px) {
|
100
|
-
div.dataTables_wrapper span.select-info,
|
101
|
-
div.dataTables_wrapper span.select-item {
|
102
|
-
margin-left: 0;
|
103
|
-
display: block;
|
104
|
-
}
|
105
|
-
}
|
106
|
-
table.dataTable tbody tr.selected,
|
107
|
-
table.dataTable tbody th.selected,
|
108
|
-
table.dataTable tbody td.selected {
|
109
|
-
color: rgba(0, 0, 0, 0.95);
|
110
|
-
}
|
@@ -1,455 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Table styles
|
3
|
-
*/
|
4
|
-
table.dataTable {
|
5
|
-
width: 100%;
|
6
|
-
margin: 0 auto;
|
7
|
-
clear: both;
|
8
|
-
border-collapse: separate;
|
9
|
-
border-spacing: 0;
|
10
|
-
/*
|
11
|
-
* Header and footer styles
|
12
|
-
*/
|
13
|
-
/*
|
14
|
-
* Body styles
|
15
|
-
*/
|
16
|
-
}
|
17
|
-
table.dataTable thead th,
|
18
|
-
table.dataTable tfoot th {
|
19
|
-
font-weight: bold;
|
20
|
-
}
|
21
|
-
table.dataTable thead th,
|
22
|
-
table.dataTable thead td {
|
23
|
-
padding: 10px 18px;
|
24
|
-
border-bottom: 1px solid #111;
|
25
|
-
}
|
26
|
-
table.dataTable thead th:active,
|
27
|
-
table.dataTable thead td:active {
|
28
|
-
outline: none;
|
29
|
-
}
|
30
|
-
table.dataTable tfoot th,
|
31
|
-
table.dataTable tfoot td {
|
32
|
-
padding: 10px 18px 6px 18px;
|
33
|
-
border-top: 1px solid #111;
|
34
|
-
}
|
35
|
-
table.dataTable thead .sorting,
|
36
|
-
table.dataTable thead .sorting_asc,
|
37
|
-
table.dataTable thead .sorting_desc,
|
38
|
-
table.dataTable thead .sorting_asc_disabled,
|
39
|
-
table.dataTable thead .sorting_desc_disabled {
|
40
|
-
cursor: pointer;
|
41
|
-
*cursor: hand;
|
42
|
-
}
|
43
|
-
table.dataTable thead .sorting,
|
44
|
-
table.dataTable thead .sorting_asc,
|
45
|
-
table.dataTable thead .sorting_desc,
|
46
|
-
table.dataTable thead .sorting_asc_disabled,
|
47
|
-
table.dataTable thead .sorting_desc_disabled {
|
48
|
-
background-repeat: no-repeat;
|
49
|
-
background-position: center right;
|
50
|
-
}
|
51
|
-
table.dataTable thead .sorting {
|
52
|
-
background-image: image-url("datatables/sort_both.png");
|
53
|
-
}
|
54
|
-
table.dataTable thead .sorting_asc {
|
55
|
-
background-image: image-url("datatables/sort_asc.png");
|
56
|
-
}
|
57
|
-
table.dataTable thead .sorting_desc {
|
58
|
-
background-image: image-url("datatables/sort_desc.png");
|
59
|
-
}
|
60
|
-
table.dataTable thead .sorting_asc_disabled {
|
61
|
-
background-image: image-url("datatables/sort_asc_disabled.png");
|
62
|
-
}
|
63
|
-
table.dataTable thead .sorting_desc_disabled {
|
64
|
-
background-image: image-url("datatables/sort_desc_disabled.png");
|
65
|
-
}
|
66
|
-
table.dataTable tbody tr {
|
67
|
-
background-color: #ffffff;
|
68
|
-
}
|
69
|
-
table.dataTable tbody tr.selected {
|
70
|
-
background-color: #B0BED9;
|
71
|
-
}
|
72
|
-
table.dataTable tbody th,
|
73
|
-
table.dataTable tbody td {
|
74
|
-
padding: 8px 10px;
|
75
|
-
}
|
76
|
-
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
|
77
|
-
border-top: 1px solid #ddd;
|
78
|
-
}
|
79
|
-
table.dataTable.row-border tbody tr:first-child th,
|
80
|
-
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
|
81
|
-
table.dataTable.display tbody tr:first-child td {
|
82
|
-
border-top: none;
|
83
|
-
}
|
84
|
-
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
|
85
|
-
border-top: 1px solid #ddd;
|
86
|
-
border-right: 1px solid #ddd;
|
87
|
-
}
|
88
|
-
table.dataTable.cell-border tbody tr th:first-child,
|
89
|
-
table.dataTable.cell-border tbody tr td:first-child {
|
90
|
-
border-left: 1px solid #ddd;
|
91
|
-
}
|
92
|
-
table.dataTable.cell-border tbody tr:first-child th,
|
93
|
-
table.dataTable.cell-border tbody tr:first-child td {
|
94
|
-
border-top: none;
|
95
|
-
}
|
96
|
-
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
|
97
|
-
background-color: #f9f9f9;
|
98
|
-
}
|
99
|
-
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
|
100
|
-
background-color: #acbad4;
|
101
|
-
}
|
102
|
-
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
|
103
|
-
background-color: #f6f6f6;
|
104
|
-
}
|
105
|
-
table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
|
106
|
-
background-color: #aab7d1;
|
107
|
-
}
|
108
|
-
table.dataTable.order-column tbody tr > .sorting_1,
|
109
|
-
table.dataTable.order-column tbody tr > .sorting_2,
|
110
|
-
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
|
111
|
-
table.dataTable.display tbody tr > .sorting_2,
|
112
|
-
table.dataTable.display tbody tr > .sorting_3 {
|
113
|
-
background-color: #fafafa;
|
114
|
-
}
|
115
|
-
table.dataTable.order-column tbody tr.selected > .sorting_1,
|
116
|
-
table.dataTable.order-column tbody tr.selected > .sorting_2,
|
117
|
-
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
|
118
|
-
table.dataTable.display tbody tr.selected > .sorting_2,
|
119
|
-
table.dataTable.display tbody tr.selected > .sorting_3 {
|
120
|
-
background-color: #acbad5;
|
121
|
-
}
|
122
|
-
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
|
123
|
-
background-color: #f1f1f1;
|
124
|
-
}
|
125
|
-
table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
|
126
|
-
background-color: #f3f3f3;
|
127
|
-
}
|
128
|
-
table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
|
129
|
-
background-color: whitesmoke;
|
130
|
-
}
|
131
|
-
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
|
132
|
-
background-color: #a6b4cd;
|
133
|
-
}
|
134
|
-
table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
|
135
|
-
background-color: #a8b5cf;
|
136
|
-
}
|
137
|
-
table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
|
138
|
-
background-color: #a9b7d1;
|
139
|
-
}
|
140
|
-
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
|
141
|
-
background-color: #fafafa;
|
142
|
-
}
|
143
|
-
table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
|
144
|
-
background-color: #fcfcfc;
|
145
|
-
}
|
146
|
-
table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
|
147
|
-
background-color: #fefefe;
|
148
|
-
}
|
149
|
-
table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
|
150
|
-
background-color: #acbad5;
|
151
|
-
}
|
152
|
-
table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
|
153
|
-
background-color: #aebcd6;
|
154
|
-
}
|
155
|
-
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
|
156
|
-
background-color: #afbdd8;
|
157
|
-
}
|
158
|
-
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
|
159
|
-
background-color: #eaeaea;
|
160
|
-
}
|
161
|
-
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
|
162
|
-
background-color: #ececec;
|
163
|
-
}
|
164
|
-
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
|
165
|
-
background-color: #efefef;
|
166
|
-
}
|
167
|
-
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
|
168
|
-
background-color: #a2aec7;
|
169
|
-
}
|
170
|
-
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
|
171
|
-
background-color: #a3b0c9;
|
172
|
-
}
|
173
|
-
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
|
174
|
-
background-color: #a5b2cb;
|
175
|
-
}
|
176
|
-
table.dataTable.no-footer {
|
177
|
-
border-bottom: 1px solid #111;
|
178
|
-
}
|
179
|
-
table.dataTable.nowrap th, table.dataTable.nowrap td {
|
180
|
-
white-space: nowrap;
|
181
|
-
}
|
182
|
-
table.dataTable.compact thead th,
|
183
|
-
table.dataTable.compact thead td {
|
184
|
-
padding: 4px 17px 4px 4px;
|
185
|
-
}
|
186
|
-
table.dataTable.compact tfoot th,
|
187
|
-
table.dataTable.compact tfoot td {
|
188
|
-
padding: 4px;
|
189
|
-
}
|
190
|
-
table.dataTable.compact tbody th,
|
191
|
-
table.dataTable.compact tbody td {
|
192
|
-
padding: 4px;
|
193
|
-
}
|
194
|
-
table.dataTable th.dt-left,
|
195
|
-
table.dataTable td.dt-left {
|
196
|
-
text-align: left;
|
197
|
-
}
|
198
|
-
table.dataTable th.dt-center,
|
199
|
-
table.dataTable td.dt-center,
|
200
|
-
table.dataTable td.dataTables_empty {
|
201
|
-
text-align: center;
|
202
|
-
}
|
203
|
-
table.dataTable th.dt-right,
|
204
|
-
table.dataTable td.dt-right {
|
205
|
-
text-align: right;
|
206
|
-
}
|
207
|
-
table.dataTable th.dt-justify,
|
208
|
-
table.dataTable td.dt-justify {
|
209
|
-
text-align: justify;
|
210
|
-
}
|
211
|
-
table.dataTable th.dt-nowrap,
|
212
|
-
table.dataTable td.dt-nowrap {
|
213
|
-
white-space: nowrap;
|
214
|
-
}
|
215
|
-
table.dataTable thead th.dt-head-left,
|
216
|
-
table.dataTable thead td.dt-head-left,
|
217
|
-
table.dataTable tfoot th.dt-head-left,
|
218
|
-
table.dataTable tfoot td.dt-head-left {
|
219
|
-
text-align: left;
|
220
|
-
}
|
221
|
-
table.dataTable thead th.dt-head-center,
|
222
|
-
table.dataTable thead td.dt-head-center,
|
223
|
-
table.dataTable tfoot th.dt-head-center,
|
224
|
-
table.dataTable tfoot td.dt-head-center {
|
225
|
-
text-align: center;
|
226
|
-
}
|
227
|
-
table.dataTable thead th.dt-head-right,
|
228
|
-
table.dataTable thead td.dt-head-right,
|
229
|
-
table.dataTable tfoot th.dt-head-right,
|
230
|
-
table.dataTable tfoot td.dt-head-right {
|
231
|
-
text-align: right;
|
232
|
-
}
|
233
|
-
table.dataTable thead th.dt-head-justify,
|
234
|
-
table.dataTable thead td.dt-head-justify,
|
235
|
-
table.dataTable tfoot th.dt-head-justify,
|
236
|
-
table.dataTable tfoot td.dt-head-justify {
|
237
|
-
text-align: justify;
|
238
|
-
}
|
239
|
-
table.dataTable thead th.dt-head-nowrap,
|
240
|
-
table.dataTable thead td.dt-head-nowrap,
|
241
|
-
table.dataTable tfoot th.dt-head-nowrap,
|
242
|
-
table.dataTable tfoot td.dt-head-nowrap {
|
243
|
-
white-space: nowrap;
|
244
|
-
}
|
245
|
-
table.dataTable tbody th.dt-body-left,
|
246
|
-
table.dataTable tbody td.dt-body-left {
|
247
|
-
text-align: left;
|
248
|
-
}
|
249
|
-
table.dataTable tbody th.dt-body-center,
|
250
|
-
table.dataTable tbody td.dt-body-center {
|
251
|
-
text-align: center;
|
252
|
-
}
|
253
|
-
table.dataTable tbody th.dt-body-right,
|
254
|
-
table.dataTable tbody td.dt-body-right {
|
255
|
-
text-align: right;
|
256
|
-
}
|
257
|
-
table.dataTable tbody th.dt-body-justify,
|
258
|
-
table.dataTable tbody td.dt-body-justify {
|
259
|
-
text-align: justify;
|
260
|
-
}
|
261
|
-
table.dataTable tbody th.dt-body-nowrap,
|
262
|
-
table.dataTable tbody td.dt-body-nowrap {
|
263
|
-
white-space: nowrap;
|
264
|
-
}
|
265
|
-
|
266
|
-
table.dataTable,
|
267
|
-
table.dataTable th,
|
268
|
-
table.dataTable td {
|
269
|
-
-webkit-box-sizing: content-box;
|
270
|
-
box-sizing: content-box;
|
271
|
-
}
|
272
|
-
|
273
|
-
/*
|
274
|
-
* Control feature layout
|
275
|
-
*/
|
276
|
-
.dataTables_wrapper {
|
277
|
-
position: relative;
|
278
|
-
clear: both;
|
279
|
-
*zoom: 1;
|
280
|
-
zoom: 1;
|
281
|
-
}
|
282
|
-
.dataTables_wrapper .dataTables_length {
|
283
|
-
float: left;
|
284
|
-
}
|
285
|
-
.dataTables_wrapper .dataTables_filter {
|
286
|
-
float: right;
|
287
|
-
text-align: right;
|
288
|
-
}
|
289
|
-
.dataTables_wrapper .dataTables_filter input {
|
290
|
-
margin-left: 0.5em;
|
291
|
-
}
|
292
|
-
.dataTables_wrapper .dataTables_info {
|
293
|
-
clear: both;
|
294
|
-
float: left;
|
295
|
-
padding-top: 0.755em;
|
296
|
-
}
|
297
|
-
.dataTables_wrapper .dataTables_paginate {
|
298
|
-
float: right;
|
299
|
-
text-align: right;
|
300
|
-
padding-top: 0.25em;
|
301
|
-
}
|
302
|
-
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
303
|
-
box-sizing: border-box;
|
304
|
-
display: inline-block;
|
305
|
-
min-width: 1.5em;
|
306
|
-
padding: 0.5em 1em;
|
307
|
-
margin-left: 2px;
|
308
|
-
text-align: center;
|
309
|
-
text-decoration: none !important;
|
310
|
-
cursor: pointer;
|
311
|
-
*cursor: hand;
|
312
|
-
color: #333 !important;
|
313
|
-
border: 1px solid transparent;
|
314
|
-
border-radius: 2px;
|
315
|
-
}
|
316
|
-
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
|
317
|
-
color: #333 !important;
|
318
|
-
border: 1px solid #979797;
|
319
|
-
background-color: white;
|
320
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
|
321
|
-
/* Chrome,Safari4+ */
|
322
|
-
background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
|
323
|
-
/* Chrome10+,Safari5.1+ */
|
324
|
-
background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
|
325
|
-
/* FF3.6+ */
|
326
|
-
background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
|
327
|
-
/* IE10+ */
|
328
|
-
background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
|
329
|
-
/* Opera 11.10+ */
|
330
|
-
background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
|
331
|
-
/* W3C */
|
332
|
-
}
|
333
|
-
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
|
334
|
-
cursor: default;
|
335
|
-
color: #666 !important;
|
336
|
-
border: 1px solid transparent;
|
337
|
-
background: transparent;
|
338
|
-
box-shadow: none;
|
339
|
-
}
|
340
|
-
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
|
341
|
-
color: white !important;
|
342
|
-
border: 1px solid #111;
|
343
|
-
background-color: #585858;
|
344
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
|
345
|
-
/* Chrome,Safari4+ */
|
346
|
-
background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
|
347
|
-
/* Chrome10+,Safari5.1+ */
|
348
|
-
background: -moz-linear-gradient(top, #585858 0%, #111 100%);
|
349
|
-
/* FF3.6+ */
|
350
|
-
background: -ms-linear-gradient(top, #585858 0%, #111 100%);
|
351
|
-
/* IE10+ */
|
352
|
-
background: -o-linear-gradient(top, #585858 0%, #111 100%);
|
353
|
-
/* Opera 11.10+ */
|
354
|
-
background: linear-gradient(to bottom, #585858 0%, #111 100%);
|
355
|
-
/* W3C */
|
356
|
-
}
|
357
|
-
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
|
358
|
-
outline: none;
|
359
|
-
background-color: #2b2b2b;
|
360
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
|
361
|
-
/* Chrome,Safari4+ */
|
362
|
-
background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
363
|
-
/* Chrome10+,Safari5.1+ */
|
364
|
-
background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
365
|
-
/* FF3.6+ */
|
366
|
-
background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
367
|
-
/* IE10+ */
|
368
|
-
background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
369
|
-
/* Opera 11.10+ */
|
370
|
-
background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
|
371
|
-
/* W3C */
|
372
|
-
box-shadow: inset 0 0 3px #111;
|
373
|
-
}
|
374
|
-
.dataTables_wrapper .dataTables_paginate .ellipsis {
|
375
|
-
padding: 0 1em;
|
376
|
-
}
|
377
|
-
.dataTables_wrapper .dataTables_processing {
|
378
|
-
position: absolute;
|
379
|
-
top: 50%;
|
380
|
-
left: 50%;
|
381
|
-
width: 100%;
|
382
|
-
height: 40px;
|
383
|
-
margin-left: -50%;
|
384
|
-
margin-top: -25px;
|
385
|
-
padding-top: 20px;
|
386
|
-
text-align: center;
|
387
|
-
font-size: 1.2em;
|
388
|
-
background-color: white;
|
389
|
-
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
|
390
|
-
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
391
|
-
background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
392
|
-
background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
393
|
-
background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
394
|
-
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
395
|
-
}
|
396
|
-
.dataTables_wrapper .dataTables_length,
|
397
|
-
.dataTables_wrapper .dataTables_filter,
|
398
|
-
.dataTables_wrapper .dataTables_info,
|
399
|
-
.dataTables_wrapper .dataTables_processing,
|
400
|
-
.dataTables_wrapper .dataTables_paginate {
|
401
|
-
color: #333;
|
402
|
-
}
|
403
|
-
.dataTables_wrapper .dataTables_scroll {
|
404
|
-
clear: both;
|
405
|
-
}
|
406
|
-
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
|
407
|
-
*margin-top: -1px;
|
408
|
-
-webkit-overflow-scrolling: touch;
|
409
|
-
}
|
410
|
-
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
|
411
|
-
vertical-align: middle;
|
412
|
-
}
|
413
|
-
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
|
414
|
-
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
|
415
|
-
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
|
416
|
-
height: 0;
|
417
|
-
overflow: hidden;
|
418
|
-
margin: 0 !important;
|
419
|
-
padding: 0 !important;
|
420
|
-
}
|
421
|
-
.dataTables_wrapper.no-footer .dataTables_scrollBody {
|
422
|
-
border-bottom: 1px solid #111;
|
423
|
-
}
|
424
|
-
.dataTables_wrapper.no-footer div.dataTables_scrollHead > table,
|
425
|
-
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
|
426
|
-
border-bottom: none;
|
427
|
-
}
|
428
|
-
.dataTables_wrapper:after {
|
429
|
-
visibility: hidden;
|
430
|
-
display: block;
|
431
|
-
content: "";
|
432
|
-
clear: both;
|
433
|
-
height: 0;
|
434
|
-
}
|
435
|
-
|
436
|
-
@media screen and (max-width: 767px) {
|
437
|
-
.dataTables_wrapper .dataTables_info,
|
438
|
-
.dataTables_wrapper .dataTables_paginate {
|
439
|
-
float: none;
|
440
|
-
text-align: center;
|
441
|
-
}
|
442
|
-
.dataTables_wrapper .dataTables_paginate {
|
443
|
-
margin-top: 0.5em;
|
444
|
-
}
|
445
|
-
}
|
446
|
-
@media screen and (max-width: 640px) {
|
447
|
-
.dataTables_wrapper .dataTables_length,
|
448
|
-
.dataTables_wrapper .dataTables_filter {
|
449
|
-
float: none;
|
450
|
-
text-align: center;
|
451
|
-
}
|
452
|
-
.dataTables_wrapper .dataTables_filter {
|
453
|
-
margin-top: 0.5em;
|
454
|
-
}
|
455
|
-
}
|