jquery-datatables 1.10.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,22 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
table.dt-rowReorder-float {
|
|
2
|
+
position: absolute !important;
|
|
3
|
+
opacity: 0.8;
|
|
4
|
+
table-layout: fixed;
|
|
5
|
+
outline: 2px solid rgba(0, 0, 0, 0.05);
|
|
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
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
div.DTS {
|
|
2
|
+
display: block !important;
|
|
3
|
+
}
|
|
4
|
+
div.DTS tbody th,
|
|
5
|
+
div.DTS tbody td {
|
|
6
|
+
white-space: nowrap;
|
|
7
|
+
}
|
|
8
|
+
div.DTS div.DTS_Loading {
|
|
9
|
+
z-index: 1;
|
|
10
|
+
}
|
|
11
|
+
div.DTS div.dataTables_scrollBody {
|
|
12
|
+
background: repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, white 10px, white 20px);
|
|
13
|
+
}
|
|
14
|
+
div.DTS div.dataTables_scrollBody table {
|
|
15
|
+
z-index: 2;
|
|
16
|
+
}
|
|
17
|
+
div.DTS div.dataTables_paginate,
|
|
18
|
+
div.DTS div.dataTables_length {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
div.DTS tbody tr.even {
|
|
23
|
+
background-color: white;
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
div.DTS {
|
|
2
|
+
display: block !important;
|
|
3
|
+
}
|
|
4
|
+
div.DTS tbody th,
|
|
5
|
+
div.DTS tbody td {
|
|
6
|
+
white-space: nowrap;
|
|
7
|
+
}
|
|
8
|
+
div.DTS div.DTS_Loading {
|
|
9
|
+
z-index: 1;
|
|
10
|
+
}
|
|
11
|
+
div.DTS div.dataTables_scrollBody {
|
|
12
|
+
background: repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, white 10px, white 20px);
|
|
13
|
+
}
|
|
14
|
+
div.DTS div.dataTables_scrollBody table {
|
|
15
|
+
z-index: 2;
|
|
16
|
+
}
|
|
17
|
+
div.DTS div.dataTables_paginate,
|
|
18
|
+
div.DTS div.dataTables_length {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
div.DTS tbody tr.even {
|
|
23
|
+
background-color: white;
|
|
24
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
div.DTS {
|
|
2
|
+
display: block !important;
|
|
3
|
+
}
|
|
4
|
+
div.DTS tbody th,
|
|
5
|
+
div.DTS tbody td {
|
|
6
|
+
white-space: nowrap;
|
|
7
|
+
}
|
|
8
|
+
div.DTS div.DTS_Loading {
|
|
9
|
+
z-index: 1;
|
|
10
|
+
}
|
|
11
|
+
div.DTS div.dataTables_scrollBody {
|
|
12
|
+
background: repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, white 10px, white 20px);
|
|
13
|
+
}
|
|
14
|
+
div.DTS div.dataTables_scrollBody table {
|
|
15
|
+
z-index: 2;
|
|
16
|
+
}
|
|
17
|
+
div.DTS div.dataTables_paginate,
|
|
18
|
+
div.DTS div.dataTables_length {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
div.DTS tbody th,
|
|
2
|
+
div.DTS tbody td {
|
|
3
|
+
white-space: nowrap;
|
|
4
|
+
}
|
|
5
|
+
div.DTS div.DTS_Loading {
|
|
6
|
+
z-index: 1;
|
|
7
|
+
}
|
|
8
|
+
div.DTS div.dataTables_scrollBody {
|
|
9
|
+
background: repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, white 10px, white 20px);
|
|
10
|
+
}
|
|
11
|
+
div.DTS div.dataTables_scrollBody table {
|
|
12
|
+
z-index: 2;
|
|
13
|
+
}
|
|
14
|
+
div.DTS div.dataTables_paginate,
|
|
15
|
+
div.DTS div.dataTables_length {
|
|
16
|
+
display: none;
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
div.DTS {
|
|
2
|
+
display: block !important;
|
|
3
|
+
}
|
|
4
|
+
div.DTS tbody th,
|
|
5
|
+
div.DTS tbody td {
|
|
6
|
+
white-space: nowrap;
|
|
7
|
+
}
|
|
8
|
+
div.DTS div.DTS_Loading {
|
|
9
|
+
z-index: 1;
|
|
10
|
+
}
|
|
11
|
+
div.DTS div.dataTables_scrollBody {
|
|
12
|
+
background: repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, white 10px, white 20px);
|
|
13
|
+
}
|
|
14
|
+
div.DTS div.dataTables_scrollBody table {
|
|
15
|
+
z-index: 2;
|
|
16
|
+
}
|
|
17
|
+
div.DTS div.dataTables_paginate,
|
|
18
|
+
div.DTS div.dataTables_length {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
div.DTS {
|
|
2
|
+
display: block !important;
|
|
3
|
+
}
|
|
4
|
+
div.DTS tbody th,
|
|
5
|
+
div.DTS tbody td {
|
|
6
|
+
white-space: nowrap;
|
|
7
|
+
}
|
|
8
|
+
div.DTS div.DTS_Loading {
|
|
9
|
+
z-index: 1;
|
|
10
|
+
}
|
|
11
|
+
div.DTS div.dataTables_scrollBody {
|
|
12
|
+
background: repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, white 10px, white 20px);
|
|
13
|
+
}
|
|
14
|
+
div.DTS div.dataTables_scrollBody table {
|
|
15
|
+
z-index: 2;
|
|
16
|
+
}
|
|
17
|
+
div.DTS div.dataTables_paginate,
|
|
18
|
+
div.DTS div.dataTables_length {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
table.dataTable tbody > tr.selected,
|
|
2
|
+
table.dataTable tbody > tr > .selected {
|
|
3
|
+
background-color: #08C;
|
|
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: #0085c7;
|
|
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: #0083c5;
|
|
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: #0085c8;
|
|
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: #0081c1;
|
|
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: #0082c2;
|
|
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: #0083c4;
|
|
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: #0085c8;
|
|
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: #0086ca;
|
|
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: #0087cb;
|
|
41
|
+
}
|
|
42
|
+
table.dataTable.display tbody > tr.odd > .selected, table.dataTable.order-column.stripe tbody > tr.odd > .selected {
|
|
43
|
+
background-color: #0081c1;
|
|
44
|
+
}
|
|
45
|
+
table.dataTable.display tbody > tr.even > .selected, table.dataTable.order-column.stripe tbody > tr.even > .selected {
|
|
46
|
+
background-color: #0085c8;
|
|
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: #007dbb;
|
|
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: #007ebd;
|
|
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: #007fbf;
|
|
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: #007dbb;
|
|
61
|
+
}
|
|
62
|
+
table.dataTable td.select-checkbox {
|
|
63
|
+
position: relative;
|
|
64
|
+
}
|
|
65
|
+
table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after {
|
|
66
|
+
display: block;
|
|
67
|
+
position: absolute;
|
|
68
|
+
top: 1.2em;
|
|
69
|
+
left: 50%;
|
|
70
|
+
width: 12px;
|
|
71
|
+
height: 12px;
|
|
72
|
+
box-sizing: border-box;
|
|
73
|
+
}
|
|
74
|
+
table.dataTable td.select-checkbox:before {
|
|
75
|
+
content: ' ';
|
|
76
|
+
margin-top: -6px;
|
|
77
|
+
margin-left: -6px;
|
|
78
|
+
border: 1px solid black;
|
|
79
|
+
border-radius: 3px;
|
|
80
|
+
}
|
|
81
|
+
table.dataTable tr.selected td.select-checkbox:after {
|
|
82
|
+
content: '\2714';
|
|
83
|
+
margin-top: -11px;
|
|
84
|
+
margin-left: -4px;
|
|
85
|
+
text-align: center;
|
|
86
|
+
text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
div.dataTables_wrapper span.select-info,
|
|
90
|
+
div.dataTables_wrapper span.select-item {
|
|
91
|
+
margin-left: 0.5em;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@media screen and (max-width: 640px) {
|
|
95
|
+
div.dataTables_wrapper span.select-info,
|
|
96
|
+
div.dataTables_wrapper span.select-item {
|
|
97
|
+
margin-left: 0;
|
|
98
|
+
display: block;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
table.dataTable tbody tr.selected,
|
|
102
|
+
table.dataTable tbody th.selected,
|
|
103
|
+
table.dataTable tbody td.selected {
|
|
104
|
+
color: white;
|
|
105
|
+
}
|
|
106
|
+
table.dataTable tbody tr.selected a,
|
|
107
|
+
table.dataTable tbody th.selected a,
|
|
108
|
+
table.dataTable tbody td.selected a {
|
|
109
|
+
color: #a2d4ed;
|
|
110
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
table.dataTable tbody > tr.selected,
|
|
2
|
+
table.dataTable tbody > tr > .selected {
|
|
3
|
+
background-color: #0275d8;
|
|
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: #0272d3;
|
|
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: #0271d0;
|
|
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: #0273d4;
|
|
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: #026fcc;
|
|
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: #0270ce;
|
|
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: #0270d0;
|
|
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: #0273d4;
|
|
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: #0274d5;
|
|
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: #0275d7;
|
|
41
|
+
}
|
|
42
|
+
table.dataTable.display tbody > tr.odd > .selected, table.dataTable.order-column.stripe tbody > tr.odd > .selected {
|
|
43
|
+
background-color: #026fcc;
|
|
44
|
+
}
|
|
45
|
+
table.dataTable.display tbody > tr.even > .selected, table.dataTable.order-column.stripe tbody > tr.even > .selected {
|
|
46
|
+
background-color: #0273d4;
|
|
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: #026bc6;
|
|
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: #026cc8;
|
|
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: #026eca;
|
|
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: #026bc6;
|
|
61
|
+
}
|
|
62
|
+
table.dataTable td.select-checkbox {
|
|
63
|
+
position: relative;
|
|
64
|
+
}
|
|
65
|
+
table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after {
|
|
66
|
+
display: block;
|
|
67
|
+
position: absolute;
|
|
68
|
+
top: 1.2em;
|
|
69
|
+
left: 50%;
|
|
70
|
+
width: 12px;
|
|
71
|
+
height: 12px;
|
|
72
|
+
box-sizing: border-box;
|
|
73
|
+
}
|
|
74
|
+
table.dataTable td.select-checkbox:before {
|
|
75
|
+
content: ' ';
|
|
76
|
+
margin-top: -6px;
|
|
77
|
+
margin-left: -6px;
|
|
78
|
+
border: 1px solid black;
|
|
79
|
+
border-radius: 3px;
|
|
80
|
+
}
|
|
81
|
+
table.dataTable tr.selected td.select-checkbox:after {
|
|
82
|
+
content: '\2714';
|
|
83
|
+
margin-top: -11px;
|
|
84
|
+
margin-left: -4px;
|
|
85
|
+
text-align: center;
|
|
86
|
+
text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
div.dataTables_wrapper span.select-info,
|
|
90
|
+
div.dataTables_wrapper span.select-item {
|
|
91
|
+
margin-left: 0.5em;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@media screen and (max-width: 640px) {
|
|
95
|
+
div.dataTables_wrapper span.select-info,
|
|
96
|
+
div.dataTables_wrapper span.select-item {
|
|
97
|
+
margin-left: 0;
|
|
98
|
+
display: block;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
table.dataTable tbody tr.selected,
|
|
102
|
+
table.dataTable tbody th.selected,
|
|
103
|
+
table.dataTable tbody td.selected {
|
|
104
|
+
color: white;
|
|
105
|
+
}
|
|
106
|
+
table.dataTable tbody tr.selected a,
|
|
107
|
+
table.dataTable tbody th.selected a,
|
|
108
|
+
table.dataTable tbody td.selected a {
|
|
109
|
+
color: #a2d4ed;
|
|
110
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
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 td.select-checkbox {
|
|
63
|
+
position: relative;
|
|
64
|
+
}
|
|
65
|
+
table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after {
|
|
66
|
+
display: block;
|
|
67
|
+
position: absolute;
|
|
68
|
+
top: 1.2em;
|
|
69
|
+
left: 50%;
|
|
70
|
+
width: 12px;
|
|
71
|
+
height: 12px;
|
|
72
|
+
box-sizing: border-box;
|
|
73
|
+
}
|
|
74
|
+
table.dataTable td.select-checkbox:before {
|
|
75
|
+
content: ' ';
|
|
76
|
+
margin-top: -6px;
|
|
77
|
+
margin-left: -6px;
|
|
78
|
+
border: 1px solid black;
|
|
79
|
+
border-radius: 3px;
|
|
80
|
+
}
|
|
81
|
+
table.dataTable tr.selected td.select-checkbox:after {
|
|
82
|
+
content: '\2714';
|
|
83
|
+
margin-top: -11px;
|
|
84
|
+
margin-left: -4px;
|
|
85
|
+
text-align: center;
|
|
86
|
+
text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
div.dataTables_wrapper span.select-info,
|
|
90
|
+
div.dataTables_wrapper span.select-item {
|
|
91
|
+
margin-left: 0.5em;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@media screen and (max-width: 640px) {
|
|
95
|
+
div.dataTables_wrapper span.select-info,
|
|
96
|
+
div.dataTables_wrapper span.select-item {
|
|
97
|
+
margin-left: 0;
|
|
98
|
+
display: block;
|
|
99
|
+
}
|
|
100
|
+
}
|