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,185 @@
1
+ table.dataTable {
2
+ clear: both;
3
+ margin-top: 6px !important;
4
+ margin-bottom: 6px !important;
5
+ max-width: none !important;
6
+ border-collapse: separate !important;
7
+ }
8
+ table.dataTable td,
9
+ table.dataTable th {
10
+ -webkit-box-sizing: content-box;
11
+ -moz-box-sizing: content-box;
12
+ box-sizing: content-box;
13
+ }
14
+ table.dataTable td.dataTables_empty,
15
+ table.dataTable th.dataTables_empty {
16
+ text-align: center;
17
+ }
18
+ table.dataTable.nowrap th,
19
+ table.dataTable.nowrap td {
20
+ white-space: nowrap;
21
+ }
22
+
23
+ div.dataTables_wrapper div.dataTables_length label {
24
+ font-weight: normal;
25
+ text-align: left;
26
+ white-space: nowrap;
27
+ }
28
+ div.dataTables_wrapper div.dataTables_length select {
29
+ width: 75px;
30
+ display: inline-block;
31
+ }
32
+ div.dataTables_wrapper div.dataTables_filter {
33
+ text-align: right;
34
+ }
35
+ div.dataTables_wrapper div.dataTables_filter label {
36
+ font-weight: normal;
37
+ white-space: nowrap;
38
+ text-align: left;
39
+ }
40
+ div.dataTables_wrapper div.dataTables_filter input {
41
+ margin-left: 0.5em;
42
+ display: inline-block;
43
+ width: auto;
44
+ }
45
+ div.dataTables_wrapper div.dataTables_info {
46
+ padding-top: 8px;
47
+ white-space: nowrap;
48
+ }
49
+ div.dataTables_wrapper div.dataTables_paginate {
50
+ margin: 0;
51
+ white-space: nowrap;
52
+ text-align: right;
53
+ }
54
+ div.dataTables_wrapper div.dataTables_paginate ul.pagination {
55
+ margin: 2px 0;
56
+ white-space: nowrap;
57
+ }
58
+ div.dataTables_wrapper div.dataTables_processing {
59
+ position: absolute;
60
+ top: 50%;
61
+ left: 50%;
62
+ width: 200px;
63
+ margin-left: -100px;
64
+ margin-top: -26px;
65
+ text-align: center;
66
+ padding: 1em 0;
67
+ }
68
+
69
+ table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
70
+ table.dataTable thead > tr > td.sorting_asc,
71
+ table.dataTable thead > tr > td.sorting_desc,
72
+ table.dataTable thead > tr > td.sorting {
73
+ padding-right: 30px;
74
+ }
75
+ table.dataTable thead > tr > th:active,
76
+ table.dataTable thead > tr > td:active {
77
+ outline: none;
78
+ }
79
+ table.dataTable thead .sorting,
80
+ table.dataTable thead .sorting_asc,
81
+ table.dataTable thead .sorting_desc,
82
+ table.dataTable thead .sorting_asc_disabled,
83
+ table.dataTable thead .sorting_desc_disabled {
84
+ cursor: pointer;
85
+ position: relative;
86
+ }
87
+ table.dataTable thead .sorting:after,
88
+ table.dataTable thead .sorting_asc:after,
89
+ table.dataTable thead .sorting_desc:after,
90
+ table.dataTable thead .sorting_asc_disabled:after,
91
+ table.dataTable thead .sorting_desc_disabled:after {
92
+ position: absolute;
93
+ bottom: 8px;
94
+ right: 8px;
95
+ display: block;
96
+ font-family: 'Glyphicons Halflings';
97
+ opacity: 0.5;
98
+ }
99
+ table.dataTable thead .sorting:after {
100
+ opacity: 0.2;
101
+ content: "\e150";
102
+ /* sort */
103
+ }
104
+ table.dataTable thead .sorting_asc:after {
105
+ content: "\e155";
106
+ /* sort-by-attributes */
107
+ }
108
+ table.dataTable thead .sorting_desc:after {
109
+ content: "\e156";
110
+ /* sort-by-attributes-alt */
111
+ }
112
+ table.dataTable thead .sorting_asc_disabled:after,
113
+ table.dataTable thead .sorting_desc_disabled:after {
114
+ color: #eee;
115
+ }
116
+
117
+ div.dataTables_scrollHead table.dataTable {
118
+ margin-bottom: 0 !important;
119
+ }
120
+
121
+ div.dataTables_scrollBody table {
122
+ border-top: none;
123
+ margin-top: 0 !important;
124
+ margin-bottom: 0 !important;
125
+ }
126
+ div.dataTables_scrollBody table thead .sorting:after,
127
+ div.dataTables_scrollBody table thead .sorting_asc:after,
128
+ div.dataTables_scrollBody table thead .sorting_desc:after {
129
+ display: none;
130
+ }
131
+ div.dataTables_scrollBody table tbody tr:first-child th,
132
+ div.dataTables_scrollBody table tbody tr:first-child td {
133
+ border-top: none;
134
+ }
135
+
136
+ div.dataTables_scrollFoot table {
137
+ margin-top: 0 !important;
138
+ border-top: none;
139
+ }
140
+
141
+ @media screen and (max-width: 767px) {
142
+ div.dataTables_wrapper div.dataTables_length,
143
+ div.dataTables_wrapper div.dataTables_filter,
144
+ div.dataTables_wrapper div.dataTables_info,
145
+ div.dataTables_wrapper div.dataTables_paginate {
146
+ text-align: center;
147
+ }
148
+ }
149
+ table.dataTable.table-condensed > thead > tr > th {
150
+ padding-right: 20px;
151
+ }
152
+ table.dataTable.table-condensed .sorting:after,
153
+ table.dataTable.table-condensed .sorting_asc:after,
154
+ table.dataTable.table-condensed .sorting_desc:after {
155
+ top: 6px;
156
+ right: 6px;
157
+ }
158
+
159
+ table.table-bordered.dataTable th,
160
+ table.table-bordered.dataTable td {
161
+ border-left-width: 0;
162
+ }
163
+ table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
164
+ table.table-bordered.dataTable td:last-child,
165
+ table.table-bordered.dataTable td:last-child {
166
+ border-right-width: 0;
167
+ }
168
+ table.table-bordered.dataTable tbody th,
169
+ table.table-bordered.dataTable tbody td {
170
+ border-bottom-width: 0;
171
+ }
172
+
173
+ div.dataTables_scrollHead table.table-bordered {
174
+ border-bottom-width: 0;
175
+ }
176
+
177
+ div.table-responsive > div.dataTables_wrapper > div.row {
178
+ margin: 0;
179
+ }
180
+ div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
181
+ padding-left: 0;
182
+ }
183
+ div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
184
+ padding-right: 0;
185
+ }
@@ -0,0 +1,193 @@
1
+ table.dataTable {
2
+ clear: both;
3
+ margin-top: 6px !important;
4
+ margin-bottom: 6px !important;
5
+ max-width: none !important;
6
+ border-collapse: separate !important;
7
+ }
8
+ table.dataTable td,
9
+ table.dataTable th {
10
+ -webkit-box-sizing: content-box;
11
+ box-sizing: content-box;
12
+ }
13
+ table.dataTable td.dataTables_empty,
14
+ table.dataTable th.dataTables_empty {
15
+ text-align: center;
16
+ }
17
+ table.dataTable.nowrap th,
18
+ table.dataTable.nowrap td {
19
+ white-space: nowrap;
20
+ }
21
+
22
+ div.dataTables_wrapper div.dataTables_length label {
23
+ font-weight: normal;
24
+ text-align: left;
25
+ white-space: nowrap;
26
+ }
27
+ div.dataTables_wrapper div.dataTables_length select {
28
+ width: 75px;
29
+ display: inline-block;
30
+ }
31
+ div.dataTables_wrapper div.dataTables_filter {
32
+ text-align: right;
33
+ }
34
+ div.dataTables_wrapper div.dataTables_filter label {
35
+ font-weight: normal;
36
+ white-space: nowrap;
37
+ text-align: left;
38
+ }
39
+ div.dataTables_wrapper div.dataTables_filter input {
40
+ margin-left: 0.5em;
41
+ display: inline-block;
42
+ width: auto;
43
+ }
44
+ div.dataTables_wrapper div.dataTables_info {
45
+ padding-top: 0.85em;
46
+ white-space: nowrap;
47
+ }
48
+ div.dataTables_wrapper div.dataTables_paginate {
49
+ margin: 0;
50
+ white-space: nowrap;
51
+ text-align: right;
52
+ }
53
+ div.dataTables_wrapper div.dataTables_paginate ul.pagination {
54
+ margin: 2px 0;
55
+ white-space: nowrap;
56
+ }
57
+ div.dataTables_wrapper div.dataTables_processing {
58
+ position: absolute;
59
+ top: 50%;
60
+ left: 50%;
61
+ width: 200px;
62
+ margin-left: -100px;
63
+ margin-top: -26px;
64
+ text-align: center;
65
+ padding: 1em 0;
66
+ }
67
+
68
+ table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
69
+ table.dataTable thead > tr > td.sorting_asc,
70
+ table.dataTable thead > tr > td.sorting_desc,
71
+ table.dataTable thead > tr > td.sorting {
72
+ padding-right: 30px;
73
+ }
74
+ table.dataTable thead > tr > th:active,
75
+ table.dataTable thead > tr > td:active {
76
+ outline: none;
77
+ }
78
+ table.dataTable thead .sorting,
79
+ table.dataTable thead .sorting_asc,
80
+ table.dataTable thead .sorting_desc,
81
+ table.dataTable thead .sorting_asc_disabled,
82
+ table.dataTable thead .sorting_desc_disabled {
83
+ cursor: pointer;
84
+ position: relative;
85
+ }
86
+ table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
87
+ table.dataTable thead .sorting_asc:before,
88
+ table.dataTable thead .sorting_asc:after,
89
+ table.dataTable thead .sorting_desc:before,
90
+ table.dataTable thead .sorting_desc:after,
91
+ table.dataTable thead .sorting_asc_disabled:before,
92
+ table.dataTable thead .sorting_asc_disabled:after,
93
+ table.dataTable thead .sorting_desc_disabled:before,
94
+ table.dataTable thead .sorting_desc_disabled:after {
95
+ position: absolute;
96
+ bottom: 0.9em;
97
+ display: block;
98
+ opacity: 0.3;
99
+ }
100
+ table.dataTable thead .sorting:before,
101
+ table.dataTable thead .sorting_asc:before,
102
+ table.dataTable thead .sorting_desc:before,
103
+ table.dataTable thead .sorting_asc_disabled:before,
104
+ table.dataTable thead .sorting_desc_disabled:before {
105
+ right: 1em;
106
+ content: "\2191";
107
+ }
108
+ table.dataTable thead .sorting:after,
109
+ table.dataTable thead .sorting_asc:after,
110
+ table.dataTable thead .sorting_desc:after,
111
+ table.dataTable thead .sorting_asc_disabled:after,
112
+ table.dataTable thead .sorting_desc_disabled:after {
113
+ right: 0.5em;
114
+ content: "\2193";
115
+ }
116
+ table.dataTable thead .sorting_asc:before,
117
+ table.dataTable thead .sorting_desc:after {
118
+ opacity: 1;
119
+ }
120
+ table.dataTable thead .sorting_asc_disabled:before,
121
+ table.dataTable thead .sorting_desc_disabled:after {
122
+ opacity: 0;
123
+ }
124
+
125
+ div.dataTables_scrollHead table.dataTable {
126
+ margin-bottom: 0 !important;
127
+ }
128
+
129
+ div.dataTables_scrollBody table {
130
+ border-top: none;
131
+ margin-top: 0 !important;
132
+ margin-bottom: 0 !important;
133
+ }
134
+ div.dataTables_scrollBody table thead .sorting:after,
135
+ div.dataTables_scrollBody table thead .sorting_asc:after,
136
+ div.dataTables_scrollBody table thead .sorting_desc:after {
137
+ display: none;
138
+ }
139
+ div.dataTables_scrollBody table tbody tr:first-child th,
140
+ div.dataTables_scrollBody table tbody tr:first-child td {
141
+ border-top: none;
142
+ }
143
+
144
+ div.dataTables_scrollFoot table {
145
+ margin-top: 0 !important;
146
+ border-top: none;
147
+ }
148
+
149
+ @media screen and (max-width: 767px) {
150
+ div.dataTables_wrapper div.dataTables_length,
151
+ div.dataTables_wrapper div.dataTables_filter,
152
+ div.dataTables_wrapper div.dataTables_info,
153
+ div.dataTables_wrapper div.dataTables_paginate {
154
+ text-align: center;
155
+ }
156
+ }
157
+ table.dataTable.table-condensed > thead > tr > th {
158
+ padding-right: 20px;
159
+ }
160
+ table.dataTable.table-condensed .sorting:after,
161
+ table.dataTable.table-condensed .sorting_asc:after,
162
+ table.dataTable.table-condensed .sorting_desc:after {
163
+ top: 6px;
164
+ right: 6px;
165
+ }
166
+
167
+ table.table-bordered.dataTable th,
168
+ table.table-bordered.dataTable td {
169
+ border-left-width: 0;
170
+ }
171
+ table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
172
+ table.table-bordered.dataTable td:last-child,
173
+ table.table-bordered.dataTable td:last-child {
174
+ border-right-width: 0;
175
+ }
176
+ table.table-bordered.dataTable tbody th,
177
+ table.table-bordered.dataTable tbody td {
178
+ border-bottom-width: 0;
179
+ }
180
+
181
+ div.dataTables_scrollHead table.table-bordered {
182
+ border-bottom-width: 0;
183
+ }
184
+
185
+ div.table-responsive > div.dataTables_wrapper > div.row {
186
+ margin: 0;
187
+ }
188
+ div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
189
+ padding-left: 0;
190
+ }
191
+ div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
192
+ padding-right: 0;
193
+ }
@@ -0,0 +1,116 @@
1
+ table.dataTable {
2
+ clear: both;
3
+ margin: 0.5em 0 !important;
4
+ max-width: none !important;
5
+ width: 100%;
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, table.dataTable.nowrap td {
17
+ white-space: nowrap;
18
+ }
19
+
20
+ div.dataTables_wrapper {
21
+ position: relative;
22
+ }
23
+ div.dataTables_wrapper div.dataTables_length label {
24
+ float: left;
25
+ text-align: left;
26
+ margin-bottom: 0;
27
+ }
28
+ div.dataTables_wrapper div.dataTables_length select {
29
+ width: 75px;
30
+ margin-bottom: 0;
31
+ }
32
+ div.dataTables_wrapper div.dataTables_filter label {
33
+ float: right;
34
+ margin-bottom: 0;
35
+ }
36
+ div.dataTables_wrapper div.dataTables_filter input {
37
+ display: inline-block !important;
38
+ width: auto !important;
39
+ margin-bottom: 0;
40
+ margin-left: 0.5em;
41
+ }
42
+ div.dataTables_wrapper div.dataTables_info {
43
+ padding-top: 2px;
44
+ }
45
+ div.dataTables_wrapper div.dataTables_paginate {
46
+ float: right;
47
+ margin: 0;
48
+ }
49
+ div.dataTables_wrapper div.dataTables_processing {
50
+ position: absolute;
51
+ top: 50%;
52
+ left: 50%;
53
+ width: 200px;
54
+ margin-left: -100px;
55
+ margin-top: -26px;
56
+ text-align: center;
57
+ padding: 1rem 0;
58
+ }
59
+
60
+ table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
61
+ table.dataTable thead > tr > td.sorting_asc,
62
+ table.dataTable thead > tr > td.sorting_desc,
63
+ table.dataTable thead > tr > td.sorting {
64
+ padding-right: 1.5rem;
65
+ }
66
+ table.dataTable thead > tr > th:active,
67
+ table.dataTable thead > tr > td:active {
68
+ outline: none;
69
+ }
70
+ table.dataTable thead .sorting,
71
+ table.dataTable thead .sorting_asc,
72
+ table.dataTable thead .sorting_desc {
73
+ cursor: pointer;
74
+ }
75
+ table.dataTable thead .sorting,
76
+ table.dataTable thead .sorting_asc,
77
+ table.dataTable thead .sorting_desc,
78
+ table.dataTable thead .sorting_asc_disabled,
79
+ table.dataTable thead .sorting_desc_disabled {
80
+ background-repeat: no-repeat;
81
+ background-position: center right;
82
+ }
83
+ table.dataTable thead .sorting {
84
+ background-image: url("../images/sort_both.png");
85
+ }
86
+ table.dataTable thead .sorting_asc {
87
+ background-image: url("../images/sort_asc.png");
88
+ }
89
+ table.dataTable thead .sorting_desc {
90
+ background-image: url("../images/sort_desc.png");
91
+ }
92
+ table.dataTable thead .sorting_asc_disabled {
93
+ background-image: url("../images/sort_asc_disabled.png");
94
+ }
95
+ table.dataTable thead .sorting_desc_disabled {
96
+ background-image: url("../images/sort_desc_disabled.png");
97
+ }
98
+
99
+ div.dataTables_scrollHead table {
100
+ margin-bottom: 0 !important;
101
+ }
102
+
103
+ div.dataTables_scrollBody table {
104
+ border-top: none;
105
+ margin-top: 0 !important;
106
+ margin-bottom: 0 !important;
107
+ }
108
+ div.dataTables_scrollBody table tbody tr:first-child th,
109
+ div.dataTables_scrollBody table tbody tr:first-child td {
110
+ border-top: none;
111
+ }
112
+
113
+ div.dataTables_scrollFoot table {
114
+ margin-top: 0 !important;
115
+ border-top: none;
116
+ }