jquery-datatables 1.10.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +23 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +27 -0
- data/README.md +118 -0
- data/Rakefile +166 -0
- data/app/assets/images/datatables/sort_asc.png +0 -0
- data/app/assets/images/datatables/sort_asc_disabled.png +0 -0
- data/app/assets/images/datatables/sort_both.png +0 -0
- data/app/assets/images/datatables/sort_desc.png +0 -0
- data/app/assets/images/datatables/sort_desc_disabled.png +0 -0
- data/app/assets/javascripts/datatables/dataTables.bootstrap.js +182 -0
- data/app/assets/javascripts/datatables/dataTables.bootstrap4.js +184 -0
- data/app/assets/javascripts/datatables/dataTables.foundation.js +174 -0
- data/app/assets/javascripts/datatables/dataTables.jqueryui.js +164 -0
- data/app/assets/javascripts/datatables/dataTables.material.js +191 -0
- data/app/assets/javascripts/datatables/dataTables.semanticui.js +208 -0
- data/app/assets/javascripts/datatables/dataTables.uikit.js +176 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.bootstrap.js +43 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.bootstrap4.js +43 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.foundation.js +43 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.jqueryui.js +43 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.semanticui.js +43 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/dataTables.autoFill.js +1036 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap.js +68 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap4.js +60 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.colVis.js +199 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.flash.js +1325 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.foundation.js +85 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.html5.js +1322 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.jqueryui.js +62 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.print.js +172 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.semanticui.js +57 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/dataTables.buttons.js +1634 -0
- data/app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js +1335 -0
- data/app/assets/javascripts/datatables/extensions/FixedColumns/dataTables.fixedColumns.js +1623 -0
- data/app/assets/javascripts/datatables/extensions/FixedHeader/dataTables.fixedHeader.js +672 -0
- data/app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js +883 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/dataTables.responsive.js +1232 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap.js +81 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap4.js +81 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.foundation.js +62 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.jqueryui.js +63 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.semanticui.js +77 -0
- data/app/assets/javascripts/datatables/extensions/RowReorder/dataTables.rowReorder.js +709 -0
- data/app/assets/javascripts/datatables/extensions/Scroller/dataTables.scroller.js +1349 -0
- data/app/assets/javascripts/datatables/extensions/Select/dataTables.select.js +1109 -0
- data/app/assets/javascripts/datatables/jquery.dataTables.js +15278 -0
- data/app/assets/media/swf/flashExport.swf +0 -0
- data/app/assets/stylesheets/datatables/dataTables.bootstrap.css +185 -0
- data/app/assets/stylesheets/datatables/dataTables.bootstrap4.css +193 -0
- data/app/assets/stylesheets/datatables/dataTables.foundation.css +116 -0
- data/app/assets/stylesheets/datatables/dataTables.jqueryui.css +481 -0
- data/app/assets/stylesheets/datatables/dataTables.material.css +87 -0
- data/app/assets/stylesheets/datatables/dataTables.semanticui.css +103 -0
- data/app/assets/stylesheets/datatables/dataTables.uikit.css +146 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.css +81 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.css +81 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.css +92 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.css +85 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.css +85 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.css +81 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.css +102 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.css +163 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.css +298 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.css +129 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.css +162 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.css +114 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/common.scss +27 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/mixins.scss +89 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.css +44 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.css +44 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.css +18 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.foundation.css +27 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.css +8 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.css +16 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.bootstrap.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.bootstrap4.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.css +19 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.foundation.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.jqueryui.css +15 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.semanticui.css +14 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.css +181 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.css +181 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.css +178 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.css +181 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.css +178 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.css +181 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap4.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/semanticui.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.css +24 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.css +24 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.css +17 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.css +110 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.css +110 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.css +100 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.css +112 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.css +100 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.css +105 -0
- data/app/assets/stylesheets/datatables/jquery.dataTables.css +452 -0
- data/app/assets/stylesheets/datatables/jquery.dataTables_themeroller.css +416 -0
- data/jquery-datatables.gemspec +27 -0
- data/lib/generators/jquery/datatables/install_generator.rb +63 -0
- data/lib/generators/jquery/datatables/templates/bootstrap.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/bootstrap.js.tt +22 -0
- data/lib/generators/jquery/datatables/templates/bootstrap4.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/bootstrap4.js.tt +22 -0
- data/lib/generators/jquery/datatables/templates/foundation.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/foundation.js.tt +24 -0
- data/lib/generators/jquery/datatables/templates/jqueryui.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/jqueryui.js.tt +18 -0
- data/lib/generators/jquery/datatables/templates/material.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/material.js.tt +19 -0
- data/lib/generators/jquery/datatables/templates/regular.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/regular.js.tt +18 -0
- data/lib/generators/jquery/datatables/templates/semanticui.css.tt +16 -0
- data/lib/generators/jquery/datatables/templates/semanticui.js.tt +22 -0
- data/lib/generators/jquery/datatables/templates/uikit.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/uikit.js.tt +19 -0
- data/lib/jquery-datatables.rb +26 -0
- data/lib/jquery-datatables/engine.rb +11 -0
- data/lib/jquery-datatables/version.rb +6 -0
- metadata +269 -0
@@ -0,0 +1,181 @@
|
|
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: 12px;
|
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: #0275d8;
|
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: #0275d8;
|
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 {
|
96
|
+
display: inline-block;
|
97
|
+
list-style-type: none;
|
98
|
+
margin: 0;
|
99
|
+
padding: 0;
|
100
|
+
}
|
101
|
+
table.dataTable > tbody > tr.child ul li {
|
102
|
+
border-bottom: 1px solid #efefef;
|
103
|
+
padding: 0.5em 0;
|
104
|
+
}
|
105
|
+
table.dataTable > tbody > tr.child ul li:first-child {
|
106
|
+
padding-top: 0;
|
107
|
+
}
|
108
|
+
table.dataTable > tbody > tr.child ul 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
|
+
}
|
@@ -0,0 +1,178 @@
|
|
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 {
|
96
|
+
display: inline-block;
|
97
|
+
list-style-type: none;
|
98
|
+
margin: 0;
|
99
|
+
padding: 0;
|
100
|
+
}
|
101
|
+
table.dataTable > tbody > tr.child ul li {
|
102
|
+
border-bottom: 1px solid #efefef;
|
103
|
+
padding: 0.5em 0;
|
104
|
+
}
|
105
|
+
table.dataTable > tbody > tr.child ul li:first-child {
|
106
|
+
padding-top: 0;
|
107
|
+
}
|
108
|
+
table.dataTable > tbody > tr.child ul 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
|
+
}
|
@@ -0,0 +1,181 @@
|
|
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: #008CBA;
|
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: #008CBA;
|
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 {
|
96
|
+
display: inline-block;
|
97
|
+
list-style-type: none;
|
98
|
+
margin: 0;
|
99
|
+
padding: 0;
|
100
|
+
}
|
101
|
+
table.dataTable > tbody > tr.child ul li {
|
102
|
+
border-bottom: 1px solid #efefef;
|
103
|
+
padding: 0.5em 0;
|
104
|
+
}
|
105
|
+
table.dataTable > tbody > tr.child ul li:first-child {
|
106
|
+
padding-top: 0;
|
107
|
+
}
|
108
|
+
table.dataTable > tbody > tr.child ul 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
|
+
table.dataTable > tbody > tr.child ul {
|
180
|
+
font-size: 1em;
|
181
|
+
}
|