jquery-datatables 1.10.15 → 1.10.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (199) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +23 -16
  3. data/Rakefile +46 -27
  4. data/app/assets/javascripts/datatables/dataTables.bootstrap4.js +3 -3
  5. data/app/assets/javascripts/datatables/dataTables.jqueryui.js +6 -6
  6. data/app/assets/javascripts/datatables/extensions/AutoFill/dataTables.autoFill.js +5 -5
  7. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap.js +3 -1
  8. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap4.js +3 -1
  9. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.colVis.js +2 -1
  10. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.flash.js +74 -69
  11. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.foundation.js +3 -1
  12. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.html5.js +86 -63
  13. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.print.js +16 -22
  14. data/app/assets/javascripts/datatables/extensions/Buttons/dataTables.buttons.js +131 -3
  15. data/app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js +12 -6
  16. data/app/assets/javascripts/datatables/extensions/FixedColumns/dataTables.fixedColumns.js +8 -5
  17. data/app/assets/javascripts/datatables/extensions/FixedHeader/dataTables.fixedHeader.js +14 -9
  18. data/app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js +103 -8
  19. data/app/assets/javascripts/datatables/extensions/Responsive/dataTables.responsive.js +106 -6
  20. data/app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap4.js +1 -1
  21. data/app/assets/javascripts/datatables/extensions/RowGroup/dataTables.rowGroup.js +8 -6
  22. data/app/assets/javascripts/datatables/extensions/RowReorder/dataTables.rowReorder.js +68 -35
  23. data/app/assets/javascripts/datatables/extensions/Scroller/dataTables.scroller.js +71 -10
  24. data/app/assets/javascripts/datatables/extensions/Select/dataTables.select.js +11 -7
  25. data/app/assets/javascripts/datatables/jquery.dataTables.js +19 -121
  26. data/app/assets/stylesheets/datatables/dataTables.bootstrap.scss +252 -0
  27. data/app/assets/stylesheets/datatables/{dataTables.bootstrap2.css → dataTables.bootstrap2.scss} +6 -6
  28. data/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss +262 -0
  29. data/app/assets/stylesheets/datatables/dataTables.foundation.scss +154 -0
  30. data/app/assets/stylesheets/datatables/dataTables.jqueryui.scss +93 -0
  31. data/app/assets/stylesheets/datatables/dataTables.material.scss +101 -0
  32. data/app/assets/stylesheets/datatables/dataTables.semanticui.scss +138 -0
  33. data/app/assets/stylesheets/datatables/dataTables.uikit.scss +195 -0
  34. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.scss +8 -0
  35. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.scss +8 -0
  36. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.scss +125 -0
  37. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.scss +13 -0
  38. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.scss +10 -0
  39. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.scss +8 -0
  40. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.scss +40 -0
  41. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.scss +53 -0
  42. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.scss +141 -0
  43. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.scss +82 -0
  44. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.scss +98 -0
  45. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.scss +53 -0
  46. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.scss +4 -0
  47. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.scss +4 -0
  48. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.scss +17 -0
  49. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.scss +4 -0
  50. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.scss +2 -0
  51. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.scss +4 -0
  52. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.scss +50 -0
  53. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.scss +11 -0
  54. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.scss +22 -0
  55. data/app/assets/stylesheets/datatables/extensions/FixedColumns/{fixedColumns.foundation.css → fixedColumns.foundation.scss} +15 -6
  56. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.scss +16 -0
  57. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.scss +41 -0
  58. data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.bootstrap4.css → fixedHeader.bootstrap.scss} +6 -5
  59. data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.foundation.css → fixedHeader.bootstrap4.scss} +6 -5
  60. data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.scss +21 -0
  61. data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.bootstrap.css → fixedHeader.foundation.scss} +6 -5
  62. data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.semanticui.css → fixedHeader.jqueryui.scss} +7 -3
  63. data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.semanticui.scss +16 -0
  64. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.scss +4 -0
  65. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.scss +4 -0
  66. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.scss +10 -0
  67. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.scss +4 -0
  68. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.scss +2 -0
  69. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.scss +4 -0
  70. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.scss +8 -0
  71. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.scss +9 -0
  72. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.scss +240 -0
  73. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.scss +10 -0
  74. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.scss +2 -0
  75. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.scss +9 -0
  76. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap.scss +2 -0
  77. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap4.scss +2 -0
  78. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.dataTables.scss +9 -0
  79. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.foundation.scss +2 -0
  80. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.jqueryui.scss +2 -0
  81. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.semanticui.scss +4 -0
  82. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.scss +5 -0
  83. data/app/assets/stylesheets/datatables/extensions/RowReorder/{semanticui.scss → rowReorder.bootstrap4.scss} +0 -0
  84. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.scss +26 -0
  85. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.scss +5 -0
  86. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.scss +2 -0
  87. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.scss +5 -0
  88. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.scss +9 -0
  89. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.scss +9 -0
  90. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.scss +36 -0
  91. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.scss +31 -0
  92. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.scss +2 -0
  93. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.scss +2 -0
  94. data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.scss +17 -0
  95. data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.scss +17 -0
  96. data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.scss +143 -0
  97. data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.scss +18 -0
  98. data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.scss +4 -0
  99. data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.scss +14 -0
  100. data/app/assets/stylesheets/datatables/jquery.dataTables.scss +599 -0
  101. data/lib/generators/jquery/datatables/install_generator.rb +1 -1
  102. data/lib/generators/jquery/datatables/templates/bootstrap.js.tt +3 -1
  103. data/lib/generators/jquery/datatables/templates/bootstrap.scss.tt +15 -0
  104. data/lib/generators/jquery/datatables/templates/bootstrap4.js.tt +3 -1
  105. data/lib/generators/jquery/datatables/templates/bootstrap4.scss.tt +15 -0
  106. data/lib/generators/jquery/datatables/templates/foundation.js.tt +4 -4
  107. data/lib/generators/jquery/datatables/templates/foundation.scss.tt +33 -0
  108. data/lib/generators/jquery/datatables/templates/jqueryui.js.tt +7 -1
  109. data/lib/generators/jquery/datatables/templates/jqueryui.scss.tt +15 -0
  110. data/lib/generators/jquery/datatables/templates/material.js.tt +3 -1
  111. data/lib/generators/jquery/datatables/templates/material.scss.tt +1 -0
  112. data/lib/generators/jquery/datatables/templates/regular.js.tt +4 -3
  113. data/lib/generators/jquery/datatables/templates/regular.scss.tt +33 -0
  114. data/lib/generators/jquery/datatables/templates/semanticui.js.tt +4 -2
  115. data/lib/generators/jquery/datatables/templates/semanticui.scss.tt +15 -0
  116. data/lib/generators/jquery/datatables/templates/uikit.js.tt +4 -2
  117. data/lib/generators/jquery/datatables/templates/uikit.scss.tt +1 -0
  118. data/lib/jquery-datatables/version.rb +1 -1
  119. metadata +86 -90
  120. data/app/assets/stylesheets/datatables/dataTables.bootstrap.css +0 -184
  121. data/app/assets/stylesheets/datatables/dataTables.bootstrap4.css +0 -194
  122. data/app/assets/stylesheets/datatables/dataTables.foundation.css +0 -118
  123. data/app/assets/stylesheets/datatables/dataTables.jqueryui.css +0 -482
  124. data/app/assets/stylesheets/datatables/dataTables.material.css +0 -87
  125. data/app/assets/stylesheets/datatables/dataTables.semanticui.css +0 -102
  126. data/app/assets/stylesheets/datatables/dataTables.uikit.css +0 -146
  127. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.css +0 -81
  128. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.css +0 -81
  129. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.css +0 -92
  130. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.css +0 -85
  131. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.css +0 -85
  132. data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.css +0 -81
  133. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.css +0 -158
  134. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.css +0 -219
  135. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.css +0 -354
  136. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.css +0 -189
  137. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.css +0 -218
  138. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.css +0 -171
  139. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.css +0 -11
  140. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.css +0 -11
  141. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.css +0 -11
  142. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.css +0 -11
  143. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.css +0 -11
  144. data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.css +0 -11
  145. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.css +0 -44
  146. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.css +0 -44
  147. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.css +0 -18
  148. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.css +0 -8
  149. data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.css +0 -16
  150. data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.css +0 -19
  151. data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.jqueryui.css +0 -15
  152. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.css +0 -5
  153. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.css +0 -5
  154. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.css +0 -5
  155. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.css +0 -5
  156. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.css +0 -5
  157. data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.css +0 -5
  158. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.css +0 -181
  159. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.css +0 -181
  160. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.css +0 -178
  161. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.css +0 -181
  162. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.css +0 -178
  163. data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.css +0 -181
  164. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap.css +0 -4
  165. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap4.css +0 -4
  166. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.dataTables.css +0 -4
  167. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.foundation.css +0 -4
  168. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.jqueryui.css +0 -4
  169. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.semanticui.css +0 -4
  170. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.css +0 -22
  171. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap4.css +0 -22
  172. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.css +0 -22
  173. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.css +0 -22
  174. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.css +0 -22
  175. data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.css +0 -22
  176. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.css +0 -24
  177. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.css +0 -24
  178. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.css +0 -20
  179. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.css +0 -17
  180. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.css +0 -20
  181. data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.css +0 -20
  182. data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.css +0 -115
  183. data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.css +0 -115
  184. data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.css +0 -105
  185. data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.css +0 -117
  186. data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.css +0 -105
  187. data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.css +0 -110
  188. data/app/assets/stylesheets/datatables/jquery.dataTables.css +0 -455
  189. data/app/assets/stylesheets/datatables/jquery.dataTables_themeroller.css +0 -416
  190. data/lib/generators/jquery/datatables/templates/bootstrap.css.tt +0 -15
  191. data/lib/generators/jquery/datatables/templates/bootstrap2.css.tt +0 -15
  192. data/lib/generators/jquery/datatables/templates/bootstrap2.js.tt +0 -22
  193. data/lib/generators/jquery/datatables/templates/bootstrap4.css.tt +0 -15
  194. data/lib/generators/jquery/datatables/templates/foundation.css.tt +0 -15
  195. data/lib/generators/jquery/datatables/templates/jqueryui.css.tt +0 -15
  196. data/lib/generators/jquery/datatables/templates/material.css.tt +0 -15
  197. data/lib/generators/jquery/datatables/templates/regular.css.tt +0 -15
  198. data/lib/generators/jquery/datatables/templates/semanticui.css.tt +0 -16
  199. data/lib/generators/jquery/datatables/templates/uikit.css.tt +0 -15
