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,189 +0,0 @@
1
- @keyframes dtb-spinner {
2
- 100% {
3
- transform: rotate(360deg);
4
- }
5
- }
6
- @-o-keyframes dtb-spinner {
7
- 100% {
8
- -o-transform: rotate(360deg);
9
- transform: rotate(360deg);
10
- }
11
- }
12
- @-ms-keyframes dtb-spinner {
13
- 100% {
14
- -ms-transform: rotate(360deg);
15
- transform: rotate(360deg);
16
- }
17
- }
18
- @-webkit-keyframes dtb-spinner {
19
- 100% {
20
- -webkit-transform: rotate(360deg);
21
- transform: rotate(360deg);
22
- }
23
- }
24
- @-moz-keyframes dtb-spinner {
25
- 100% {
26
- -moz-transform: rotate(360deg);
27
- transform: rotate(360deg);
28
- }
29
- }
30
- div.dt-button-info {
31
- position: fixed;
32
- top: 50%;
33
- left: 50%;
34
- width: 400px;
35
- margin-top: -100px;
36
- margin-left: -200px;
37
- background-color: white;
38
- border: 2px solid #111;
39
- box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
40
- border-radius: 3px;
41
- text-align: center;
42
- z-index: 21;
43
- }
44
- div.dt-button-info h2 {
45
- padding: 0.5em;
46
- margin: 0;
47
- font-weight: normal;
48
- border-bottom: 1px solid #ddd;
49
- background-color: #f3f3f3;
50
- }
51
- div.dt-button-info > div {
52
- padding: 1em;
53
- }
54
-
55
- ul.dt-buttons li {
56
- margin: 0;
57
- }
58
- ul.dt-buttons li.active a {
59
- box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
60
- }
61
-
62
- ul.dt-buttons.button-group a {
63
- margin-bottom: 0;
64
- }
65
-
66
- ul.dt-button-collection.f-dropdown {
67
- -webkit-column-gap: 8px;
68
- -moz-column-gap: 8px;
69
- -ms-column-gap: 8px;
70
- -o-column-gap: 8px;
71
- column-gap: 8px;
72
- }
73
- ul.dt-button-collection.f-dropdown.fixed {
74
- position: fixed;
75
- top: 50%;
76
- left: 50%;
77
- margin-left: -75px;
78
- border-radius: 0;
79
- }
80
- ul.dt-button-collection.f-dropdown.fixed.two-column {
81
- margin-left: -150px;
82
- }
83
- ul.dt-button-collection.f-dropdown.fixed.three-column {
84
- margin-left: -225px;
85
- }
86
- ul.dt-button-collection.f-dropdown.fixed.four-column {
87
- margin-left: -300px;
88
- }
89
- ul.dt-button-collection.f-dropdown > * {
90
- -webkit-column-break-inside: avoid;
91
- break-inside: avoid;
92
- }
93
- ul.dt-button-collection.f-dropdown.two-column {
94
- width: 300px;
95
- padding-bottom: 1px;
96
- -webkit-column-count: 2;
97
- -moz-column-count: 2;
98
- -ms-column-count: 2;
99
- -o-column-count: 2;
100
- column-count: 2;
101
- }
102
- ul.dt-button-collection.f-dropdown.three-column {
103
- width: 450px;
104
- padding-bottom: 1px;
105
- -webkit-column-count: 3;
106
- -moz-column-count: 3;
107
- -ms-column-count: 3;
108
- -o-column-count: 3;
109
- column-count: 3;
110
- }
111
- ul.dt-button-collection.f-dropdown.four-column {
112
- width: 600px;
113
- padding-bottom: 1px;
114
- -webkit-column-count: 4;
115
- -moz-column-count: 4;
116
- -ms-column-count: 4;
117
- -o-column-count: 4;
118
- column-count: 4;
119
- }
120
- ul.dt-button-collection.f-dropdown.fixed {
121
- max-width: none;
122
- }
123
- ul.dt-button-collection.f-dropdown.fixed:before, ul.dt-button-collection.f-dropdown.fixed:after {
124
- display: none;
125
- }
126
-
127
- div.dt-button-background {
128
- position: fixed;
129
- top: 0;
130
- left: 0;
131
- width: 100%;
132
- height: 100%;
133
- z-index: 88;
134
- }
135
-
136
- @media screen and (max-width: 767px) {
137
- ul.dt-buttons {
138
- float: none;
139
- width: 100%;
140
- text-align: center;
141
- margin-bottom: 0.5rem;
142
- }
143
- ul.dt-buttons li {
144
- float: none;
145
- }
146
- }
147
- div.button-group.stacked.dropdown-pane {
148
- margin-top: 2px;
149
- padding: 1px;
150
- z-index: 89;
151
- }
152
- div.button-group.stacked.dropdown-pane a.button {
153
- margin-bottom: 1px;
154
- border-right: none;
155
- }
156
- div.button-group.stacked.dropdown-pane a.button:last-child {
157
- margin-bottom: 0;
158
- }
159
-
160
- div.dt-buttons button.button.processing,
161
- div.dt-buttons div.button.processing,
162
- div.dt-buttons a.button.processing {
163
- color: rgba(0, 0, 0, 0.2);
164
- color: rgba(255, 255, 255, 0.2);
165
- border-top-color: white;
166
- border-bottom-color: white;
167
- }
168
- div.dt-buttons button.button.processing:after,
169
- div.dt-buttons div.button.processing:after,
170
- div.dt-buttons a.button.processing:after {
171
- position: absolute;
172
- top: 50%;
173
- left: 50%;
174
- width: 16px;
175
- height: 16px;
176
- margin: -8px 0 0 -8px;
177
- box-sizing: border-box;
178
- display: block;
179
- content: ' ';
180
- border: 2px solid #282828;
181
- border-radius: 50%;
182
- border-left-color: transparent;
183
- border-right-color: transparent;
184
- animation: dtb-spinner 1500ms infinite linear;
185
- -o-animation: dtb-spinner 1500ms infinite linear;
186
- -ms-animation: dtb-spinner 1500ms infinite linear;
187
- -webkit-animation: dtb-spinner 1500ms infinite linear;
188
- -moz-animation: dtb-spinner 1500ms infinite linear;
189
- }
@@ -1,218 +0,0 @@
1
- @keyframes dtb-spinner {
2
- 100% {
3
- transform: rotate(360deg);
4
- }
5
- }
6
- @-o-keyframes dtb-spinner {
7
- 100% {
8
- -o-transform: rotate(360deg);
9
- transform: rotate(360deg);
10
- }
11
- }
12
- @-ms-keyframes dtb-spinner {
13
- 100% {
14
- -ms-transform: rotate(360deg);
15
- transform: rotate(360deg);
16
- }
17
- }
18
- @-webkit-keyframes dtb-spinner {
19
- 100% {
20
- -webkit-transform: rotate(360deg);
21
- transform: rotate(360deg);
22
- }
23
- }
24
- @-moz-keyframes dtb-spinner {
25
- 100% {
26
- -moz-transform: rotate(360deg);
27
- transform: rotate(360deg);
28
- }
29
- }
30
- div.dt-button-info {
31
- position: fixed;
32
- top: 50%;
33
- left: 50%;
34
- width: 400px;
35
- margin-top: -100px;
36
- margin-left: -200px;
37
- background-color: white;
38
- border: 2px solid #111;
39
- box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
40
- border-radius: 3px;
41
- text-align: center;
42
- z-index: 21;
43
- }
44
- div.dt-button-info h2 {
45
- padding: 0.5em;
46
- margin: 0;
47
- font-weight: normal;
48
- border-bottom: 1px solid #ddd;
49
- background-color: #f3f3f3;
50
- }
51
- div.dt-button-info > div {
52
- padding: 1em;
53
- }
54
-
55
- div.dt-buttons {
56
- position: relative;
57
- float: left;
58
- }
59
- div.dt-buttons .dt-button {
60
- margin-right: 0;
61
- }
62
- div.dt-buttons .dt-button span.ui-icon {
63
- display: inline-block;
64
- vertical-align: middle;
65
- margin-top: -2px;
66
- }
67
- div.dt-buttons .dt-button:active {
68
- outline: none;
69
- }
70
- div.dt-buttons .dt-button:hover > span {
71
- background-color: rgba(0, 0, 0, 0.05);
72
- }
73
-
74
- div.dt-button-collection {
75
- position: absolute;
76
- top: 0;
77
- left: 0;
78
- width: 150px;
79
- margin-top: 3px;
80
- padding: 8px 8px 4px 8px;
81
- border: 1px solid #ccc;
82
- border: 1px solid rgba(0, 0, 0, 0.4);
83
- background-color: #f3f3f3;
84
- background-color: rgba(255, 255, 255, 0.3);
85
- overflow: hidden;
86
- z-index: 2002;
87
- border-radius: 5px;
88
- box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
89
- z-index: 2002;
90
- -webkit-column-gap: 8px;
91
- -moz-column-gap: 8px;
92
- -ms-column-gap: 8px;
93
- -o-column-gap: 8px;
94
- column-gap: 8px;
95
- -webkit-column-gap: 0;
96
- -moz-column-gap: 0;
97
- -ms-column-gap: 0;
98
- -o-column-gap: 0;
99
- column-gap: 0;
100
- }
101
- div.dt-button-collection .dt-button {
102
- position: relative;
103
- left: 0;
104
- right: 0;
105
- display: block;
106
- float: none;
107
- margin-right: 0;
108
- }
109
- div.dt-button-collection .dt-button:last-child {
110
- margin-bottom: 4px;
111
- }
112
- div.dt-button-collection .dt-button:hover > span {
113
- background-color: rgba(0, 0, 0, 0.05);
114
- }
115
- div.dt-button-collection.fixed {
116
- position: fixed;
117
- top: 50%;
118
- left: 50%;
119
- margin-left: -75px;
120
- border-radius: 0;
121
- }
122
- div.dt-button-collection.fixed.two-column {
123
- margin-left: -150px;
124
- }
125
- div.dt-button-collection.fixed.three-column {
126
- margin-left: -225px;
127
- }
128
- div.dt-button-collection.fixed.four-column {
129
- margin-left: -300px;
130
- }
131
- div.dt-button-collection > * {
132
- -webkit-column-break-inside: avoid;
133
- break-inside: avoid;
134
- }
135
- div.dt-button-collection.two-column {
136
- width: 300px;
137
- padding-bottom: 1px;
138
- -webkit-column-count: 2;
139
- -moz-column-count: 2;
140
- -ms-column-count: 2;
141
- -o-column-count: 2;
142
- column-count: 2;
143
- }
144
- div.dt-button-collection.three-column {
145
- width: 450px;
146
- padding-bottom: 1px;
147
- -webkit-column-count: 3;
148
- -moz-column-count: 3;
149
- -ms-column-count: 3;
150
- -o-column-count: 3;
151
- column-count: 3;
152
- }
153
- div.dt-button-collection.four-column {
154
- width: 600px;
155
- padding-bottom: 1px;
156
- -webkit-column-count: 4;
157
- -moz-column-count: 4;
158
- -ms-column-count: 4;
159
- -o-column-count: 4;
160
- column-count: 4;
161
- }
162
-
163
- div.dt-button-background {
164
- position: fixed;
165
- top: 0;
166
- left: 0;
167
- width: 100%;
168
- height: 100%;
169
- background: rgba(0, 0, 0, 0.7);
170
- /* Fallback */
171
- background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
172
- /* IE10 Consumer Preview */
173
- background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
174
- /* Firefox */
175
- background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
176
- /* Opera */
177
- background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
178
- /* Webkit (Safari/Chrome 10) */
179
- background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
180
- /* Webkit (Chrome 11+) */
181
- background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
182
- /* W3C Markup, IE10 Release Preview */
183
- z-index: 2001;
184
- }
185
-
186
- @media screen and (max-width: 640px) {
187
- div.dt-buttons {
188
- float: none !important;
189
- text-align: center;
190
- }
191
- }
192
- button.dt-button.processing,
193
- div.dt-button.processing,
194
- a.dt-button.processing {
195
- color: rgba(0, 0, 0, 0.2);
196
- }
197
- button.dt-button.processing:after,
198
- div.dt-button.processing:after,
199
- a.dt-button.processing:after {
200
- position: absolute;
201
- top: 50%;
202
- left: 50%;
203
- width: 16px;
204
- height: 16px;
205
- margin: -8px 0 0 -8px;
206
- box-sizing: border-box;
207
- display: block;
208
- content: ' ';
209
- border: 2px solid #282828;
210
- border-radius: 50%;
211
- border-left-color: transparent;
212
- border-right-color: transparent;
213
- animation: dtb-spinner 1500ms infinite linear;
214
- -o-animation: dtb-spinner 1500ms infinite linear;
215
- -ms-animation: dtb-spinner 1500ms infinite linear;
216
- -webkit-animation: dtb-spinner 1500ms infinite linear;
217
- -moz-animation: dtb-spinner 1500ms infinite linear;
218
- }
@@ -1,171 +0,0 @@
1
- @charset "UTF-8";
2
- @keyframes dtb-spinner {
3
- 100% {
4
- transform: rotate(360deg);
5
- }
6
- }
7
- @-o-keyframes dtb-spinner {
8
- 100% {
9
- -o-transform: rotate(360deg);
10
- transform: rotate(360deg);
11
- }
12
- }
13
- @-ms-keyframes dtb-spinner {
14
- 100% {
15
- -ms-transform: rotate(360deg);
16
- transform: rotate(360deg);
17
- }
18
- }
19
- @-webkit-keyframes dtb-spinner {
20
- 100% {
21
- -webkit-transform: rotate(360deg);
22
- transform: rotate(360deg);
23
- }
24
- }
25
- @-moz-keyframes dtb-spinner {
26
- 100% {
27
- -moz-transform: rotate(360deg);
28
- transform: rotate(360deg);
29
- }
30
- }
31
- div.dt-button-info {
32
- position: fixed;
33
- top: 50%;
34
- left: 50%;
35
- width: 400px;
36
- margin-top: -100px;
37
- margin-left: -200px;
38
- background-color: white;
39
- border: 2px solid #111;
40
- box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
41
- border-radius: 3px;
42
- text-align: center;
43
- z-index: 21;
44
- }
45
- div.dt-button-info h2 {
46
- padding: 0.5em;
47
- margin: 0;
48
- font-weight: normal;
49
- border-bottom: 1px solid #ddd;
50
- background-color: #f3f3f3;
51
- }
52
- div.dt-button-info > div {
53
- padding: 1em;
54
- }
55
-
56
- div.dt-button-collection {
57
- position: absolute;
58
- top: 0;
59
- left: 0;
60
- width: 150px;
61
- margin-top: 3px !important;
62
- z-index: 2002;
63
- background: white;
64
- -webkit-column-gap: 8px;
65
- -moz-column-gap: 8px;
66
- -ms-column-gap: 8px;
67
- -o-column-gap: 8px;
68
- column-gap: 8px;
69
- }
70
- div.dt-button-collection.fixed {
71
- position: fixed;
72
- top: 50%;
73
- left: 50%;
74
- margin-left: -75px;
75
- border-radius: 0;
76
- }
77
- div.dt-button-collection.fixed.two-column {
78
- margin-left: -150px;
79
- }
80
- div.dt-button-collection.fixed.three-column {
81
- margin-left: -225px;
82
- }
83
- div.dt-button-collection.fixed.four-column {
84
- margin-left: -300px;
85
- }
86
- div.dt-button-collection > * {
87
- -webkit-column-break-inside: avoid;
88
- break-inside: avoid;
89
- }
90
- div.dt-button-collection.two-column {
91
- width: 300px;
92
- padding-bottom: 1px;
93
- -webkit-column-count: 2;
94
- -moz-column-count: 2;
95
- -ms-column-count: 2;
96
- -o-column-count: 2;
97
- column-count: 2;
98
- }
99
- div.dt-button-collection.three-column {
100
- width: 450px;
101
- padding-bottom: 1px;
102
- -webkit-column-count: 3;
103
- -moz-column-count: 3;
104
- -ms-column-count: 3;
105
- -o-column-count: 3;
106
- column-count: 3;
107
- }
108
- div.dt-button-collection.four-column {
109
- width: 600px;
110
- padding-bottom: 1px;
111
- -webkit-column-count: 4;
112
- -moz-column-count: 4;
113
- -ms-column-count: 4;
114
- -o-column-count: 4;
115
- column-count: 4;
116
- }
117
-
118
- button.buttons-collection.ui.button span:after {
119
- display: inline-block;
120
- content: "▾";
121
- padding-left: 0.5em;
122
- }
123
-
124
- div.dt-button-background {
125
- position: fixed;
126
- top: 0;
127
- left: 0;
128
- width: 100%;
129
- height: 100%;
130
- z-index: 2001;
131
- }
132
-
133
- @media screen and (max-width: 767px) {
134
- div.dt-buttons {
135
- float: none;
136
- width: 100%;
137
- text-align: center;
138
- margin-bottom: 0.5em;
139
- }
140
- div.dt-buttons a.btn {
141
- float: none;
142
- }
143
- }
144
- div.dt-buttons button.button.processing,
145
- div.dt-buttons div.button.processing,
146
- div.dt-buttons a.button.processing {
147
- position: relative;
148
- color: rgba(0, 0, 0, 0.2);
149
- }
150
- div.dt-buttons button.button.processing:after,
151
- div.dt-buttons div.button.processing:after,
152
- div.dt-buttons a.button.processing:after {
153
- position: absolute;
154
- top: 50%;
155
- left: 50%;
156
- width: 16px;
157
- height: 16px;
158
- margin: -8px 0 0 -8px;
159
- box-sizing: border-box;
160
- display: block;
161
- content: ' ';
162
- border: 2px solid #282828;
163
- border-radius: 50%;
164
- border-left-color: transparent;
165
- border-right-color: transparent;
166
- animation: dtb-spinner 1500ms infinite linear;
167
- -o-animation: dtb-spinner 1500ms infinite linear;
168
- -ms-animation: dtb-spinner 1500ms infinite linear;
169
- -webkit-animation: dtb-spinner 1500ms infinite linear;
170
- -moz-animation: dtb-spinner 1500ms infinite linear;
171
- }