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,87 @@
|
|
1
|
+
div.dataTables_wrapper div.dataTables_filter {
|
2
|
+
text-align: right;
|
3
|
+
}
|
4
|
+
div.dataTables_wrapper div.dataTables_filter input {
|
5
|
+
margin-left: 0.5em;
|
6
|
+
}
|
7
|
+
div.dataTables_wrapper div.dataTables_info {
|
8
|
+
padding-top: 10px;
|
9
|
+
white-space: nowrap;
|
10
|
+
}
|
11
|
+
div.dataTables_wrapper div.dataTables_processing {
|
12
|
+
position: absolute;
|
13
|
+
top: 50%;
|
14
|
+
left: 50%;
|
15
|
+
width: 200px;
|
16
|
+
margin-left: -100px;
|
17
|
+
text-align: center;
|
18
|
+
}
|
19
|
+
div.dataTables_wrapper div.dataTables_paginate {
|
20
|
+
text-align: right;
|
21
|
+
}
|
22
|
+
div.dataTables_wrapper div.mdl-grid.dt-table {
|
23
|
+
padding-top: 0;
|
24
|
+
padding-bottom: 0;
|
25
|
+
}
|
26
|
+
div.dataTables_wrapper div.mdl-grid.dt-table > div.mdl-cell {
|
27
|
+
margin-top: 0;
|
28
|
+
margin-bottom: 0;
|
29
|
+
}
|
30
|
+
|
31
|
+
table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
|
32
|
+
table.dataTable thead > tr > td.sorting_asc,
|
33
|
+
table.dataTable thead > tr > td.sorting_desc,
|
34
|
+
table.dataTable thead > tr > td.sorting {
|
35
|
+
padding-right: 30px;
|
36
|
+
}
|
37
|
+
table.dataTable thead > tr > th:active,
|
38
|
+
table.dataTable thead > tr > td:active {
|
39
|
+
outline: none;
|
40
|
+
}
|
41
|
+
table.dataTable thead .sorting,
|
42
|
+
table.dataTable thead .sorting_asc,
|
43
|
+
table.dataTable thead .sorting_desc,
|
44
|
+
table.dataTable thead .sorting_asc_disabled,
|
45
|
+
table.dataTable thead .sorting_desc_disabled {
|
46
|
+
cursor: pointer;
|
47
|
+
position: relative;
|
48
|
+
}
|
49
|
+
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
|
50
|
+
table.dataTable thead .sorting_asc:before,
|
51
|
+
table.dataTable thead .sorting_asc:after,
|
52
|
+
table.dataTable thead .sorting_desc:before,
|
53
|
+
table.dataTable thead .sorting_desc:after,
|
54
|
+
table.dataTable thead .sorting_asc_disabled:before,
|
55
|
+
table.dataTable thead .sorting_asc_disabled:after,
|
56
|
+
table.dataTable thead .sorting_desc_disabled:before,
|
57
|
+
table.dataTable thead .sorting_desc_disabled:after {
|
58
|
+
position: absolute;
|
59
|
+
bottom: 11px;
|
60
|
+
display: block;
|
61
|
+
opacity: 0.3;
|
62
|
+
font-size: 1.3em;
|
63
|
+
}
|
64
|
+
table.dataTable thead .sorting:before,
|
65
|
+
table.dataTable thead .sorting_asc:before,
|
66
|
+
table.dataTable thead .sorting_desc:before,
|
67
|
+
table.dataTable thead .sorting_asc_disabled:before,
|
68
|
+
table.dataTable thead .sorting_desc_disabled:before {
|
69
|
+
right: 1em;
|
70
|
+
content: "\2191";
|
71
|
+
}
|
72
|
+
table.dataTable thead .sorting:after,
|
73
|
+
table.dataTable thead .sorting_asc:after,
|
74
|
+
table.dataTable thead .sorting_desc:after,
|
75
|
+
table.dataTable thead .sorting_asc_disabled:after,
|
76
|
+
table.dataTable thead .sorting_desc_disabled:after {
|
77
|
+
right: 0.5em;
|
78
|
+
content: "\2193";
|
79
|
+
}
|
80
|
+
table.dataTable thead .sorting_asc:before,
|
81
|
+
table.dataTable thead .sorting_desc:after {
|
82
|
+
opacity: 1;
|
83
|
+
}
|
84
|
+
table.dataTable thead .sorting_asc_disabled:before,
|
85
|
+
table.dataTable thead .sorting_desc_disabled:after {
|
86
|
+
opacity: 0;
|
87
|
+
}
|
@@ -0,0 +1,103 @@
|
|
1
|
+
/*
|
2
|
+
* Styling for DataTables with Semantic UI
|
3
|
+
*/
|
4
|
+
table.dataTable.table {
|
5
|
+
margin: 0;
|
6
|
+
}
|
7
|
+
table.dataTable.table thead th,
|
8
|
+
table.dataTable.table thead td {
|
9
|
+
position: relative;
|
10
|
+
}
|
11
|
+
table.dataTable.table thead th.sorting, table.dataTable.table thead th.sorting_asc, table.dataTable.table thead th.sorting_desc,
|
12
|
+
table.dataTable.table thead td.sorting,
|
13
|
+
table.dataTable.table thead td.sorting_asc,
|
14
|
+
table.dataTable.table thead td.sorting_desc {
|
15
|
+
padding-right: 20px;
|
16
|
+
}
|
17
|
+
table.dataTable.table thead th.sorting:after, table.dataTable.table thead th.sorting_asc:after, table.dataTable.table thead th.sorting_desc:after,
|
18
|
+
table.dataTable.table thead td.sorting:after,
|
19
|
+
table.dataTable.table thead td.sorting_asc:after,
|
20
|
+
table.dataTable.table thead td.sorting_desc:after {
|
21
|
+
position: absolute;
|
22
|
+
top: 12px;
|
23
|
+
right: 8px;
|
24
|
+
display: block;
|
25
|
+
font-family: Icons;
|
26
|
+
}
|
27
|
+
table.dataTable.table thead th.sorting:after,
|
28
|
+
table.dataTable.table thead td.sorting:after {
|
29
|
+
content: "\f0dc";
|
30
|
+
color: #ddd;
|
31
|
+
font-size: 0.8em;
|
32
|
+
}
|
33
|
+
table.dataTable.table thead th.sorting_asc:after,
|
34
|
+
table.dataTable.table thead td.sorting_asc:after {
|
35
|
+
content: "\f0de";
|
36
|
+
}
|
37
|
+
table.dataTable.table thead th.sorting_desc:after,
|
38
|
+
table.dataTable.table thead td.sorting_desc:after {
|
39
|
+
content: "\f0dd";
|
40
|
+
}
|
41
|
+
table.dataTable.table td,
|
42
|
+
table.dataTable.table th {
|
43
|
+
-webkit-box-sizing: content-box;
|
44
|
+
-moz-box-sizing: content-box;
|
45
|
+
box-sizing: content-box;
|
46
|
+
}
|
47
|
+
table.dataTable.table td.dataTables_empty,
|
48
|
+
table.dataTable.table th.dataTables_empty {
|
49
|
+
text-align: center;
|
50
|
+
}
|
51
|
+
table.dataTable.table.nowrap th,
|
52
|
+
table.dataTable.table.nowrap td {
|
53
|
+
white-space: nowrap;
|
54
|
+
}
|
55
|
+
|
56
|
+
div.dataTables_wrapper div.dataTables_length select {
|
57
|
+
vertical-align: middle;
|
58
|
+
min-height: 2.7142em;
|
59
|
+
}
|
60
|
+
div.dataTables_wrapper div.dataTables_length .ui.selection.dropdown {
|
61
|
+
min-width: 0;
|
62
|
+
}
|
63
|
+
div.dataTables_wrapper div.dataTables_filter input {
|
64
|
+
margin-left: 0.5em;
|
65
|
+
}
|
66
|
+
div.dataTables_wrapper div.dataTables_info {
|
67
|
+
padding-top: 13px;
|
68
|
+
white-space: nowrap;
|
69
|
+
}
|
70
|
+
div.dataTables_wrapper div.dataTables_processing {
|
71
|
+
position: absolute;
|
72
|
+
top: 50%;
|
73
|
+
left: 50%;
|
74
|
+
width: 200px;
|
75
|
+
margin-left: -100px;
|
76
|
+
text-align: center;
|
77
|
+
}
|
78
|
+
div.dataTables_wrapper div.row.dt-table {
|
79
|
+
padding: 0;
|
80
|
+
}
|
81
|
+
div.dataTables_wrapper div.dataTables_scrollHead table.dataTable {
|
82
|
+
border-bottom-right-radius: 0;
|
83
|
+
border-bottom-left-radius: 0;
|
84
|
+
border-bottom: none;
|
85
|
+
}
|
86
|
+
div.dataTables_wrapper div.dataTables_scrollBody thead .sorting:after,
|
87
|
+
div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_asc:after,
|
88
|
+
div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_desc:after {
|
89
|
+
display: none;
|
90
|
+
}
|
91
|
+
div.dataTables_wrapper div.dataTables_scrollBody table.dataTable {
|
92
|
+
border-radius: 0;
|
93
|
+
border-top: none;
|
94
|
+
border-bottom-width: 0;
|
95
|
+
}
|
96
|
+
div.dataTables_wrapper div.dataTables_scrollBody table.dataTable.no-footer {
|
97
|
+
border-bottom-width: 1px;
|
98
|
+
}
|
99
|
+
div.dataTables_wrapper div.dataTables_scrollFoot table.dataTable {
|
100
|
+
border-top-right-radius: 0;
|
101
|
+
border-top-left-radius: 0;
|
102
|
+
border-top: none;
|
103
|
+
}
|
@@ -0,0 +1,146 @@
|
|
1
|
+
table.dataTable {
|
2
|
+
clear: both;
|
3
|
+
margin-top: 6px !important;
|
4
|
+
margin-bottom: 6px !important;
|
5
|
+
max-width: none !important;
|
6
|
+
}
|
7
|
+
table.dataTable td,
|
8
|
+
table.dataTable th {
|
9
|
+
-webkit-box-sizing: content-box;
|
10
|
+
box-sizing: content-box;
|
11
|
+
}
|
12
|
+
table.dataTable td.dataTables_empty,
|
13
|
+
table.dataTable th.dataTables_empty {
|
14
|
+
text-align: center;
|
15
|
+
}
|
16
|
+
table.dataTable.nowrap th,
|
17
|
+
table.dataTable.nowrap td {
|
18
|
+
white-space: nowrap;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dataTables_wrapper div.row.uk-grid.dt-merge-grid {
|
22
|
+
margin-top: 5px;
|
23
|
+
}
|
24
|
+
div.dataTables_wrapper div.dataTables_length label {
|
25
|
+
font-weight: normal;
|
26
|
+
text-align: left;
|
27
|
+
white-space: nowrap;
|
28
|
+
}
|
29
|
+
div.dataTables_wrapper div.dataTables_length select {
|
30
|
+
width: 75px;
|
31
|
+
display: inline-block;
|
32
|
+
}
|
33
|
+
div.dataTables_wrapper div.dataTables_filter {
|
34
|
+
text-align: right;
|
35
|
+
}
|
36
|
+
div.dataTables_wrapper div.dataTables_filter label {
|
37
|
+
font-weight: normal;
|
38
|
+
white-space: nowrap;
|
39
|
+
text-align: left;
|
40
|
+
}
|
41
|
+
div.dataTables_wrapper div.dataTables_filter input {
|
42
|
+
margin-left: 0.5em;
|
43
|
+
display: inline-block;
|
44
|
+
width: auto;
|
45
|
+
}
|
46
|
+
div.dataTables_wrapper div.dataTables_info {
|
47
|
+
padding-top: 8px;
|
48
|
+
white-space: nowrap;
|
49
|
+
}
|
50
|
+
div.dataTables_wrapper div.dataTables_paginate {
|
51
|
+
margin: 0;
|
52
|
+
white-space: nowrap;
|
53
|
+
text-align: right;
|
54
|
+
}
|
55
|
+
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
|
56
|
+
margin: 2px 0;
|
57
|
+
white-space: nowrap;
|
58
|
+
}
|
59
|
+
div.dataTables_wrapper div.dataTables_processing {
|
60
|
+
position: absolute;
|
61
|
+
top: 50%;
|
62
|
+
left: 50%;
|
63
|
+
width: 200px;
|
64
|
+
margin-left: -100px;
|
65
|
+
margin-top: -26px;
|
66
|
+
text-align: center;
|
67
|
+
padding: 1em 0;
|
68
|
+
}
|
69
|
+
|
70
|
+
table.dataTable thead > tr > th,
|
71
|
+
table.dataTable thead > tr > td {
|
72
|
+
position: relative;
|
73
|
+
}
|
74
|
+
table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
|
75
|
+
table.dataTable thead > tr > td.sorting_asc,
|
76
|
+
table.dataTable thead > tr > td.sorting_desc,
|
77
|
+
table.dataTable thead > tr > td.sorting {
|
78
|
+
padding-right: 30px;
|
79
|
+
}
|
80
|
+
table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after,
|
81
|
+
table.dataTable thead > tr > td.sorting:after,
|
82
|
+
table.dataTable thead > tr > td.sorting_asc:after,
|
83
|
+
table.dataTable thead > tr > td.sorting_desc:after {
|
84
|
+
position: absolute;
|
85
|
+
top: 7px;
|
86
|
+
right: 8px;
|
87
|
+
display: block;
|
88
|
+
font-family: 'FontAwesome';
|
89
|
+
}
|
90
|
+
table.dataTable thead > tr > th.sorting:after,
|
91
|
+
table.dataTable thead > tr > td.sorting:after {
|
92
|
+
content: "\f0dc";
|
93
|
+
color: #ddd;
|
94
|
+
font-size: 0.8em;
|
95
|
+
padding-top: 0.12em;
|
96
|
+
}
|
97
|
+
table.dataTable thead > tr > th.sorting_asc:after,
|
98
|
+
table.dataTable thead > tr > td.sorting_asc:after {
|
99
|
+
content: "\f0de";
|
100
|
+
}
|
101
|
+
table.dataTable thead > tr > th.sorting_desc:after,
|
102
|
+
table.dataTable thead > tr > td.sorting_desc:after {
|
103
|
+
content: "\f0dd";
|
104
|
+
}
|
105
|
+
|
106
|
+
div.dataTables_scrollHead table.dataTable {
|
107
|
+
margin-bottom: 0 !important;
|
108
|
+
}
|
109
|
+
|
110
|
+
div.dataTables_scrollBody table {
|
111
|
+
border-top: none;
|
112
|
+
margin-top: 0 !important;
|
113
|
+
margin-bottom: 0 !important;
|
114
|
+
}
|
115
|
+
div.dataTables_scrollBody table thead .sorting:after,
|
116
|
+
div.dataTables_scrollBody table thead .sorting_asc:after,
|
117
|
+
div.dataTables_scrollBody table thead .sorting_desc:after {
|
118
|
+
display: none;
|
119
|
+
}
|
120
|
+
div.dataTables_scrollBody table tbody tr:first-child th,
|
121
|
+
div.dataTables_scrollBody table tbody tr:first-child td {
|
122
|
+
border-top: none;
|
123
|
+
}
|
124
|
+
|
125
|
+
div.dataTables_scrollFoot table {
|
126
|
+
margin-top: 0 !important;
|
127
|
+
border-top: none;
|
128
|
+
}
|
129
|
+
|
130
|
+
@media screen and (max-width: 767px) {
|
131
|
+
div.dataTables_wrapper div.dataTables_length,
|
132
|
+
div.dataTables_wrapper div.dataTables_filter,
|
133
|
+
div.dataTables_wrapper div.dataTables_info,
|
134
|
+
div.dataTables_wrapper div.dataTables_paginate {
|
135
|
+
text-align: center;
|
136
|
+
}
|
137
|
+
}
|
138
|
+
table.dataTable.uk-table-condensed > thead > tr > th {
|
139
|
+
padding-right: 20px;
|
140
|
+
}
|
141
|
+
table.dataTable.uk-table-condensed .sorting:after,
|
142
|
+
table.dataTable.uk-table-condensed .sorting_asc:after,
|
143
|
+
table.dataTable.uk-table-condensed .sorting_desc:after {
|
144
|
+
top: 6px;
|
145
|
+
right: 6px;
|
146
|
+
}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
div.dt-autofill-handle {
|
2
|
+
position: absolute;
|
3
|
+
height: 8px;
|
4
|
+
width: 8px;
|
5
|
+
z-index: 102;
|
6
|
+
box-sizing: border-box;
|
7
|
+
border: 1px solid #337ab7;
|
8
|
+
background: #337ab7;
|
9
|
+
}
|
10
|
+
|
11
|
+
div.dt-autofill-select {
|
12
|
+
position: absolute;
|
13
|
+
z-index: 1001;
|
14
|
+
background-color: #337ab7;
|
15
|
+
background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);
|
16
|
+
}
|
17
|
+
div.dt-autofill-select.top, div.dt-autofill-select.bottom {
|
18
|
+
height: 3px;
|
19
|
+
margin-top: -1px;
|
20
|
+
}
|
21
|
+
div.dt-autofill-select.left, div.dt-autofill-select.right {
|
22
|
+
width: 3px;
|
23
|
+
margin-left: -1px;
|
24
|
+
}
|
25
|
+
|
26
|
+
div.dt-autofill-list {
|
27
|
+
position: fixed;
|
28
|
+
top: 50%;
|
29
|
+
left: 50%;
|
30
|
+
width: 500px;
|
31
|
+
margin-left: -250px;
|
32
|
+
background-color: white;
|
33
|
+
border-radius: 6px;
|
34
|
+
box-shadow: 0 0 5px #555;
|
35
|
+
border: 2px solid #444;
|
36
|
+
z-index: 11;
|
37
|
+
box-sizing: border-box;
|
38
|
+
padding: 1.5em 2em;
|
39
|
+
}
|
40
|
+
div.dt-autofill-list ul {
|
41
|
+
display: table;
|
42
|
+
margin: 0;
|
43
|
+
padding: 0;
|
44
|
+
list-style: none;
|
45
|
+
width: 100%;
|
46
|
+
}
|
47
|
+
div.dt-autofill-list ul li {
|
48
|
+
display: table-row;
|
49
|
+
}
|
50
|
+
div.dt-autofill-list ul li:last-child div.dt-autofill-question, div.dt-autofill-list ul li:last-child div.dt-autofill-button {
|
51
|
+
border-bottom: none;
|
52
|
+
}
|
53
|
+
div.dt-autofill-list ul li:hover {
|
54
|
+
background-color: #f6f6f6;
|
55
|
+
}
|
56
|
+
div.dt-autofill-list div.dt-autofill-question {
|
57
|
+
display: table-cell;
|
58
|
+
padding: 0.5em 0;
|
59
|
+
border-bottom: 1px solid #ccc;
|
60
|
+
}
|
61
|
+
div.dt-autofill-list div.dt-autofill-question input[type=number] {
|
62
|
+
padding: 6px;
|
63
|
+
width: 30px;
|
64
|
+
margin: -2px 0;
|
65
|
+
}
|
66
|
+
div.dt-autofill-list div.dt-autofill-button {
|
67
|
+
display: table-cell;
|
68
|
+
padding: 0.5em 0;
|
69
|
+
border-bottom: 1px solid #ccc;
|
70
|
+
}
|
71
|
+
|
72
|
+
div.dt-autofill-background {
|
73
|
+
position: fixed;
|
74
|
+
top: 0;
|
75
|
+
left: 0;
|
76
|
+
width: 100%;
|
77
|
+
height: 100%;
|
78
|
+
background: rgba(0, 0, 0, 0.7);
|
79
|
+
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
80
|
+
z-index: 10;
|
81
|
+
}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
div.dt-autofill-handle {
|
2
|
+
position: absolute;
|
3
|
+
height: 8px;
|
4
|
+
width: 8px;
|
5
|
+
z-index: 102;
|
6
|
+
box-sizing: border-box;
|
7
|
+
border: 1px solid #0275d8;
|
8
|
+
background: #0275d8;
|
9
|
+
}
|
10
|
+
|
11
|
+
div.dt-autofill-select {
|
12
|
+
position: absolute;
|
13
|
+
z-index: 1001;
|
14
|
+
background-color: #0275d8;
|
15
|
+
background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);
|
16
|
+
}
|
17
|
+
div.dt-autofill-select.top, div.dt-autofill-select.bottom {
|
18
|
+
height: 3px;
|
19
|
+
margin-top: -1px;
|
20
|
+
}
|
21
|
+
div.dt-autofill-select.left, div.dt-autofill-select.right {
|
22
|
+
width: 3px;
|
23
|
+
margin-left: -1px;
|
24
|
+
}
|
25
|
+
|
26
|
+
div.dt-autofill-list {
|
27
|
+
position: fixed;
|
28
|
+
top: 50%;
|
29
|
+
left: 50%;
|
30
|
+
width: 500px;
|
31
|
+
margin-left: -250px;
|
32
|
+
background-color: white;
|
33
|
+
border-radius: 6px;
|
34
|
+
box-shadow: 0 0 5px #555;
|
35
|
+
border: 2px solid #444;
|
36
|
+
z-index: 11;
|
37
|
+
box-sizing: border-box;
|
38
|
+
padding: 1.5em 2em;
|
39
|
+
}
|
40
|
+
div.dt-autofill-list ul {
|
41
|
+
display: table;
|
42
|
+
margin: 0;
|
43
|
+
padding: 0;
|
44
|
+
list-style: none;
|
45
|
+
width: 100%;
|
46
|
+
}
|
47
|
+
div.dt-autofill-list ul li {
|
48
|
+
display: table-row;
|
49
|
+
}
|
50
|
+
div.dt-autofill-list ul li:last-child div.dt-autofill-question, div.dt-autofill-list ul li:last-child div.dt-autofill-button {
|
51
|
+
border-bottom: none;
|
52
|
+
}
|
53
|
+
div.dt-autofill-list ul li:hover {
|
54
|
+
background-color: #f6f6f6;
|
55
|
+
}
|
56
|
+
div.dt-autofill-list div.dt-autofill-question {
|
57
|
+
display: table-cell;
|
58
|
+
padding: 0.5em 0;
|
59
|
+
border-bottom: 1px solid #ccc;
|
60
|
+
}
|
61
|
+
div.dt-autofill-list div.dt-autofill-question input[type=number] {
|
62
|
+
padding: 6px;
|
63
|
+
width: 30px;
|
64
|
+
margin: -2px 0;
|
65
|
+
}
|
66
|
+
div.dt-autofill-list div.dt-autofill-button {
|
67
|
+
display: table-cell;
|
68
|
+
padding: 0.5em 0;
|
69
|
+
border-bottom: 1px solid #ccc;
|
70
|
+
}
|
71
|
+
|
72
|
+
div.dt-autofill-background {
|
73
|
+
position: fixed;
|
74
|
+
top: 0;
|
75
|
+
left: 0;
|
76
|
+
width: 100%;
|
77
|
+
height: 100%;
|
78
|
+
background: rgba(0, 0, 0, 0.7);
|
79
|
+
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
80
|
+
z-index: 10;
|
81
|
+
}
|