jquery-datatables-rails 1.12.2 → 2.1.10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/images/dataTables/extras/filler.png +0 -0
- data/app/assets/images/dataTables/extras/loading-background.png +0 -0
- data/app/assets/images/dataTables/sort_asc_disabled.png +0 -0
- data/app/assets/javascripts/dataTables/extras/dataTables.autoFill.js +851 -0
- data/app/assets/javascripts/dataTables/extras/{ColReorder.js → dataTables.colReorder.js} +558 -223
- data/app/assets/javascripts/dataTables/extras/dataTables.colVis.js +1096 -0
- data/app/assets/javascripts/dataTables/extras/{FixedColumns.js → dataTables.fixedColumns.js} +163 -113
- data/app/assets/javascripts/dataTables/extras/{FixedHeader.js → dataTables.fixedHeader.js} +306 -219
- data/app/assets/javascripts/dataTables/extras/{KeyTable.js → dataTables.keyTable.js} +155 -95
- data/app/assets/javascripts/dataTables/extras/{Scroller.js → dataTables.scroller.js} +469 -188
- data/app/assets/javascripts/dataTables/extras/{TableTools.js → dataTables.tableTools.js} +949 -341
- data/app/assets/javascripts/dataTables/jquery.dataTables.foundation.js +4 -4
- data/app/assets/javascripts/dataTables/jquery.dataTables.js +10711 -8427
- data/app/assets/media/dataTables/extras/swf/copy_csv_xls.swf +0 -0
- data/app/assets/media/dataTables/extras/swf/copy_csv_xls_pdf.swf +0 -0
- data/app/assets/stylesheets/dataTables/extras/dataTables.autoFill.css.scss +24 -0
- data/app/assets/stylesheets/dataTables/extras/dataTables.colReorder.css.scss +14 -0
- data/app/assets/stylesheets/dataTables/extras/dataTables.colVis.css.scss +184 -0
- data/app/assets/stylesheets/dataTables/extras/dataTables.colvis.jqueryui.css.scss +23 -0
- data/app/assets/stylesheets/dataTables/extras/dataTables.fixedColumns.css.scss +24 -0
- data/app/assets/stylesheets/dataTables/extras/dataTables.fixedHeader.css.scss +7 -0
- data/app/assets/stylesheets/dataTables/extras/dataTables.keyTable.css.scss +7 -0
- data/app/assets/stylesheets/dataTables/extras/dataTables.scroller.css.scss +44 -0
- data/app/assets/stylesheets/dataTables/extras/{TableTools.css.erb → dataTables.tableTools.css.scss} +30 -15
- data/app/assets/stylesheets/dataTables/jquery.dataTables.bootstrap.css.scss +6 -0
- data/app/assets/stylesheets/dataTables/jquery.dataTables.css.scss +363 -184
- data/app/assets/stylesheets/dataTables/src/jquery.dataTables_themeroller.css +307 -220
- data/lib/jquery/datatables/rails/version.rb +1 -1
- metadata +42 -22
- data/app/assets/javascripts/dataTables/extras/AutoFill.js +0 -820
- data/app/assets/javascripts/dataTables/extras/ColVis.js +0 -1005
- data/app/assets/javascripts/dataTables/extras/TableTools.min.js +0 -77
- data/app/assets/stylesheets/dataTables/extras/ColReorder.css.erb +0 -21
- data/app/assets/stylesheets/dataTables/extras/ColVis.css +0 -76
- data/app/assets/stylesheets/dataTables/extras/ColVisAlt.css.erb +0 -104
@@ -1,243 +1,330 @@
|
|
1
|
-
|
2
|
-
|
3
1
|
/*
|
4
|
-
* Table
|
2
|
+
* Table styles
|
5
3
|
*/
|
6
4
|
table.dataTable {
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
5
|
+
width: 100%;
|
6
|
+
margin: 0 auto;
|
7
|
+
clear: both;
|
8
|
+
border-collapse: separate;
|
9
|
+
border-spacing: 0;
|
10
|
+
/*
|
11
|
+
* Header and footer styles
|
12
|
+
*/
|
13
|
+
/*
|
14
|
+
* Body styles
|
15
|
+
*/
|
16
|
+
}
|
17
|
+
table.dataTable thead th,
|
18
|
+
table.dataTable thead td,
|
19
|
+
table.dataTable tfoot th,
|
20
|
+
table.dataTable tfoot td {
|
21
|
+
padding: 4px 10px;
|
22
|
+
}
|
23
|
+
table.dataTable thead th,
|
18
24
|
table.dataTable tfoot th {
|
19
|
-
|
20
|
-
}
|
21
|
-
|
22
|
-
table.dataTable td {
|
23
|
-
padding: 3px 10px;
|
24
|
-
}
|
25
|
-
|
26
|
-
table.dataTable td.center,
|
27
|
-
table.dataTable td.dataTables_empty {
|
28
|
-
text-align: center;
|
29
|
-
}
|
30
|
-
|
31
|
-
table.dataTable tr.odd { background-color: #E2E4FF; }
|
32
|
-
table.dataTable tr.even { background-color: white; }
|
33
|
-
|
34
|
-
table.dataTable tr.odd td.sorting_1 { background-color: #D3D6FF; }
|
35
|
-
table.dataTable tr.odd td.sorting_2 { background-color: #DADCFF; }
|
36
|
-
table.dataTable tr.odd td.sorting_3 { background-color: #E0E2FF; }
|
37
|
-
table.dataTable tr.even td.sorting_1 { background-color: #EAEBFF; }
|
38
|
-
table.dataTable tr.even td.sorting_2 { background-color: #F2F3FF; }
|
39
|
-
table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; }
|
40
|
-
|
41
|
-
|
42
|
-
/*
|
43
|
-
* Table wrapper
|
44
|
-
*/
|
45
|
-
.dataTables_wrapper {
|
46
|
-
position: relative;
|
47
|
-
clear: both;
|
48
|
-
*zoom: 1;
|
49
|
-
}
|
50
|
-
.dataTables_wrapper .ui-widget-header {
|
51
|
-
font-weight: normal;
|
52
|
-
}
|
53
|
-
.dataTables_wrapper .ui-toolbar {
|
54
|
-
padding: 5px;
|
55
|
-
}
|
56
|
-
|
57
|
-
|
58
|
-
/*
|
59
|
-
* Page length menu
|
60
|
-
*/
|
61
|
-
.dataTables_length {
|
62
|
-
float: left;
|
63
|
-
}
|
64
|
-
|
65
|
-
|
66
|
-
/*
|
67
|
-
* Filter
|
68
|
-
*/
|
69
|
-
.dataTables_filter {
|
70
|
-
float: right;
|
71
|
-
text-align: right;
|
72
|
-
}
|
73
|
-
|
74
|
-
|
75
|
-
/*
|
76
|
-
* Table information
|
77
|
-
*/
|
78
|
-
.dataTables_info {
|
79
|
-
padding-top: 3px;
|
80
|
-
clear: both;
|
81
|
-
float: left;
|
82
|
-
}
|
83
|
-
|
84
|
-
|
85
|
-
/*
|
86
|
-
* Pagination
|
87
|
-
*/
|
88
|
-
.dataTables_paginate {
|
89
|
-
float: right;
|
90
|
-
text-align: right;
|
25
|
+
font-weight: bold;
|
91
26
|
}
|
92
|
-
|
93
|
-
.
|
94
|
-
|
27
|
+
table.dataTable thead th:active,
|
28
|
+
table.dataTable thead td:active {
|
29
|
+
outline: none;
|
95
30
|
}
|
96
|
-
|
97
|
-
.
|
98
|
-
|
99
|
-
|
100
|
-
|
31
|
+
table.dataTable thead .sorting_asc,
|
32
|
+
table.dataTable thead .sorting_desc,
|
33
|
+
table.dataTable thead .sorting {
|
34
|
+
cursor: pointer;
|
35
|
+
*cursor: hand;
|
101
36
|
}
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
margin: 0;
|
106
|
-
cursor: pointer;
|
107
|
-
* cursor: hand;
|
108
|
-
color: #333 !important;
|
109
|
-
}
|
110
|
-
|
111
|
-
/* Two button pagination - previous / next */
|
112
|
-
.paginate_disabled_previous,
|
113
|
-
.paginate_enabled_previous,
|
114
|
-
.paginate_disabled_next,
|
115
|
-
.paginate_enabled_next {
|
116
|
-
height: 19px;
|
117
|
-
float: left;
|
118
|
-
cursor: pointer;
|
119
|
-
*cursor: hand;
|
120
|
-
color: #111 !important;
|
121
|
-
}
|
122
|
-
.paginate_disabled_previous:hover,
|
123
|
-
.paginate_enabled_previous:hover,
|
124
|
-
.paginate_disabled_next:hover,
|
125
|
-
.paginate_enabled_next:hover {
|
126
|
-
text-decoration: none !important;
|
127
|
-
}
|
128
|
-
.paginate_disabled_previous:active,
|
129
|
-
.paginate_enabled_previous:active,
|
130
|
-
.paginate_disabled_next:active,
|
131
|
-
.paginate_enabled_next:active {
|
132
|
-
outline: none;
|
133
|
-
}
|
134
|
-
|
135
|
-
.paginate_disabled_previous,
|
136
|
-
.paginate_disabled_next {
|
137
|
-
color: #666 !important;
|
37
|
+
table.dataTable thead th div.DataTables_sort_wrapper {
|
38
|
+
position: relative;
|
39
|
+
padding-right: 10px;
|
138
40
|
}
|
139
|
-
.
|
140
|
-
|
141
|
-
|
41
|
+
table.dataTable thead th div.DataTables_sort_wrapper span {
|
42
|
+
position: absolute;
|
43
|
+
top: 50%;
|
44
|
+
margin-top: -8px;
|
45
|
+
right: -5px;
|
142
46
|
}
|
143
|
-
.
|
144
|
-
|
145
|
-
padding-right: 23px;
|
146
|
-
margin-left: 10px;
|
47
|
+
table.dataTable thead th.ui-state-default {
|
48
|
+
border-right-width: 0;
|
147
49
|
}
|
148
|
-
|
149
|
-
|
150
|
-
.paginate_enabled_previous:hover { background: url('/assets/dataTables/back_enabled_hover.png') no-repeat top left; }
|
151
|
-
.paginate_disabled_previous { background: url('/assets/dataTables/back_disabled.png') no-repeat top left; }
|
152
|
-
|
153
|
-
.paginate_enabled_next { background: url('/assets/dataTables/forward_enabled.png') no-repeat top right; }
|
154
|
-
.paginate_enabled_next:hover { background: url('/assets/dataTables/forward_enabled_hover.png') no-repeat top right; }
|
155
|
-
.paginate_disabled_next { background: url('/assets/dataTables/forward_disabled.png') no-repeat top right; }
|
156
|
-
|
157
|
-
/* Full number pagination */
|
158
|
-
.paging_full_numbers a:active {
|
159
|
-
outline: none
|
50
|
+
table.dataTable thead th.ui-state-default:last-child {
|
51
|
+
border-right-width: 1px;
|
160
52
|
}
|
161
|
-
.
|
162
|
-
|
53
|
+
table.dataTable tbody tr {
|
54
|
+
background-color: white;
|
163
55
|
}
|
164
|
-
|
165
|
-
|
166
|
-
.paging_full_numbers a.paginate_active {
|
167
|
-
border: 1px solid #aaa;
|
168
|
-
-webkit-border-radius: 5px;
|
169
|
-
-moz-border-radius: 5px;
|
170
|
-
border-radius: 5px;
|
171
|
-
padding: 2px 5px;
|
172
|
-
margin: 0 3px;
|
173
|
-
cursor: pointer;
|
174
|
-
*cursor: hand;
|
175
|
-
color: #333 !important;
|
56
|
+
table.dataTable tbody tr.selected {
|
57
|
+
background-color: #b0bed9;
|
176
58
|
}
|
177
|
-
|
178
|
-
.
|
179
|
-
|
59
|
+
table.dataTable tbody th,
|
60
|
+
table.dataTable tbody td {
|
61
|
+
padding: 8px 10px;
|
180
62
|
}
|
181
|
-
|
182
|
-
.
|
183
|
-
|
184
|
-
|
63
|
+
table.dataTable th.center,
|
64
|
+
table.dataTable td.center,
|
65
|
+
table.dataTable td.dataTables_empty {
|
66
|
+
text-align: center;
|
185
67
|
}
|
186
|
-
|
187
|
-
.
|
188
|
-
|
68
|
+
table.dataTable th.right,
|
69
|
+
table.dataTable td.right {
|
70
|
+
text-align: right;
|
189
71
|
}
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
.
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
72
|
+
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
|
73
|
+
border-top: 1px solid #dddddd;
|
74
|
+
}
|
75
|
+
table.dataTable.row-border tbody tr:first-child th,
|
76
|
+
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
|
77
|
+
table.dataTable.display tbody tr:first-child td {
|
78
|
+
border-top: none;
|
79
|
+
}
|
80
|
+
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
|
81
|
+
border-top: 1px solid #dddddd;
|
82
|
+
border-right: 1px solid #dddddd;
|
83
|
+
}
|
84
|
+
table.dataTable.cell-border tbody tr th:first-child,
|
85
|
+
table.dataTable.cell-border tbody tr td:first-child {
|
86
|
+
border-left: 1px solid #dddddd;
|
87
|
+
}
|
88
|
+
table.dataTable.cell-border tbody tr:first-child th,
|
89
|
+
table.dataTable.cell-border tbody tr:first-child td {
|
90
|
+
border-top: none;
|
91
|
+
}
|
92
|
+
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
|
93
|
+
background-color: #f9f9f9;
|
94
|
+
}
|
95
|
+
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
|
96
|
+
background-color: #abb9d3;
|
97
|
+
}
|
98
|
+
table.dataTable.hover tbody tr:hover,
|
99
|
+
table.dataTable.hover tbody tr.odd:hover,
|
100
|
+
table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover,
|
101
|
+
table.dataTable.display tbody tr.odd:hover,
|
102
|
+
table.dataTable.display tbody tr.even:hover {
|
103
|
+
background-color: whitesmoke;
|
104
|
+
}
|
105
|
+
table.dataTable.hover tbody tr:hover.selected,
|
106
|
+
table.dataTable.hover tbody tr.odd:hover.selected,
|
107
|
+
table.dataTable.hover tbody tr.even:hover.selected, table.dataTable.display tbody tr:hover.selected,
|
108
|
+
table.dataTable.display tbody tr.odd:hover.selected,
|
109
|
+
table.dataTable.display tbody tr.even:hover.selected {
|
110
|
+
background-color: #a9b7d1;
|
111
|
+
}
|
112
|
+
table.dataTable.order-column tbody tr > .sorting_1,
|
113
|
+
table.dataTable.order-column tbody tr > .sorting_2,
|
114
|
+
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
|
115
|
+
table.dataTable.display tbody tr > .sorting_2,
|
116
|
+
table.dataTable.display tbody tr > .sorting_3 {
|
117
|
+
background-color: #f9f9f9;
|
118
|
+
}
|
119
|
+
table.dataTable.order-column tbody tr.selected > .sorting_1,
|
120
|
+
table.dataTable.order-column tbody tr.selected > .sorting_2,
|
121
|
+
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
|
122
|
+
table.dataTable.display tbody tr.selected > .sorting_2,
|
123
|
+
table.dataTable.display tbody tr.selected > .sorting_3 {
|
124
|
+
background-color: #acbad4;
|
125
|
+
}
|
126
|
+
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
|
127
|
+
background-color: #f1f1f1;
|
128
|
+
}
|
129
|
+
table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
|
130
|
+
background-color: #f3f3f3;
|
131
|
+
}
|
132
|
+
table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
|
133
|
+
background-color: whitesmoke;
|
134
|
+
}
|
135
|
+
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
|
136
|
+
background-color: #a6b3cd;
|
137
|
+
}
|
138
|
+
table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
|
139
|
+
background-color: #a7b5ce;
|
140
|
+
}
|
141
|
+
table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
|
142
|
+
background-color: #a9b6d0;
|
143
|
+
}
|
144
|
+
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
|
145
|
+
background-color: #f9f9f9;
|
146
|
+
}
|
147
|
+
table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
|
148
|
+
background-color: #fbfbfb;
|
149
|
+
}
|
150
|
+
table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
|
151
|
+
background-color: #fdfdfd;
|
152
|
+
}
|
153
|
+
table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
|
154
|
+
background-color: #acbad4;
|
155
|
+
}
|
156
|
+
table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
|
157
|
+
background-color: #adbbd6;
|
158
|
+
}
|
159
|
+
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
|
160
|
+
background-color: #afbdd8;
|
161
|
+
}
|
162
|
+
table.dataTable.display tbody tr:hover > .sorting_1,
|
163
|
+
table.dataTable.display tbody tr.odd:hover > .sorting_1,
|
164
|
+
table.dataTable.display tbody tr.even:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
|
165
|
+
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
|
166
|
+
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1 {
|
167
|
+
background-color: #eaeaea;
|
168
|
+
}
|
169
|
+
table.dataTable.display tbody tr:hover > .sorting_2,
|
170
|
+
table.dataTable.display tbody tr.odd:hover > .sorting_2,
|
171
|
+
table.dataTable.display tbody tr.even:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2,
|
172
|
+
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_2,
|
173
|
+
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_2 {
|
174
|
+
background-color: #ebebeb;
|
175
|
+
}
|
176
|
+
table.dataTable.display tbody tr:hover > .sorting_3,
|
177
|
+
table.dataTable.display tbody tr.odd:hover > .sorting_3,
|
178
|
+
table.dataTable.display tbody tr.even:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3,
|
179
|
+
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_3,
|
180
|
+
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_3 {
|
181
|
+
background-color: #eeeeee;
|
182
|
+
}
|
183
|
+
table.dataTable.display tbody tr:hover.selected > .sorting_1,
|
184
|
+
table.dataTable.display tbody tr.odd:hover.selected > .sorting_1,
|
185
|
+
table.dataTable.display tbody tr.even:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1,
|
186
|
+
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_1,
|
187
|
+
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_1 {
|
188
|
+
background-color: #a1aec7;
|
189
|
+
}
|
190
|
+
table.dataTable.display tbody tr:hover.selected > .sorting_2,
|
191
|
+
table.dataTable.display tbody tr.odd:hover.selected > .sorting_2,
|
192
|
+
table.dataTable.display tbody tr.even:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2,
|
193
|
+
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_2,
|
194
|
+
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_2 {
|
195
|
+
background-color: #a2afc8;
|
196
|
+
}
|
197
|
+
table.dataTable.display tbody tr:hover.selected > .sorting_3,
|
198
|
+
table.dataTable.display tbody tr.odd:hover.selected > .sorting_3,
|
199
|
+
table.dataTable.display tbody tr.even:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3,
|
200
|
+
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_3,
|
201
|
+
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_3 {
|
202
|
+
background-color: #a4b2cb;
|
203
|
+
}
|
204
|
+
|
205
|
+
table.dataTable,
|
206
|
+
table.dataTable th,
|
207
|
+
table.dataTable td {
|
208
|
+
-webkit-box-sizing: content-box;
|
209
|
+
-moz-box-sizing: content-box;
|
210
|
+
box-sizing: content-box;
|
209
211
|
}
|
210
212
|
|
211
|
-
|
212
213
|
/*
|
213
|
-
*
|
214
|
+
* Control feature layout
|
214
215
|
*/
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
216
|
+
.dataTables_wrapper {
|
217
|
+
position: relative;
|
218
|
+
clear: both;
|
219
|
+
*zoom: 1;
|
220
|
+
zoom: 1;
|
221
|
+
}
|
222
|
+
.dataTables_wrapper .dataTables_length {
|
223
|
+
float: left;
|
224
|
+
}
|
225
|
+
.dataTables_wrapper .dataTables_filter {
|
226
|
+
float: right;
|
227
|
+
text-align: right;
|
228
|
+
}
|
229
|
+
.dataTables_wrapper .dataTables_filter input {
|
230
|
+
margin-left: 0.5em;
|
231
|
+
}
|
232
|
+
.dataTables_wrapper .dataTables_info {
|
233
|
+
clear: both;
|
234
|
+
float: left;
|
235
|
+
padding-top: 0.55em;
|
236
|
+
}
|
237
|
+
.dataTables_wrapper .dataTables_paginate {
|
238
|
+
float: right;
|
239
|
+
text-align: right;
|
240
|
+
}
|
241
|
+
.dataTables_wrapper .dataTables_paginate .fg-button {
|
242
|
+
box-sizing: border-box;
|
243
|
+
display: inline-block;
|
244
|
+
min-width: 1.5em;
|
245
|
+
padding: 0.5em;
|
246
|
+
margin-left: 2px;
|
247
|
+
text-align: center;
|
248
|
+
text-decoration: none !important;
|
249
|
+
cursor: pointer;
|
250
|
+
*cursor: hand;
|
251
|
+
color: #333333 !important;
|
252
|
+
border: 1px solid transparent;
|
253
|
+
}
|
254
|
+
.dataTables_wrapper .dataTables_paginate .fg-button:active {
|
255
|
+
outline: none;
|
256
|
+
}
|
257
|
+
.dataTables_wrapper .dataTables_paginate .fg-button:first-child {
|
258
|
+
border-top-left-radius: 3px;
|
259
|
+
border-bottom-left-radius: 3px;
|
260
|
+
}
|
261
|
+
.dataTables_wrapper .dataTables_paginate .fg-button:last-child {
|
262
|
+
border-top-right-radius: 3px;
|
263
|
+
border-bottom-right-radius: 3px;
|
264
|
+
}
|
265
|
+
.dataTables_wrapper .dataTables_processing {
|
266
|
+
position: absolute;
|
267
|
+
top: 50%;
|
268
|
+
left: 50%;
|
269
|
+
width: 100%;
|
270
|
+
height: 40px;
|
271
|
+
margin-left: -50%;
|
272
|
+
margin-top: -25px;
|
273
|
+
padding-top: 20px;
|
274
|
+
text-align: center;
|
275
|
+
font-size: 1.2em;
|
276
|
+
background-color: white;
|
277
|
+
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
|
278
|
+
/* Chrome,Safari4+ */
|
279
|
+
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
280
|
+
/* Chrome10+,Safari5.1+ */
|
281
|
+
background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
282
|
+
/* FF3.6+ */
|
283
|
+
background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
284
|
+
/* IE10+ */
|
285
|
+
background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
286
|
+
/* Opera 11.10+ */
|
287
|
+
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
288
|
+
/* W3C */
|
289
|
+
}
|
290
|
+
.dataTables_wrapper .dataTables_length,
|
291
|
+
.dataTables_wrapper .dataTables_filter,
|
292
|
+
.dataTables_wrapper .dataTables_info,
|
293
|
+
.dataTables_wrapper .dataTables_processing,
|
294
|
+
.dataTables_wrapper .dataTables_paginate {
|
295
|
+
color: #333333;
|
296
|
+
}
|
297
|
+
.dataTables_wrapper .dataTables_scroll {
|
298
|
+
clear: both;
|
299
|
+
}
|
300
|
+
.dataTables_wrapper .dataTables_scrollBody {
|
301
|
+
*margin-top: -1px;
|
302
|
+
-webkit-overflow-scrolling: touch;
|
230
303
|
}
|
231
|
-
|
232
|
-
|
233
|
-
/*
|
234
|
-
* Scrolling
|
235
|
-
*/
|
236
|
-
.dataTables_scroll {
|
237
|
-
clear: both;
|
304
|
+
.dataTables_wrapper .ui-widget-header {
|
305
|
+
font-weight: normal;
|
238
306
|
}
|
239
|
-
|
240
|
-
|
241
|
-
|
307
|
+
.dataTables_wrapper .ui-toolbar {
|
308
|
+
padding: 8px;
|
309
|
+
}
|
310
|
+
.dataTables_wrapper:after {
|
311
|
+
visibility: hidden;
|
312
|
+
display: block;
|
313
|
+
content: "";
|
314
|
+
clear: both;
|
315
|
+
height: 0;
|
316
|
+
}
|
317
|
+
|
318
|
+
@media screen and (max-width: 767px) {
|
319
|
+
.dataTables_wrapper .dataTables_length,
|
320
|
+
.dataTables_wrapper .dataTables_filter,
|
321
|
+
.dataTables_wrapper .dataTables_info,
|
322
|
+
.dataTables_wrapper .dataTables_paginate {
|
323
|
+
float: none;
|
324
|
+
text-align: center;
|
325
|
+
}
|
326
|
+
.dataTables_wrapper .dataTables_filter,
|
327
|
+
.dataTables_wrapper .dataTables_paginate {
|
328
|
+
margin-top: 0.5em;
|
329
|
+
}
|
242
330
|
}
|
243
|
-
|