@@ -1,87 +0,0 @@
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
- }
@@ -1,102 +0,0 @@
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
- box-sizing: content-box;
45
- }
46
- table.dataTable.table td.dataTables_empty,
47
- table.dataTable.table th.dataTables_empty {
48
- text-align: center;
49
- }
50
- table.dataTable.table.nowrap th,
51
- table.dataTable.table.nowrap td {
52
- white-space: nowrap;
53
- }
54
-
55
- div.dataTables_wrapper div.dataTables_length select {
56
- vertical-align: middle;
57
- min-height: 2.7142em;
58
- }
59
- div.dataTables_wrapper div.dataTables_length .ui.selection.dropdown {
60
- min-width: 0;
61
- }
62
- div.dataTables_wrapper div.dataTables_filter input {
63
- margin-left: 0.5em;
64
- }
65
- div.dataTables_wrapper div.dataTables_info {
66
- padding-top: 13px;
67
- white-space: nowrap;
68
- }
69
- div.dataTables_wrapper div.dataTables_processing {
70
- position: absolute;
71
- top: 50%;
72
- left: 50%;
73
- width: 200px;
74
- margin-left: -100px;
75
- text-align: center;
76
- }
77
- div.dataTables_wrapper div.row.dt-table {
78
- padding: 0;
79
- }
80
- div.dataTables_wrapper div.dataTables_scrollHead table.dataTable {
81
- border-bottom-right-radius: 0;
82
- border-bottom-left-radius: 0;
83
- border-bottom: none;
84
- }
85
- div.dataTables_wrapper div.dataTables_scrollBody thead .sorting:after,
86
- div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_asc:after,
87
- div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_desc:after {
88
- display: none;
89
- }
90
- div.dataTables_wrapper div.dataTables_scrollBody table.dataTable {
91
- border-radius: 0;
92
- border-top: none;
93
- border-bottom-width: 0;
94
- }
95
- div.dataTables_wrapper div.dataTables_scrollBody table.dataTable.no-footer {
96
- border-bottom-width: 1px;
97
- }
98
- div.dataTables_wrapper div.dataTables_scrollFoot table.dataTable {
99
- border-top-right-radius: 0;
100
- border-top-left-radius: 0;
101
- border-top: none;
102
- }
@@ -1,146 +0,0 @@
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
- }
@@ -1,81 +0,0 @@
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
- }
@@ -1,81 +0,0 @@
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
- }