jquery-datatables 1.10.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +23 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +27 -0
  5. data/README.md +118 -0
  6. data/Rakefile +166 -0
  7. data/app/assets/images/datatables/sort_asc.png +0 -0
  8. data/app/assets/images/datatables/sort_asc_disabled.png +0 -0
  9. data/app/assets/images/datatables/sort_both.png +0 -0
  10. data/app/assets/images/datatables/sort_desc.png +0 -0
  11. data/app/assets/images/datatables/sort_desc_disabled.png +0 -0
  12. data/app/assets/javascripts/datatables/dataTables.bootstrap.js +182 -0
  13. data/app/assets/javascripts/datatables/dataTables.bootstrap4.js +184 -0
  14. data/app/assets/javascripts/datatables/dataTables.foundation.js +174 -0
  15. data/app/assets/javascripts/datatables/dataTables.jqueryui.js +164 -0
  16. data/app/assets/javascripts/datatables/dataTables.material.js +191 -0
  17. data/app/assets/javascripts/datatables/dataTables.semanticui.js +208 -0
  18. data/app/assets/javascripts/datatables/dataTables.uikit.js +176 -0
  19. data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.bootstrap.js +43 -0
  20. data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.bootstrap4.js +43 -0
  21. data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.foundation.js +43 -0
  22. data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.jqueryui.js +43 -0
  23. data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.semanticui.js +43 -0
  24. data/app/assets/javascripts/datatables/extensions/AutoFill/dataTables.autoFill.js +1036 -0
  25. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap.js +68 -0
  26. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap4.js +60 -0
  27. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.colVis.js +199 -0
  28. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.flash.js +1325 -0
  29. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.foundation.js +85 -0
  30. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.html5.js +1322 -0
  31. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.jqueryui.js +62 -0
  32. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.print.js +172 -0
  33. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.semanticui.js +57 -0
  34. data/app/assets/javascripts/datatables/extensions/Buttons/dataTables.buttons.js +1634 -0
  35. data/app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js +1335 -0
  36. data/app/assets/javascripts/datatables/extensions/FixedColumns/dataTables.fixedColumns.js +1623 -0
  37. data/app/assets/javascripts/datatables/extensions/FixedHeader/dataTables.fixedHeader.js +672 -0
  38. data/app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js +883 -0
  39. data/app/assets/javascripts/datatables/extensions/Responsive/dataTables.responsive.js +1232 -0
  40. data/app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap.js +81 -0
  41. data/app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap4.js +81 -0
  42. data/app/assets/javascripts/datatables/extensions/Responsive/responsive.foundation.js +62 -0
  43. data/app/assets/javascripts/datatables/extensions/Responsive/responsive.jqueryui.js +63 -0
  44. data/app/assets/javascripts/datatables/extensions/Responsive/responsive.semanticui.js +77 -0
  45. data/app/assets/javascripts/datatables/extensions/RowReorder/dataTables.rowReorder.js +709 -0
  46. data/app/assets/javascripts/datatables/extensions/Scroller/dataTables.scroller.js +1349 -0
  47. data/app/assets/javascripts/datatables/extensions/Select/dataTables.select.js +1109 -0
  48. data/app/assets/javascripts/datatables/jquery.dataTables.js +15278 -0
  49. data/app/assets/media/swf/flashExport.swf +0 -0
  50. data/app/assets/stylesheets/datatables/dataTables.bootstrap.css +185 -0
  51. data/app/assets/stylesheets/datatables/dataTables.bootstrap4.css +193 -0
  52. data/app/assets/stylesheets/datatables/dataTables.foundation.css +116 -0
  53. data/app/assets/stylesheets/datatables/dataTables.jqueryui.css +481 -0
  54. data/app/assets/stylesheets/datatables/dataTables.material.css +87 -0
  55. data/app/assets/stylesheets/datatables/dataTables.semanticui.css +103 -0
  56. data/app/assets/stylesheets/datatables/dataTables.uikit.css +146 -0
  57. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.css +81 -0
  58. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.css +81 -0
  59. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.css +92 -0
  60. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.css +85 -0
  61. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.css +85 -0
  62. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.css +81 -0
  63. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.css +102 -0
  64. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.css +163 -0
  65. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.css +298 -0
  66. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.css +129 -0
  67. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.css +162 -0
  68. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.css +114 -0
  69. data/app/assets/stylesheets/datatables/extensions/Buttons/common.scss +27 -0
  70. data/app/assets/stylesheets/datatables/extensions/Buttons/mixins.scss +89 -0
  71. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.css +11 -0
  72. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.css +11 -0
  73. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.css +11 -0
  74. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.css +11 -0
  75. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.css +11 -0
  76. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.css +11 -0
  77. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.css +44 -0
  78. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.css +44 -0
  79. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.css +18 -0
  80. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.foundation.css +27 -0
  81. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.css +8 -0
  82. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.css +16 -0
  83. data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.bootstrap.css +20 -0
  84. data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.bootstrap4.css +20 -0
  85. data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.css +19 -0
  86. data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.foundation.css +20 -0
  87. data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.jqueryui.css +15 -0
  88. data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.semanticui.css +14 -0
  89. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.css +5 -0
  90. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.css +5 -0
  91. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.css +5 -0
  92. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.css +5 -0
  93. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.css +5 -0
  94. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.css +5 -0
  95. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.css +181 -0
  96. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.css +181 -0
  97. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.css +178 -0
  98. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.css +181 -0
  99. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.css +178 -0
  100. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.css +181 -0
  101. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.css +22 -0
  102. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap4.css +22 -0
  103. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.css +22 -0
  104. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.css +22 -0
  105. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.css +22 -0
  106. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.css +22 -0
  107. data/app/assets/stylesheets/datatables/extensions/RowReorder/semanticui.scss +5 -0
  108. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.css +24 -0
  109. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.css +24 -0
  110. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.css +20 -0
  111. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.css +17 -0
  112. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.css +20 -0
  113. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.css +20 -0
  114. data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.css +110 -0
  115. data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.css +110 -0
  116. data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.css +100 -0
  117. data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.css +112 -0
  118. data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.css +100 -0
  119. data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.css +105 -0
  120. data/app/assets/stylesheets/datatables/jquery.dataTables.css +452 -0
  121. data/app/assets/stylesheets/datatables/jquery.dataTables_themeroller.css +416 -0
  122. data/jquery-datatables.gemspec +27 -0
  123. data/lib/generators/jquery/datatables/install_generator.rb +63 -0
  124. data/lib/generators/jquery/datatables/templates/bootstrap.css.tt +15 -0
  125. data/lib/generators/jquery/datatables/templates/bootstrap.js.tt +22 -0
  126. data/lib/generators/jquery/datatables/templates/bootstrap4.css.tt +15 -0
  127. data/lib/generators/jquery/datatables/templates/bootstrap4.js.tt +22 -0
  128. data/lib/generators/jquery/datatables/templates/foundation.css.tt +15 -0
  129. data/lib/generators/jquery/datatables/templates/foundation.js.tt +24 -0
  130. data/lib/generators/jquery/datatables/templates/jqueryui.css.tt +15 -0
  131. data/lib/generators/jquery/datatables/templates/jqueryui.js.tt +18 -0
  132. data/lib/generators/jquery/datatables/templates/material.css.tt +15 -0
  133. data/lib/generators/jquery/datatables/templates/material.js.tt +19 -0
  134. data/lib/generators/jquery/datatables/templates/regular.css.tt +15 -0
  135. data/lib/generators/jquery/datatables/templates/regular.js.tt +18 -0
  136. data/lib/generators/jquery/datatables/templates/semanticui.css.tt +16 -0
  137. data/lib/generators/jquery/datatables/templates/semanticui.js.tt +22 -0
  138. data/lib/generators/jquery/datatables/templates/uikit.css.tt +15 -0
  139. data/lib/generators/jquery/datatables/templates/uikit.js.tt +19 -0
  140. data/lib/jquery-datatables.rb +26 -0
  141. data/lib/jquery-datatables/engine.rb +11 -0
  142. data/lib/jquery-datatables/version.rb +6 -0
  143. 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
+ }