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,178 +0,0 @@
|
|
1
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
|
2
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
|
3
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
|
4
|
-
cursor: default !important;
|
5
|
-
}
|
6
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
|
7
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
|
8
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
|
9
|
-
display: none !important;
|
10
|
-
}
|
11
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,
|
12
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {
|
13
|
-
position: relative;
|
14
|
-
padding-left: 30px;
|
15
|
-
cursor: pointer;
|
16
|
-
}
|
17
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
|
18
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
|
19
|
-
top: 9px;
|
20
|
-
left: 4px;
|
21
|
-
height: 14px;
|
22
|
-
width: 14px;
|
23
|
-
display: block;
|
24
|
-
position: absolute;
|
25
|
-
color: white;
|
26
|
-
border: 2px solid white;
|
27
|
-
border-radius: 14px;
|
28
|
-
box-shadow: 0 0 3px #444;
|
29
|
-
box-sizing: content-box;
|
30
|
-
text-align: center;
|
31
|
-
font-family: 'Courier New', Courier, monospace;
|
32
|
-
line-height: 14px;
|
33
|
-
content: '+';
|
34
|
-
background-color: #31b131;
|
35
|
-
}
|
36
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
|
37
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
|
38
|
-
content: '-';
|
39
|
-
background-color: #d33333;
|
40
|
-
}
|
41
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {
|
42
|
-
display: none;
|
43
|
-
}
|
44
|
-
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
|
45
|
-
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
|
46
|
-
padding-left: 27px;
|
47
|
-
}
|
48
|
-
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
|
49
|
-
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
|
50
|
-
top: 5px;
|
51
|
-
left: 4px;
|
52
|
-
height: 14px;
|
53
|
-
width: 14px;
|
54
|
-
border-radius: 14px;
|
55
|
-
line-height: 14px;
|
56
|
-
text-indent: 3px;
|
57
|
-
}
|
58
|
-
table.dataTable.dtr-column > tbody > tr > td.control,
|
59
|
-
table.dataTable.dtr-column > tbody > tr > th.control {
|
60
|
-
position: relative;
|
61
|
-
cursor: pointer;
|
62
|
-
}
|
63
|
-
table.dataTable.dtr-column > tbody > tr > td.control:before,
|
64
|
-
table.dataTable.dtr-column > tbody > tr > th.control:before {
|
65
|
-
top: 50%;
|
66
|
-
left: 50%;
|
67
|
-
height: 16px;
|
68
|
-
width: 16px;
|
69
|
-
margin-top: -10px;
|
70
|
-
margin-left: -10px;
|
71
|
-
display: block;
|
72
|
-
position: absolute;
|
73
|
-
color: white;
|
74
|
-
border: 2px solid white;
|
75
|
-
border-radius: 14px;
|
76
|
-
box-shadow: 0 0 3px #444;
|
77
|
-
box-sizing: content-box;
|
78
|
-
text-align: center;
|
79
|
-
font-family: 'Courier New', Courier, monospace;
|
80
|
-
line-height: 14px;
|
81
|
-
content: '+';
|
82
|
-
background-color: #31b131;
|
83
|
-
}
|
84
|
-
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
|
85
|
-
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
|
86
|
-
content: '-';
|
87
|
-
background-color: #d33333;
|
88
|
-
}
|
89
|
-
table.dataTable > tbody > tr.child {
|
90
|
-
padding: 0.5em 1em;
|
91
|
-
}
|
92
|
-
table.dataTable > tbody > tr.child:hover {
|
93
|
-
background: transparent !important;
|
94
|
-
}
|
95
|
-
table.dataTable > tbody > tr.child ul.dtr-details {
|
96
|
-
display: inline-block;
|
97
|
-
list-style-type: none;
|
98
|
-
margin: 0;
|
99
|
-
padding: 0;
|
100
|
-
}
|
101
|
-
table.dataTable > tbody > tr.child ul.dtr-details li {
|
102
|
-
border-bottom: 1px solid #efefef;
|
103
|
-
padding: 0.5em 0;
|
104
|
-
}
|
105
|
-
table.dataTable > tbody > tr.child ul.dtr-details li:first-child {
|
106
|
-
padding-top: 0;
|
107
|
-
}
|
108
|
-
table.dataTable > tbody > tr.child ul.dtr-details li:last-child {
|
109
|
-
border-bottom: none;
|
110
|
-
}
|
111
|
-
table.dataTable > tbody > tr.child span.dtr-title {
|
112
|
-
display: inline-block;
|
113
|
-
min-width: 75px;
|
114
|
-
font-weight: bold;
|
115
|
-
}
|
116
|
-
|
117
|
-
div.dtr-modal {
|
118
|
-
position: fixed;
|
119
|
-
box-sizing: border-box;
|
120
|
-
top: 0;
|
121
|
-
left: 0;
|
122
|
-
height: 100%;
|
123
|
-
width: 100%;
|
124
|
-
z-index: 100;
|
125
|
-
padding: 10em 1em;
|
126
|
-
}
|
127
|
-
div.dtr-modal div.dtr-modal-display {
|
128
|
-
position: absolute;
|
129
|
-
top: 0;
|
130
|
-
left: 0;
|
131
|
-
bottom: 0;
|
132
|
-
right: 0;
|
133
|
-
width: 50%;
|
134
|
-
height: 50%;
|
135
|
-
overflow: auto;
|
136
|
-
margin: auto;
|
137
|
-
z-index: 102;
|
138
|
-
overflow: auto;
|
139
|
-
background-color: #f5f5f7;
|
140
|
-
border: 1px solid black;
|
141
|
-
border-radius: 0.5em;
|
142
|
-
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
143
|
-
}
|
144
|
-
div.dtr-modal div.dtr-modal-content {
|
145
|
-
position: relative;
|
146
|
-
padding: 1em;
|
147
|
-
}
|
148
|
-
div.dtr-modal div.dtr-modal-close {
|
149
|
-
position: absolute;
|
150
|
-
top: 6px;
|
151
|
-
right: 6px;
|
152
|
-
width: 22px;
|
153
|
-
height: 22px;
|
154
|
-
border: 1px solid #eaeaea;
|
155
|
-
background-color: #f9f9f9;
|
156
|
-
text-align: center;
|
157
|
-
border-radius: 3px;
|
158
|
-
cursor: pointer;
|
159
|
-
z-index: 12;
|
160
|
-
}
|
161
|
-
div.dtr-modal div.dtr-modal-close:hover {
|
162
|
-
background-color: #eaeaea;
|
163
|
-
}
|
164
|
-
div.dtr-modal div.dtr-modal-background {
|
165
|
-
position: fixed;
|
166
|
-
top: 0;
|
167
|
-
left: 0;
|
168
|
-
right: 0;
|
169
|
-
bottom: 0;
|
170
|
-
z-index: 101;
|
171
|
-
background: rgba(0, 0, 0, 0.6);
|
172
|
-
}
|
173
|
-
|
174
|
-
@media screen and (max-width: 767px) {
|
175
|
-
div.dtr-modal div.dtr-modal-display {
|
176
|
-
width: 95%;
|
177
|
-
}
|
178
|
-
}
|
@@ -1,181 +0,0 @@
|
|
1
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
|
2
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
|
3
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
|
4
|
-
cursor: default !important;
|
5
|
-
}
|
6
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
|
7
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
|
8
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
|
9
|
-
display: none !important;
|
10
|
-
}
|
11
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,
|
12
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {
|
13
|
-
position: relative;
|
14
|
-
padding-left: 30px;
|
15
|
-
cursor: pointer;
|
16
|
-
}
|
17
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
|
18
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
|
19
|
-
top: 9px;
|
20
|
-
left: 4px;
|
21
|
-
height: 14px;
|
22
|
-
width: 14px;
|
23
|
-
display: block;
|
24
|
-
position: absolute;
|
25
|
-
color: white;
|
26
|
-
border: 2px solid white;
|
27
|
-
border-radius: 14px;
|
28
|
-
box-shadow: 0 0 3px #444;
|
29
|
-
box-sizing: content-box;
|
30
|
-
text-align: center;
|
31
|
-
font-family: 'Courier New', Courier, monospace;
|
32
|
-
line-height: 14px;
|
33
|
-
content: '+';
|
34
|
-
background-color: #21ba45;
|
35
|
-
}
|
36
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
|
37
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
|
38
|
-
content: '-';
|
39
|
-
background-color: #d33333;
|
40
|
-
}
|
41
|
-
table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {
|
42
|
-
display: none;
|
43
|
-
}
|
44
|
-
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
|
45
|
-
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
|
46
|
-
padding-left: 27px;
|
47
|
-
}
|
48
|
-
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
|
49
|
-
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
|
50
|
-
top: 5px;
|
51
|
-
left: 4px;
|
52
|
-
height: 14px;
|
53
|
-
width: 14px;
|
54
|
-
border-radius: 14px;
|
55
|
-
line-height: 14px;
|
56
|
-
text-indent: 3px;
|
57
|
-
}
|
58
|
-
table.dataTable.dtr-column > tbody > tr > td.control,
|
59
|
-
table.dataTable.dtr-column > tbody > tr > th.control {
|
60
|
-
position: relative;
|
61
|
-
cursor: pointer;
|
62
|
-
}
|
63
|
-
table.dataTable.dtr-column > tbody > tr > td.control:before,
|
64
|
-
table.dataTable.dtr-column > tbody > tr > th.control:before {
|
65
|
-
top: 50%;
|
66
|
-
left: 50%;
|
67
|
-
height: 16px;
|
68
|
-
width: 16px;
|
69
|
-
margin-top: -10px;
|
70
|
-
margin-left: -10px;
|
71
|
-
display: block;
|
72
|
-
position: absolute;
|
73
|
-
color: white;
|
74
|
-
border: 2px solid white;
|
75
|
-
border-radius: 14px;
|
76
|
-
box-shadow: 0 0 3px #444;
|
77
|
-
box-sizing: content-box;
|
78
|
-
text-align: center;
|
79
|
-
font-family: 'Courier New', Courier, monospace;
|
80
|
-
line-height: 14px;
|
81
|
-
content: '+';
|
82
|
-
background-color: #21ba45;
|
83
|
-
}
|
84
|
-
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
|
85
|
-
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
|
86
|
-
content: '-';
|
87
|
-
background-color: #d33333;
|
88
|
-
}
|
89
|
-
table.dataTable > tbody > tr.child {
|
90
|
-
padding: 0.5em 1em;
|
91
|
-
}
|
92
|
-
table.dataTable > tbody > tr.child:hover {
|
93
|
-
background: transparent !important;
|
94
|
-
}
|
95
|
-
table.dataTable > tbody > tr.child ul.dtr-details {
|
96
|
-
display: inline-block;
|
97
|
-
list-style-type: none;
|
98
|
-
margin: 0;
|
99
|
-
padding: 0;
|
100
|
-
}
|
101
|
-
table.dataTable > tbody > tr.child ul.dtr-details li {
|
102
|
-
border-bottom: 1px solid #efefef;
|
103
|
-
padding: 0.5em 0;
|
104
|
-
}
|
105
|
-
table.dataTable > tbody > tr.child ul.dtr-details li:first-child {
|
106
|
-
padding-top: 0;
|
107
|
-
}
|
108
|
-
table.dataTable > tbody > tr.child ul.dtr-details li:last-child {
|
109
|
-
border-bottom: none;
|
110
|
-
}
|
111
|
-
table.dataTable > tbody > tr.child span.dtr-title {
|
112
|
-
display: inline-block;
|
113
|
-
min-width: 75px;
|
114
|
-
font-weight: bold;
|
115
|
-
}
|
116
|
-
|
117
|
-
div.dtr-modal {
|
118
|
-
position: fixed;
|
119
|
-
box-sizing: border-box;
|
120
|
-
top: 0;
|
121
|
-
left: 0;
|
122
|
-
height: 100%;
|
123
|
-
width: 100%;
|
124
|
-
z-index: 100;
|
125
|
-
padding: 10em 1em;
|
126
|
-
}
|
127
|
-
div.dtr-modal div.dtr-modal-display {
|
128
|
-
position: absolute;
|
129
|
-
top: 0;
|
130
|
-
left: 0;
|
131
|
-
bottom: 0;
|
132
|
-
right: 0;
|
133
|
-
width: 50%;
|
134
|
-
height: 50%;
|
135
|
-
overflow: auto;
|
136
|
-
margin: auto;
|
137
|
-
z-index: 102;
|
138
|
-
overflow: auto;
|
139
|
-
background-color: #f5f5f7;
|
140
|
-
border: 1px solid black;
|
141
|
-
border-radius: 0.5em;
|
142
|
-
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
143
|
-
}
|
144
|
-
div.dtr-modal div.dtr-modal-content {
|
145
|
-
position: relative;
|
146
|
-
padding: 1em;
|
147
|
-
}
|
148
|
-
div.dtr-modal div.dtr-modal-close {
|
149
|
-
position: absolute;
|
150
|
-
top: 6px;
|
151
|
-
right: 6px;
|
152
|
-
width: 22px;
|
153
|
-
height: 22px;
|
154
|
-
border: 1px solid #eaeaea;
|
155
|
-
background-color: #f9f9f9;
|
156
|
-
text-align: center;
|
157
|
-
border-radius: 3px;
|
158
|
-
cursor: pointer;
|
159
|
-
z-index: 12;
|
160
|
-
}
|
161
|
-
div.dtr-modal div.dtr-modal-close:hover {
|
162
|
-
background-color: #eaeaea;
|
163
|
-
}
|
164
|
-
div.dtr-modal div.dtr-modal-background {
|
165
|
-
position: fixed;
|
166
|
-
top: 0;
|
167
|
-
left: 0;
|
168
|
-
right: 0;
|
169
|
-
bottom: 0;
|
170
|
-
z-index: 101;
|
171
|
-
background: rgba(0, 0, 0, 0.6);
|
172
|
-
}
|
173
|
-
|
174
|
-
@media screen and (max-width: 767px) {
|
175
|
-
div.dtr-modal div.dtr-modal-display {
|
176
|
-
width: 95%;
|
177
|
-
}
|
178
|
-
}
|
179
|
-
div.dtr-bs-modal table.table tr:first-child td {
|
180
|
-
border-top: none;
|
181
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
table.dt-rowReorder-float {
|
2
|
-
position: absolute !important;
|
3
|
-
opacity: 0.8;
|
4
|
-
table-layout: fixed;
|
5
|
-
outline: 2px solid #337ab7;
|
6
|
-
outline-offset: -2px;
|
7
|
-
z-index: 2001;
|
8
|
-
}
|
9
|
-
|
10
|
-
tr.dt-rowReorder-moving {
|
11
|
-
outline: 2px solid #888;
|
12
|
-
outline-offset: -2px;
|
13
|
-
}
|
14
|
-
|
15
|
-
body.dt-rowReorder-noOverflow {
|
16
|
-
overflow-x: hidden;
|
17
|
-
}
|
18
|
-
|
19
|
-
table.dataTable td.reorder {
|
20
|
-
text-align: center;
|
21
|
-
cursor: move;
|
22
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
table.dt-rowReorder-float {
|
2
|
-
position: absolute !important;
|
3
|
-
opacity: 0.8;
|
4
|
-
table-layout: fixed;
|
5
|
-
outline: 2px solid #0275d8;
|
6
|
-
outline-offset: -2px;
|
7
|
-
z-index: 2001;
|
8
|
-
}
|
9
|
-
|
10
|
-
tr.dt-rowReorder-moving {
|
11
|
-
outline: 2px solid #888;
|
12
|
-
outline-offset: -2px;
|
13
|
-
}
|
14
|
-
|
15
|
-
body.dt-rowReorder-noOverflow {
|
16
|
-
overflow-x: hidden;
|
17
|
-
}
|
18
|
-
|
19
|
-
table.dataTable td.reorder {
|
20
|
-
text-align: center;
|
21
|
-
cursor: move;
|
22
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
table.dt-rowReorder-float {
|
2
|
-
position: absolute !important;
|
3
|
-
opacity: 0.8;
|
4
|
-
table-layout: fixed;
|
5
|
-
outline: 2px solid #888;
|
6
|
-
outline-offset: -2px;
|
7
|
-
z-index: 2001;
|
8
|
-
}
|
9
|
-
|
10
|
-
tr.dt-rowReorder-moving {
|
11
|
-
outline: 2px solid #555;
|
12
|
-
outline-offset: -2px;
|
13
|
-
}
|
14
|
-
|
15
|
-
body.dt-rowReorder-noOverflow {
|
16
|
-
overflow-x: hidden;
|
17
|
-
}
|
18
|
-
|
19
|
-
table.dataTable td.reorder {
|
20
|
-
text-align: center;
|
21
|
-
cursor: move;
|
22
|
-
}
|