c2505151 by Jeff Balicki

mobile fixes

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 4ef69f92
Showing 887 changed files with 0 additions and 2811 deletions
1 This theme or plugin is comprised of two parts.
2
3 (1) the PHP code and integrated HTML are licensed under the General Public
4 License (GPL). You will find a copy of the GPL in the same directory as this
5 text file.
6
7 (2) All other parts, but not limited to the CSS code, images, and design are
8 licensed according to the terms of your purchased license.
9
10 Read more about licensing here: http://themeforest.net/licenses
1 /*
2 * File: TableTools.css
3 * Description: Styles for TableTools 2
4 * Author: Allan Jardine (www.sprymedia.co.uk)
5 * Language: Javascript
6 * License: GPL v2 / 3 point BSD
7 * Project: DataTables
8 *
9 * Copyright 2009-2012 Allan Jardine, all rights reserved.
10 *
11 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
12 *
13 * CSS name space:
14 * DTTT DataTables TableTools
15 *
16 * Style sheet provides:
17 * CONTAINER TableTools container element and styles applying to all components
18 * BUTTON_STYLES Action specific button styles
19 * SELECTING Row selection styles
20 * COLLECTIONS Drop down list (collection) styles
21 * PRINTING Print display styles
22 */
23
24
25 /*
26 * CONTAINER
27 * TableTools container element and styles applying to all components
28 */
29 div.DTTT_container {
30 position: relative;
31 float: right;
32 margin-bottom: 1em;
33 }
34
35 button.DTTT_button,
36 div.DTTT_button,
37 a.DTTT_button {
38 position: relative;
39 float: left;
40 margin-right: 3px;
41 padding: 5px 8px;
42 border: 1px solid #999;
43 cursor: pointer;
44 *cursor: hand;
45 font-size: 0.88em;
46 color: black !important;
47
48 -webkit-border-radius: 2px;
49 -moz-border-radius: 2px;
50 -ms-border-radius: 2px;
51 -o-border-radius: 2px;
52 border-radius: 2px;
53
54 -webkit-box-shadow: 1px 1px 3px #ccc;
55 -moz-box-shadow: 1px 1px 3px #ccc;
56 -ms-box-shadow: 1px 1px 3px #ccc;
57 -o-box-shadow: 1px 1px 3px #ccc;
58 box-shadow: 1px 1px 3px #ccc;
59
60 /* Generated by http://www.colorzilla.com/gradient-editor/ */
61 background: #ffffff; /* Old browsers */
62 background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
63 background: -moz-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* FF3.6+ */
64 background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* IE10+ */
65 background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
66 background: linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
67 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
68 }
69
70
71 /* Buttons are cunning border-box sizing - we can't just use that for A and DIV due to IE6/7 */
72 button.DTTT_button {
73 height: 30px;
74 padding: 3px 8px;
75 }
76
77 .DTTT_button embed {
78 outline: none;
79 }
80
81 button.DTTT_button:hover,
82 div.DTTT_button:hover,
83 a.DTTT_button:hover {
84 border: 1px solid #666;
85 text-decoration: none !important;
86
87 -webkit-box-shadow: 1px 1px 3px #999;
88 -moz-box-shadow: 1px 1px 3px #999;
89 -ms-box-shadow: 1px 1px 3px #999;
90 -o-box-shadow: 1px 1px 3px #999;
91 box-shadow: 1px 1px 3px #999;
92
93 background: #f3f3f3; /* Old browsers */
94 background: -webkit-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* Chrome10+,Safari5.1+ */
95 background: -moz-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* FF3.6+ */
96 background: -ms-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* IE10+ */
97 background: -o-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* Opera 11.10+ */
98 background: linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* W3C */
99 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#f4f4f4',GradientType=0 ); /* IE6-9 */
100 }
101
102 button.DTTT_disabled,
103 div.DTTT_disabled,
104 a.DTTT_disabled {
105 color: #999;
106 border: 1px solid #d0d0d0;
107
108 background: #ffffff; /* Old browsers */
109 background: -webkit-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* Chrome10+,Safari5.1+ */
110 background: -moz-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* FF3.6+ */
111 background: -ms-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* IE10+ */
112 background: -o-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* Opera 11.10+ */
113 background: linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* W3C */
114 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fafafa',GradientType=0 ); /* IE6-9 */
115 }
116
117
118
119 /*
120 * BUTTON_STYLES
121 * Action specific button styles
122 * If you want images - comment this back in
123
124 button.DTTT_button_csv,
125 button.DTTT_button_xls,
126 button.DTTT_button_copy,
127 button.DTTT_button_pdf,
128 button.DTTT_button_print {
129 padding-right: 0px;
130 }
131
132 button.DTTT_button_csv span,
133 button.DTTT_button_xls span,
134 button.DTTT_button_copy span,
135 button.DTTT_button_pdf span,
136 button.DTTT_button_print span {
137 display: inline-block;
138 height: 24px;
139 line-height: 24px;
140 padding-right: 30px;
141 }
142
143
144 button.DTTT_button_csv span { background: url(../images/csv.png) no-repeat bottom right; }
145 button.DTTT_button_csv:hover span { background: url(../images/csv_hover.png) no-repeat center right; }
146
147 button.DTTT_button_xls span { background: url(../images/xls.png) no-repeat center right; }
148 button.DTTT_button_xls:hover span { background: #f0f0f0 url(../images/xls_hover.png) no-repeat center right; }
149
150 button.DTTT_button_copy span { background: url(../images/copy.png) no-repeat center right; }
151 button.DTTT_button_copy:hover span { background: #f0f0f0 url(../images/copy_hover.png) no-repeat center right; }
152
153 button.DTTT_button_pdf span { background: url(../images/pdf.png) no-repeat center right; }
154 button.DTTT_button_pdf:hover span { background: #f0f0f0 url(../images/pdf_hover.png) no-repeat center right; }
155
156 button.DTTT_button_print span { background: url(../images/print.png) no-repeat center right; }
157 button.DTTT_button_print:hover span { background: #f0f0f0 url(../images/print_hover.png) no-repeat center right; }
158
159 */
160
161 button.DTTT_button_collection span {
162 padding-right: 17px;
163 }
164
165 button.DTTT_button_collection:hover span {
166 padding-right: 17px;
167 }
168
169
170 /*
171 * SELECTING
172 * Row selection styles
173 */
174 table.DTTT_selectable tbody tr {
175 cursor: pointer;
176 *cursor: hand;
177 }
178
179 table.dataTable tr.DTTT_selected.odd {
180 background-color: #9FAFD1;
181 }
182
183 table.dataTable tr.DTTT_selected.odd td.sorting_1 {
184 background-color: #9FAFD1;
185 }
186
187 table.dataTable tr.DTTT_selected.odd td.sorting_2 {
188 background-color: #9FAFD1;
189 }
190
191 table.dataTable tr.DTTT_selected.odd td.sorting_3 {
192 background-color: #9FAFD1;
193 }
194
195
196 table.dataTable tr.DTTT_selected.even {
197 background-color: #B0BED9;
198 }
199
200 table.dataTable tr.DTTT_selected.even td.sorting_1 {
201 background-color: #B0BED9;
202 }
203
204 table.dataTable tr.DTTT_selected.even td.sorting_2 {
205 background-color: #B0BED9;
206 }
207
208 table.dataTable tr.DTTT_selected.even td.sorting_3 {
209 background-color: #B0BED9;
210 }
211
212
213 /*
214 * COLLECTIONS
215 * Drop down list (collection) styles
216 */
217
218 div.DTTT_collection {
219 width: 150px;
220 padding: 8px 8px 4px 8px;
221 border: 1px solid #ccc;
222 border: 1px solid rgba( 0, 0, 0, 0.4 );
223 background-color: #f3f3f3;
224 background-color: rgba( 255, 255, 255, 0.3 );
225 overflow: hidden;
226 z-index: 2002;
227
228 -webkit-border-radius: 5px;
229 -moz-border-radius: 5px;
230 -ms-border-radius: 5px;
231 -o-border-radius: 5px;
232 border-radius: 5px;
233
234 -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
235 -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
236 -ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
237 -o-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
238 box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
239 }
240
241 div.DTTT_collection_background {
242 z-index: 2001;
243 }
244
245 div.DTTT_collection button.DTTT_button,
246 div.DTTT_collection div.DTTT_button,
247 div.DTTT_collection a.DTTT_button {
248 position: relative;
249 left: 0;
250 right: 0;
251
252 display: block;
253 float: none;
254 margin-bottom: 4px;
255
256 -webkit-box-shadow: 1px 1px 3px #999;
257 -moz-box-shadow: 1px 1px 3px #999;
258 -ms-box-shadow: 1px 1px 3px #999;
259 -o-box-shadow: 1px 1px 3px #999;
260 box-shadow: 1px 1px 3px #999;
261 }
262
263
264 /*
265 * PRINTING
266 * Print display styles
267 */
268
269 .DTTT_print_info {
270 position: fixed;
271 top: 50%;
272 left: 50%;
273 width: 400px;
274 height: 150px;
275 margin-left: -200px;
276 margin-top: -75px;
277 text-align: center;
278 color: #333;
279 padding: 10px 30px;
280
281 background: #ffffff; /* Old browsers */
282 background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
283 background: -moz-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* FF3.6+ */
284 background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* IE10+ */
285 background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
286 background: linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
287 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
288
289 opacity: 0.95;
290
291 border: 1px solid black;
292 border: 1px solid rgba(0, 0, 0, 0.5);
293
294 -webkit-border-radius: 6px;
295 -moz-border-radius: 6px;
296 -ms-border-radius: 6px;
297 -o-border-radius: 6px;
298 border-radius: 6px;
299
300 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
301 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
302 -ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
303 -o-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
304 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
305 }
306
307 .DTTT_print_info h6 {
308 font-weight: normal;
309 font-size: 28px;
310 line-height: 28px;
311 margin: 1em;
312 }
313
314 .DTTT_print_info p {
315 font-size: 14px;
316 line-height: 20px;
317 }
318
1 .wdt-datatables-admin-wrap .card.wdt-addons {
2 max-width: 100%;
3 padding: 0;
4 margin-top: 0;
5 }
6
7 .wdt-addons .row {
8 display: flex;
9 }
10
11 .wdt-addons .row .thumbnail {
12 height: 100%;
13 }
14
15 .wdt-addons-find-out-more {
16 padding: 10px 15px;
17 position: absolute;
18 bottom: 0;
19 }
...\ No newline at end of file ...\ No newline at end of file
1 @font-face {
2 font-weight: 400;
3 font-style: normal;
4 font-family: WPDataTablesIcons;
5 src: url(../../fonts/wpdatatablesicons-base.eot);
6 src: url(../../fonts/wpdatatablesicons-base.eot?#iefix) format('embedded-opentype'), url(../../fonts/wpdatatablesicons-base.woff) format('woff'), url(../../fonts/wpdatatablesicons-base.ttf) format('truetype'), url(../../fonts/wpdatatablesicons-base.svg#wpdatatablesicons-base) format('svg');
7 }
8
9 /* Icons */
10 #toplevel_page_wpdatatables-administration div.wp-menu-image:before,
11 .toplevel_page_wpdatatables-administration .ui-dialog-titlebar-close:before {
12 display: inline-block;
13 font-family: 'WPDataTablesIcons' !important;
14 font-style: normal;
15 font-weight: normal;
16 text-align: center;
17 text-decoration: none;
18 vertical-align: middle;
19 -webkit-font-smoothing: antialiased;
20 }
21
22 #toplevel_page_wpdatatables-administration div.wp-menu-image:before {
23 content: "\e016";
24 }
25
26 .wpdt-c #pick-range-table-container { width: 100%; max-height: 400px; overflow: auto; }
27
28 .wpdt-c #range_picked_info { padding: 3px; font-size: 10px; }
29
30 .wpdt-c div.columns-block-selecter-buttons { margin: 5px }
31
32 .wpdt-c div.wpDataTables div.strings-error,
33 .wpdt-c div.wpDataTables div.min-columns-error,
34 .wpdt-c div.wpDataTables div.max-columns-error {
35 font-weight: bold;
36 color: red;
37 margin: 5px;
38 padding: 3px;
39 border: 1px solid red;
40 border-radius: 3px;
41 background-color: #fdd;
42 }
43
44 div.mce-widget button i.mce-i-wpdatatable:before{
45 content: "\e016";
46 font-family: 'WPDataTablesIcons' !important;
47 }
48
49 div.mce-widget button i.mce-i-wpdatachart:before{
50 content: "\f185";
51 font: 400 20px/1 dashicons;
52 }
53
54 .wpdt-c #formattingRules { padding: 10px }
55
56 .wpdt-c #wpDataTablesSettings td.columnsBlock input.possibleValues {
57 display: none !important;
58 }
59
60 .wpdt-c #wpDataTablesSettings td.columnsBlock button.generatePossibleValues {
61 height: auto;
62 white-space: normal;
63 line-height: 20px;
64 }
65
66 .wpdt-c #wdtConfigureTableToolsBlock {
67 margin: 5px;
68 padding-top: 10px;
69 display: none;
70 }
71
72 .wpdt-c #wdtConfigureTableToolsBlock label {
73 display: block;
74 margin: 3px;
75 }
76
77 .wpdt-c #wdtSaveConfirmationPopover {
78 position: absolute;
79 background-color: rgba(78, 125, 1,0.7);
80 padding: 8px;
81 border-radius: 4px;
82 color: #fff;
83 top: -40px;
84 display: none;
85 }
86
87 .wpdt-c div.addons_container {
88 position: relative;
89 background: #fff;
90 border: 1px solid #ccc;
91 padding: 10px;
92 overflow: hidden;
93 }
94
95 .wpdt-c div.wdt_addon_thumb {
96 width: 250px;
97 height: 180px;
98 background-color: #ddd;
99 position: relative;
100 opacity: 0.75;
101 transition: opacity 0.2s ease;
102 }
103
104 .wpdt-c div.wdt_addon_thumb:hover {
105 opacity: 1;
106 }
107
108 .wpdt-c div.wdt_addon {
109 float: left;
110 width: 250px;
111 height: 315px;
112 margin: 10px;
113 padding: 10px;
114 border: 1px solid #eaeaea;
115 background-color: #f7f7f7;
116 }
117
118 .wpdt-c div.wdt_addon_title {
119 position: absolute;
120 bottom: 0;
121 background: rgba(0,0,0,0.5);
122 width: 100%;
123 height: 40px;
124 padding: 0;
125 }
126
127 .wpdt-c div.wdt_addon_title h3 {
128 color: #fff;
129 margin: 0;
130 margin-left: 10px;
131 margin-top: 10px;
132 }
133
134 .wpdt-c div.wdt_addon_title h3 a {
135 color: #fff;
136 text-decoration: none;
137 transition: color 0.2s ease;
138 }
139
140 .wpdt-c div.wdt_addon_title h3 a:hover {
141 color: #ddd;
142 text-decoration: underline;
143 }
144
145 .wpdt-c div.dt-button-info {
146 position: fixed;
147 top: 50%;
148 left: 50%;
149 width: 400px;
150 margin-top: -100px;
151 margin-left: -200px;
152 background-color: white;
153 border: 2px solid #111;
154 box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
155 border-radius: 3px;
156 text-align: center;
157 z-index: 21;
158 }
159 .wpdt-c div.dt-button-info h2 {
160 padding: 0.5em;
161 margin: 0;
162 font-weight: normal;
163 border-bottom: 1px solid #ddd;
164 background-color: #f3f3f3;
165 }
166 .wpdt-c div.dt-button-info > div {
167 padding: 1em;
168 }
169
170 .wpdt-c div.wdtDuplicateTableName {
171 margin: 30px 0;
172 }
173 .wpdt-c div.manual_duplicate {
174 margin: 20px 0;
175 }
176 .wpdt-c .manual_duplicate>.dashicons-info {
177 cursor: pointer;
178 }
179
180 .wpdt-c .duplicate_explain {
181 border: 1px solid #cccccc;
182 border-radius: 3px;
183 padding: 0px 10px;
184 margin-top: 20px;
185 text-align: justify;
186 }
187
188 .wpdt-c #wdt-range-picker checkbox {
189 display: inline-block;
190 }
191
192 .wpdt-c #wdt-range-picker .checkbox {
193 margin-bottom: 25px;
194 }
195
196 .wpdt-c #wdt-range-picker .pick-row .checkbox {
197 margin: 0;
198 }
199
200
201 .wpdt-c div.wpdt-tab {
202 background-color: #fff;
203 }
204
205 .wpdt-c .wdt-datatables-admin-wrap .tab-nav li {
206 margin-bottom: 0;
207 }
208
209 .wpdt-c .wdt-datatables-admin-wrap .card {
210 max-width: 100%;
211 padding: 0;
212 margin-top: 0;
213 border: 1px solid #d7d7d7;
214 }
215
216 .wpdt-c #wpdt-inline-logo {
217 width: 60px;
218 height: 50px;
219 float: left;
220 padding-right: 10px;
221 margin-top: -5px;
222 }
223
224 .wpdt-c .wdt-datatables-admin-wrap .tab-nav li a:active,
225 .wpdt-c .wdt-datatables-admin-wrap .tab-nav li a:focus,
226 .wpdt-c .wdt-datatables-admin-wrap .tab-nav li a:hover {
227 box-shadow: none !important;
228 }
229
230 .wpdt-c .wdt-datatables-admin-wrap .bootstrap-select.btn-group .dropdown-menu li a {
231 box-shadow: none !important;
232 text-transform: none !important;;
233 }
234
235 .wpdt-c .wdt-datatables-admin-wrap .bootstrap-select > .btn-default {
236 text-transform: none;
237 }
238
239 .wpdt-c .wdt-datatables-admin-wrap table th {
240 -o-transition: none !important;
241 -ms-transition: none !important;
242 -moz-transition: none !important;
243 -webkit-transition: none !important;
244 transition: none !important;
245 }
246
247 .wpdt-c .wdt-datatables-admin-wrap .bootstrap-tagsinput {
248 border-left: 0;
249 border-right: 0;
250 border-top: 0;
251 border-bottom: 1px solid #ddd;
252 -webkit-appearance: none;
253 -moz-appearance: none;
254 appearance: none;
255 padding: 0;
256 box-shadow: none;
257 width: 100%;
258 }
259
260 .wpdt-c .wdt-datatables-admin-wrap div.toggle-switch {
261 width: 100%;
262 }
263
264 .wpdt-c .wdt-datatables-admin-wrap div.toggle-switch .ts-helper {
265 float: right;
266 }
267
268 .wpdt-c .wdt-preload-layer {
269 position: absolute;
270 height: 100%;
271 width: 100%;
272 background-color: rgba(255,255,255,0.7);
273 text-align: center;
274 z-index: 100;
275 }
276
277 .wpdt-c .wdt-preload-layer div.preloader {
278 top: 50%;
279 }
280
281 .wpdt-c .wpcolorpicker {
282 width: 100%;
283 }
284
285 .wpdt-c .wpcolorpicker-icon.input-group-addon {
286 position: absolute;
287 right: 10px;
288 top: 0;
289 z-index: 4;
290 height: 25px;
291 width: 25px;
292 padding: 0;
293 }
294
295 .wpdt-c .colorpicker-element .wpcolorpicker-icon.add-on>i,
296 .wpdt-c .colorpicker-element .wpcolorpicker-icon.input-group-addon>i {
297 height: 25px;
298 width: 25px;
299 }
300 .wpdt-c .colorpicker.colorpicker-visible {
301 top: 32px;
302 left: inherit;
303 padding: 4px;
304 min-width: 146px;
305 margin: 7px 0 0 -7px;
306 height: auto;
307 width: auto;
308 background: #fff;
309 overflow: inherit;
310 }
311
312 .wpdt-c span.wpcolorpicker-icon>i {
313 border: 1px solid #ddd;
314 }
315
316 .wpdt-c .btn.btn-default.wdt-documentation,
317 .wpdt-c .btn.btn-default.wdt-documentation:hover,
318 .wpdt-c .btn.btn-default.wdt-documentation:focus {
319 border: 1px solid #d7d7d7;
320 }
321
322 .wpdt-c .wdt-datatables-admin-wrap .card .card-header.wdt-admin-card-header {
323 padding: 25px 20px;
324 }
325
326 .wpdt-c .wdt-datatables-admin-wrap .card .card-header.wdt-admin-card-header .actions {
327 right: 27px;
328 top: 25px;
329 }
330
331 .wpdt-c .wdt-datatables-admin-wrap .btn:disabled {
332 color: #777;
333 background-color: #ededed;
334 }
335
336 .wpdt-c .wdt-datatables-admin-wrap .btn:hover:disabled {
337 color: #777;
338 background-color: #ededed;
339 }
340
341 .wpdt-c .wdt-datatables-admin-wrap .alert .wdt-alert-title:hover,
342 .wpdt-c .wdt-datatables-admin-wrap .alert .wdt-alert-subtitle:hover {
343 cursor: text;
344 }
345
346 .wdt-datatables-admin-wrap .alert .wdt-alert-subtitle {
347 color: #ebebeb;
348 }
349
350 .wpdt-c button.wdt-backend-close {
351 background-color: #d7d7d7 !important;
352 }
353
354 .wpdt-c button.wdt-backend-close:hover {
355 background-color: #F44336 !important;
356 }
357
358 .wpdt-c button.wdt-collapse-table-settings {
359 background-color: #6C7A89 !important;
360 }
361
362 .wpdt-c .wdt-datatables-admin-wrap .card .card-header.wdt-admin-card-header {
363 border-bottom: 1px solid #ebebeb;
364 }
365
366 .wpdt-c h4 i.zmdi-help-outline {
367 margin-left: 3px;
368 cursor: pointer;
369 }
370
371 .wpdt-c #adminmenuback {
372 z-index: 100;
373 }
...\ No newline at end of file ...\ No newline at end of file
1 /* Common elements */
2 .wdt-datatables-admin-wrap .card.wdt-browse-table .btn {
3 box-shadow: none;
4 }
5
6 /* Card header */
7 .wdt-datatables-admin-wrap .card.wdt-browse-table .card-header .actions .wdt-add-new {
8 font-size: 14px;
9 font-weight: 400;
10 padding: 12px 16px;
11 }
12
13 /* Browse table */
14 .wdt-datatables-admin-wrap .card.wdt-browse-table .widefat td, .widefat th {
15 font-size: 14px;
16 font-weight: 400;
17 color: #222;
18 }
19
20 .wdt-datatables-admin-wrap .card.wdt-browse-table table {
21 border: 0;
22 }
23
24 .wdt-datatables-admin-wrap .card.wdt-browse-table table .no-items td {
25 padding: 20px 0 20px 30px;
26 }
27
28 .wdt-datatables-admin-wrap .card.wdt-browse-table table a:focus {
29 box-shadow: none;
30 }
31
32 .wdt-datatables-admin-wrap .card.wdt-browse-table table th {
33 border-right: 0 !important
34 }
35
36 .wdt-datatables-admin-wrap .card.wdt-browse-table table th#id {
37 width: 5%;
38 }
39
40 .wdt-datatables-admin-wrap .card.wdt-browse-table table thead tr th a span {
41 color: #2196f3;
42 }
43
44 .wdt-datatables-admin-wrap .card.wdt-browse-table table thead th,
45 .wdt-datatables-admin-wrap .card.wdt-browse-table table thead td {
46 border-top: 1px solid #ebebeb;
47 border-bottom: 1px solid #ebebeb;
48 }
49
50 .wdt-datatables-admin-wrap .card.wdt-browse-table table tfoot th,
51 .wdt-datatables-admin-wrap .card.wdt-browse-table table tfoot td {
52 border-top: 1px solid #ebebeb;
53 border-bottom: 1px solid #ebebeb;
54 }
55
56 .wdt-datatables-admin-wrap .card.wdt-browse-table table tbody tr {
57 height: 55px;
58 }
59
60 .wdt-datatables-admin-wrap .card.wdt-browse-table table tbody > :nth-child(odd) {
61 background-color: #fafafa;
62 }
63
64 .wdt-datatables-admin-wrap .card.wdt-browse-table table tbody tr.checked-row {
65 background-color: #f1f4f5;
66 }
67
68 .wdt-datatables-admin-wrap .card.wdt-browse-table table td.check-column {
69 width: 55px;
70 }
71
72 .wdt-datatables-admin-wrap .card.wdt-browse-table table .check-column .checkbox {
73 margin: 0 0 0 27px;
74 }
75
76 .wdt-datatables-admin-wrap .card.wdt-browse-table table .check-column .checkbox input[type="checkbox"] {
77 position: relative;
78 }
79
80 .wdt-datatables-admin-wrap .card.wdt-browse-table table td.table_type,
81 .wdt-datatables-admin-wrap .card.wdt-browse-table table td.shortcode,
82 .wdt-datatables-admin-wrap .card.wdt-browse-table table td.engine,
83 .wdt-datatables-admin-wrap .card.wdt-browse-table table td.type {
84 padding: 18px 10px;
85 }
86
87 .wdt-datatables-admin-wrap .card.wdt-browse-table table td.table_type span.wpdt-type-column,
88 .wdt-datatables-admin-wrap .card.wdt-browse-table table td.shortcode span.wdt-shortcode,
89 .wdt-datatables-admin-wrap .card.wdt-browse-table table td.engine span.wdt-render-engine,
90 .wdt-datatables-admin-wrap .card.wdt-browse-table table td.type span.wdt-chart-type {
91 color: #ffffff;
92 padding: 5px 10px;
93 border-radius: 2px;
94 }
95
96 .wdt-datatables-admin-wrap .card.wdt-browse-table table .column-functions .btn {
97 margin: 3px 0 0 0;
98 }
99
100 .wdt-datatables-admin-wrap .card.wdt-browse-table table .column-functions a {
101 line-height: 40px;
102 font-size: 20px;
103 margin-right: 7px;
104 color: #cdcdcd
105 }
106
107 .wdt-datatables-admin-wrap .card.wdt-browse-table table .column-functions a.wdt-duplicate-table:before,
108 .wdt-datatables-admin-wrap .card.wdt-browse-table table .column-functions a.wdt-duplicate-chart:before {
109 font-family: WPDataTablesIcons;
110 content:"\e900";
111 font-size: 16px;
112 vertical-align: top;
113 }
114
115 .wdt-datatables-admin-wrap .card.wdt-browse-table table .column-functions a.wdt-manual-excel-edit:before {
116 font-family: WPDataTablesIcons;
117 content:"\e901";
118 font-size: 16px;
119 }
120
121 .wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a {
122 opacity: 0.7;
123 }
124
125 .wdt-datatables-admin-wrap .card.wdt-browse-table table tr > .column-functions:hover a {
126 opacity: 1;
127 }
128
129 .wdt-datatables-admin-wrap .card.wdt-browse-table table tr > .column-functions a:hover {
130 cursor: pointer;
131 }
132
133 .wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-duplicate-table,
134 .wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-duplicate-chart,
135 .wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-manual-edit,
136 .wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-manual-excel-edit {
137 color: #2196f3;
138 }
139
140 .wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-configure {
141 color: #4CAF50;
142 }
143
144 .wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-submit-delete {
145 color: #F44336;
146 }
147
148 .wdt-datatables-admin-wrap .card.wdt-browse-table table tr .column-functions a i {
149 font-size: 20px;
150 }
151
152 /* Search box and bulk actions list */
153 .wdt-datatables-admin-wrap .card.wdt-browse-table .wpdt-search-box,
154 .wdt-datatables-admin-wrap .card.wdt-browse-table .wpdt-bulk-select {
155 padding-right: 45px;
156 }
157
158 .wdt-datatables-admin-wrap .card.wdt-browse-table .wpdt-search-box input {
159 margin-top: 5px;
160 }
161
162 .wdt-datatables-admin-wrap .card.wdt-browse-table .wpdt-bulk-select span.filter-option {
163 font-size: 14px;
164 }
165
166 .wdt-datatables-admin-wrap .card.wdt-browse-table .search-box-container .btn-icon,
167 .wdt-datatables-admin-wrap .card.wdt-browse-table .bulk-action-container .btn-icon {
168 position: absolute;
169 top: 5px;
170 right: 0;
171 }
172
173
174 .wdt-datatables-admin-wrap .card.wdt-browse-table .bulk-action-button {
175 position: absolute;
176 top: 13px;
177 right: -4px;
178 color: #cdcdcd;
179 border: 0;
180 background-color: inherit;
181 }
182
183 .wdt-datatables-admin-wrap .card.wdt-browse-table .bulk-action-button:hover,
184 .wdt-datatables-admin-wrap .card.wdt-browse-table .bulk-action-button:active {
185 color: #2196f3;
186 }
187
188 .wdt-datatables-admin-wrap .card.wdt-browse-table #search-submit {
189 position: absolute;
190 top: 9px;
191 right: 25px;
192 border: 0;
193 background-color: inherit;
194 }
195
196 .wdt-datatables-admin-wrap .card.wdt-browse-table #search-submit i {
197 font-size: 25px;
198 color: #cdcdcd;
199 }
200
201 .wdt-datatables-admin-wrap .card.wdt-browse-table #search-submit:hover i,
202 .wdt-datatables-admin-wrap .card.wdt-browse-table #search-submit:active i {
203 color: #2196f3 !important;
204 }
205
206 /* Duplicate table dialog */
207 #wdt-duplicate-table-modal .duplicate-explain-trigger {
208 cursor: pointer;
209 font-size: 17px;
210 vertical-align: middle;
211 }
212
213 #wdt-duplicate-table-modal .duplicate-table-label {
214 line-height: 40px;
215 margin: 0;
216 }
217
218 /* Browse page pagination */
219 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination {
220 margin: 0;
221 display: inline-flex;
222 }
223
224 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li {
225 margin: 0;
226 }
227
228 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.disabled {
229 opacity: 1;
230 }
231
232 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li > a {
233 background-color: #ffffff;
234 border-radius: 0;
235 border: 1px solid #ebebeb;
236 color: #2196f3;
237 height: 30px;
238 line-height: 30px;
239 width: 30px;
240 }
241
242 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.active > a {
243 background-color: #ededed;
244 color: #777777;
245 }
246
247 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.disabled > a {
248 color: #c7c7c7;
249 }
250
251 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li > a:focus {
252 box-shadow: none;
253 }
254
255 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li:first-child > a {
256 border-top-left-radius: 4px;
257 border-bottom-left-radius: 4px;
258 }
259
260 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li:last-child > a {
261 border-top-right-radius: 4px;
262 border-bottom-right-radius: 4px;
263 }
264
265 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li > a > .zmdi,
266 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.ellipses-dots {
267 font-size: 17px;
268 width: 30px;
269 line-height: 30px;
270 height: 30px;
271 text-align: center;
272 }
273
274 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.ellipses-dots {
275 color: #777777;
276 }
277
278 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li a:before {
279 font-size: 10px;
280 }
281
282 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.previous.first a:before {
283 font-family: WPDataTablesIcons;
284 content:"\e004";
285 }
286
287 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.previous a:before {
288 font-family: WPDataTablesIcons;
289 content:"\e002";
290 }
291
292 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.next.last a:before {
293 font-family: WPDataTablesIcons;
294 content:"\e003";
295 }
296
297 .wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.next a:before {
298 font-family: WPDataTablesIcons;
299 content:"\e001";
300 }
1 .wpdt-c .wdt-chart-wizard .wdt-chart-column-picker-container .existing-columns,
2 .wpdt-c .wdt-chart-wizard .wdt-chart-column-picker-container .chosen_columns {
3 border-radius: 4px;
4 height: 308px;
5 }
6
7 .wpdt-c .wdt-chart-wizard .wdt-chart-column-picker-container .existing-columns .card-header,
8 .wpdt-c .wdt-chart-wizard .wdt-chart-column-picker-container .chosen_columns .card-header {
9 border-radius: 4px;
10 }
11
12 .wpdt-c div.chosen_columns .alert {
13 margin: 3px;
14 }
15
16 .wpdt-c .wdt-chart-wizard .deselect-all-columns,
17 .wpdt-c .wdt-chart-wizard .select-all-columns {
18 position: absolute;
19 right: 30px;
20 top: 28px;
21 width: 100px;
22 }
23
24 .wpdt-c .steps .chart-wizard-step.step4{
25 min-width: 1030px;
26 }
27
28 .wpdt-c .steps .chart-wizard-step.step4 fieldset{
29 width: 50%;
30 }
31
32 .wpdt-c .steps .chart-wizard-step.step5 label{
33 display: block;
34 text-align: center;
35 }
36
37 .wpdt-c .chart-wizard-breadcrumb {
38 margin: 0;
39 padding-bottom: 0;
40 }
41
42 .wpdt-c .chart-wizard-breadcrumb li {
43 font-weight: 300;
44 color: #999;
45 }
46
47 .wpdt-c .chart-wizard-breadcrumb > .active {
48 font-weight: 500;
49 }
50
51 .wpdt-c div.wdt-chart-column-picker-container div.picker_column {
52 padding-top: 90px;
53 }
54
55 .wpdt-c div.wdt-chart-column-picker-container div.picker_column button {
56 width: 30px;
57 }
58
59 .wpdt-c div.wdt-chart-column-picker-container div.picker_column button {
60 display: block;
61 margin: 0 auto 5px auto;
62 }
63
64 .wpdt-c div.wdt-chart-column-picker-container div.chart-column-block {
65 border: 1px solid #d7d7d7;
66 border-radius: 4px;
67 background-color: #fbfbfb;
68 text-transform: inherit;
69 }
70
71 .wpdt-c div.wdt-chart-column-picker-container div.chart-column-block:hover {
72 border: 1px solid #2196f3;
73 transition: .5s ease;
74 cursor: pointer;
75 background-color: rgba(33, 150, 243, 0.3);
76 }
77
78 .wpdt-c div.wdt-chart-column-picker-container div.chart-column-block.selected {
79 border: 1px solid #2196f3;
80 border-radius: 4px;
81 transition: .5s ease;
82 color: #fff;
83 background-color: #2196f3;
84 }
85
86 .wpdt-c div.wdt-chart-column-picker-container div.wdt-chart-wizart-existing-columns-container,
87 .wpdt-c div.wdt-chart-column-picker-container div.wdt-chart-wizard-chosen-columns-container {
88 height: 220px;
89 overflow-y: auto;
90 }
91
92 .wpdt-c .wpDataTables #series-settings-container div.chart-series-block {
93 margin: 3px;
94 position: relative;
95 overflow: hidden;
96 }
97
98 .wpdt-c .wpDataTables #series-settings-container div.chart-series-block .chart-series-label {
99 margin: 3px;
100 float: left;
101 }
102
103 .wpdt-c .wpDataTables #series-settings-container div.chart-series-block .chart-series-color {
104 margin: 3px;
105 float: left;
106 }
107
108 .wpdt-c #wdt-chart-shortcode-container {
109 display: block;
110 margin: 0 auto;
111 }
112
113 .wpdt-c #wdt-chart-wizard-previous-step:before {
114 font-family: WPDataTablesIcons;
115 content: "\e002";
116 font-size: 10px;
117 }
118
119 .wpdt-c #wdt-chart-wizard-next-step:after {
120 font-family: WPDataTablesIcons;
121 content: "\e001";
122 font-size: 10px;
123 }
124
125 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card {
126 display: inline-block;
127 min-width: inherit;
128 width: 100%;
129 box-shadow: none;
130 border: none;
131 }
132
133 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card:hover {
134 cursor: pointer;
135 }
136
137 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card:hover .card-header {
138 border-color: #2196f3;
139 transition: .5s ease;
140 }
141
142 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card-header {
143 margin: 0 auto;
144 border: 1px solid #d7d7d7;
145 border-radius: 4px;
146 background-color: #fbfbfb;
147 }
148
149 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card-header img {
150 margin: 0 auto;
151 }
152
153 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card-body span {
154 color: #777;
155 }
156
157 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card-body h4 {
158 text-align: center;
159 }
160
161 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .wdt-chart-wizard-overlay {
162 border-radius: 4px;
163 transition: .5s ease;
164 width: 101%;
165 height: 101%;
166 opacity: 0;
167 position: absolute;
168 top: 50%;
169 left: 50%;
170 transform: translate(-50%, -50%);
171 -ms-transform: translate(-50%, -50%);
172 background-color: #2196f3;
173 }
174
175 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card:hover .wdt-chart-wizard-overlay {
176 opacity: 0.2;
177 }
178
179 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card.selected .card-header {
180 border-color: #2196f3;
181 }
182
183 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card.selected .card-header .wdt-chart-wizard-overlay {
184 opacity: 0.7;
185 }
186
187 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card.not-selected .card-header {
188 opacity: 0.6;
189 }
190
191 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card.not-selected:hover .card-header {
192 opacity: 1;
193 }
194
195 .wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card.selected .card-header:after {
196 content: "\f26b";
197 color: #ffffff;
198 position: absolute;
199 top: 50%;
200 text-align: center;
201 right: 0;
202 width: 100%;
203 font-size: 80px;
204 font-family: 'Material-Design-Iconic-Font';
205 }
206
207 .wpdt-c .wdt-chart-wizard .charts-type.google-charts-type,
208 .wpdt-c .wdt-chart-wizard .charts-type.highcharts-charts-type,
209 .wpdt-c .wdt-chart-wizard .charts-type.chartjs-charts-type {
210 display: none;
211 }
212
213 .wpdt-c .wdt-chart-wizard #wdt-add-all-chart-columns:after {
214 font-family: WPDataTablesIcons;
215 content:"\e003";
216 font-size: 11px;
217 }
218
219 .wpdt-c .wdt-chart-wizard #wdt-add-chart-columns:after {
220 font-family: WPDataTablesIcons;
221 content:"\e001";
222 font-size: 11px;
223 }
224
225 .wpdt-c .wdt-chart-wizard #wdt-remove-chart-columns:after {
226 font-family: WPDataTablesIcons;
227 content:"\e002";
228 font-size: 11px;
229 }
230
231 .wpdt-c .wdt-chart-wizard #wdt-remove-all-chart-columns:after {
232 font-family: WPDataTablesIcons;
233 content:"\e004";
234 font-size: 11px;
235 }
236
237 .wpdt-c .wdt-chart-wizard #chart-container-tabs ul li a:after {
238 display: none;
239 }
240
241 .wpdt-c .range-picker-table tbody td.selected {
242 background-color: #F4F4F4;
243 }
244
245 .wpdt-c .wdt-chart-wizard #chart-container-tabs ul li.chart-container {
246 border-right: 2px solid #E5E5E5;
247 }
248
249 .wpdt-c .wdt-chart-wizard #chart-container-tabs ul li.chart-container.active {
250 border-right: 2px solid #2196F3;
251 transition: all;
252 transition-duration: 1000ms;
253 }
254
255 .gu-mirror.chart-column-block {
256 border: 1px solid #d7d7d7;
257 border-radius: 4px;
258 background-color: #fbfbfb;
259 text-transform: inherit;
260 height: 32px;
261 display: block;
262 font-weight: bold;
263 text-align: center;
264 padding: 6px 12px;
265 font-size: 13px;
266 }
...\ No newline at end of file ...\ No newline at end of file
1 .wpdt-c .wdt-datatables-admin-wrap .card.wdt-table-settings,
2 .wpdt-c .wdt-datatables-admin-wrap .card.column-settings {
3 max-width: 100%;
4 padding: 0;
5 margin-top: 0;
6 }
7
8 .wpdt-c .wdt-datatables-admin-wrap .card.wdt-table-settings .card-body {
9 padding-top: 10px;
10 }
11
12 .wpdt-c .wdt-datatables-admin-wrap .card.wdt-table-settings h2 span.wdt-table-name {
13 padding: 3px;
14 }
15
16 .wpdt-c .wdt-admin-card-header button#wdt-table-id {
17 margin-left: 30px;
18 }
19
20 .wpdt-c .wdt-datatables-admin-wrap .card.wdt-table-settings h2 span.wdt-table-name:hover {
21 border: 1px solid #ccc;
22 padding: 2px;
23 cursor: pointer;
24 }
25
26 .wpdt-c .wdt-datatables-admin-wrap div.wpDataTableContainer {
27 margin: 15px 0 30px 0;
28 }
29
30 .wpdt-c .wdt-datatables-admin-wrap div.wpDataTableContainer .tab-content {
31 padding: 20px 15px;
32 }
33
34 .wpdt-c .wdt-datatables-admin-wrap button.wdt-column-settings,
35 .wpdt-c .wdt-datatables-admin-wrap button.wdt-delete-formula-column {
36 width: 32px;
37 height: 32px;
38 padding: 0;
39 z-index: 8;
40 display: inline-block;
41 margin: 2px;
42 border: 1px solid #e7e7e7;
43 box-shadow: none;
44 -moz-box-shadow: none;
45 -webkit-box-shadow: none;
46 -vendor-animation-duration: 1s;
47 -vendor-animation-delay: 1s;
48 }
49
50 .wpdt-c .wdt-datatables-admin-wrap button.wdt-column-settings:hover,
51 .wpdt-c .wdt-datatables-admin-wrap button.wdt-delete-formula-column:hover {
52 background-color: #ccc !important;
53 }
54
55 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-overlay {
56 display: none;
57 background: rgba(0, 0, 0, 0.4);
58 height: auto;
59 top: 0;
60 right: 0;
61 bottom: 0;
62 left: 0;
63 position: fixed;
64 z-index: 9999;
65 -webkit-transition: opacity 400ms ease-in;
66 -moz-transition: opacity 400ms ease-in;
67 transition: opacity 400ms ease-in;
68 border-left: 1px solid #eee;
69 max-height: 100vh;
70 }
71
72 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel {
73 position: absolute;
74 right: 0;
75 bottom: 0;
76 top: 32px;
77 padding: 0;
78 background: #fff;
79 box-shadow: -3px 0 5px -1px rgba(105, 105, 105, 0.17);
80 width: 60%;
81 max-width: 60%;
82 margin: 0;
83 overflow-y: scroll;
84 overflow-x: hidden;
85 }
86
87 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel div.card-body.card-padding {
88 padding: 5px 10px 5px 10px;
89 }
90
91 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel input[type="text"] {
92 width: 100%;
93 }
94
95 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel div.input-group {
96 width: 100%;
97 }
98
99 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel div.form-group {
100 height: 30px;
101 }
102
103 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel .bootstrap-tagsinput input[type="text"] {
104 width: 70px;
105 }
106
107 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel button.btn-xs {
108 font-size: 10px !important;
109 line-height: 1em !important;
110 margin: 0 !important;
111 height: auto !important;
112 }
113
114 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel button.btn-xs.wdt-copy-shortcode {
115 text-transform: none;
116 }
117
118 .wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block, div.wdt-column-block.gu-mirror {
119 background-color: #f7f7f7;
120 box-shadow: 0 1px 1px rgba(0,0,0,.1);
121 border-radius: 2px;
122 margin-bottom: 5px;
123 padding: 5px;
124 -o-transition: .5s;
125 -ms-transition: .5s;
126 -moz-transition: .5s;
127 -webkit-transition: .5s;
128 transition: .5s;
129 }
130
131 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel .wdt-conditional-formatting-rule .wdt-delete-conditional-formatting-rule {
132 padding: 0px;
133 line-height: inherit;
134 }
135
136 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel .wdt-conditional-formatting-rule .form-group {
137 width: 100%;
138 display: inline-block;
139 }
140
141 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel .colorpicker.colorpicker-visible {
142 top: 25px;
143 right: 18px;
144 }
145
146 .wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel .wdt-conditional-formatting-rule .colorpicker.colorpicker-visible {
147 right: 32px;
148 }
149
150 div.wdt-column-block.gu-mirror {
151 cursor: grabbing;
152 cursor: -moz-grabbing;
153 cursor: -webkit-grabbing;
154 }
155
156 div.wdt-column-block.gu-mirror .fg-line {
157 margin-left: 10px;
158 width: 200px;
159 display: inline-block;
160 }
161
162 div.wdt-column-block.gu-mirror .fg-line input.wdt-column-display-header-edit {
163 padding: 0;
164 height: 20px;
165 font-size: 12px;
166 border-bottom: 1px solid #e0e0e0;
167 border-left: 0;
168 border-right: 0;
169 border-top: 0;
170 background-color: transparent;
171 box-shadow: none;
172 }
173
174 div.wdt-column-block.gu-mirror .fg-line i {
175 position: absolute;
176 left: 178px;
177 top: 3px;
178 font-size: 16px;
179 color: #c7c7c7;
180 }
181
182 div.wdt-column-block.gu-mirror .wdt-column-move-arrows {
183 padding: 5px 6px 6px 2px;
184 margin-top: -4px;
185 border-left: 1px solid #c7c7c7;
186 font-size: 16px;
187 margin-left: 7px;
188 float: right;
189 }
190
191 div.wdt-column-block.gu-mirror span {
192 float: right;
193 margin-left: 10px;
194 }
195
196 .wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block:hover {
197 background-color: #fefefe;
198 cursor: pointer;
199 }
200
201 .wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block i.zmdi-apps {
202 color: #aaa;
203 }
204
205 .wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block i.column-control {
206 color: #444;
207 margin: 3px;
208 }
209
210 .wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block i.column-control.inactive {
211 color: #999;
212 }
213
214 .wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block i.column-control:hover {
215 color: #000;
216 }
217
218 .wpdt-c .wdt-datatables-admin-wrap div.wdt-conditional-formatting-rule .form-group {
219 margin-right: 0;
220 }
221
222 /* Column list modal */
223 .wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block input {
224 height: 20px;
225 padding-right: 25px;
226 }
227
228 /* Formula editor modal */
229 .wpdt-c #wdt-formula-editor-modal .modal-body p {
230 margin-bottom: 10px;
231 }
232
233 .wpdt-c #wdt-formula-editor-modal .wdt-formula-operators .btn {
234 text-transform: none;
235 margin: 3px;
236 }
237
238 .wpdt-c #wdt-formula-editor-modal .wdt-formula-operators {
239 max-height: 200px;
240 }
241
242 .wpdt-c #wdt-formula-editor-modal .formula-columns-container {
243 height: 150px;
244 overflow-x: hidden;
245 }
246
247 .wpdt-c #wdt-formula-editor-modal .formula_col textarea {
248 height: 150px;
249 }
250
251 .wpdt-c #wdt-formula-editor-modal div.wdt-formula-result-preview {
252 margin: 15px 0;
253 }
254
255 .wpdt-c #column-data-settings > div.wdt-possible-values-options-block > div.wdt-manual-list-enter-block > div {
256 height: inherit;
257 max-height: 80px;
258 overflow-y: auto;
259 }
260
261 .wpdt-c .wdt-datatables-admin-wrap .wdt-table-name,
262 .wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block .fg-line,
263 .wdt-column-block.gu-mirror .fg-line {
264 width: inherit;
265 }
266
267 .wpdt-c .wdt-datatables-admin-wrap .wdt-table-name #wdt-table-title-edit {
268 background-color: #f7f7f7;
269 margin-top: -9px;
270 padding-top: 6px;
271 padding-right: 18px;
272 }
273
274 .wpdt-c .wdt-datatables-admin-wrap .wdt-table-name i,
275 .wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block .fg-line i {
276 position: absolute;
277 right: 0;
278 top: 0;
279 font-size: 16px;
280 color: #c7c7c7;
281 }
282
283 .wpdt-c .wdt-datatables-admin-wrap .wdt-admin-card-header h2 #wdt-table-id {
284 text-transform: none;
285 top: 32px;
286 position: absolute;
287 left: 290px;
288 }
289
290 .wpdt-c #wdt-table-title-edit:focus ~ i.zmdi.zmdi-edit,
291 .wpdt-c #wdt-table-title-edit:hover ~ i.zmdi.zmdi-edit,
292 .wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block .wdt-column-display-header-edit:focus ~ i.zmdi.zmdi-edit,
293 .wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block .wdt-column-display-header-edit:hover ~ i.zmdi.zmdi-edit {
294 color: #2196f3;
295 }
296
297 .wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block .wdt-column-move-arrows {
298 padding: 3px 6px 4px 8px;
299 margin-top: -4px;
300 border-left: 1px solid #c7c7c7;
301 font-size: 16px;
302 cursor: grab;
303 cursor: -moz-grab;
304 cursor: -webkit-grab;
305 }
306
307 .wpdt-c .wdt-edit-buttons span {
308 color: #9E9E9E;
309 font-size: 14px;
310 letter-spacing: 0.04em;
311 margin-bottom: 3px;
312 }
313
314 .wpdt-c .wdt-edit-buttons span a {
315 color: #2196f3;
316 text-decoration: underline;
317 }
318
319 .wpdt-c .column-settings .wdt-remove-column:after {
320 font-family: WPDataTablesIcons;
321 content:"\e81D";
322 }
323
324 .wpdt-c .column-settings .wdt-add-column:after {
325 font-family: WPDataTablesIcons;
326 content:"\e81e";
327 }
328
329 .wpdt-c .column-settings .card-header .wdt-table-action-buttons {
330 padding: 0;
331 }
332
333 .wpdt-c .column-settings .card-header button {
334 height: 32px;
335 margin-left: 1px;
336 border-radius: 0;
337 opacity: 0.8;
338 }
339
340 .wpdt-c .column-settings .card-header button:hover {
341 opacity: 1;
342 }
343
344 .wpdt-c .column-settings .card-header button:first-of-type {
345 border-top-right-radius: 2px;
346 border-bottom-right-radius: 2px;
347 }
348
349 .wpdt-c .column-settings .card-header button:last-of-type {
350 border-top-left-radius: 2px;
351 border-bottom-left-radius: 2px;
352 }
353
354 .wpdt-c .column-settings .card-header button.wdt-add-column,
355 .wpdt-c .column-settings .card-header button.wdt-remove-column,
356 .wpdt-c .column-settings .card-header button#wdt-open-columns-list {
357 width: 38px;
358 }
359
360 .wpdt-c .column-settings .card-header button#wdt-open-columns-list i:before {
361 font-size: 20px;
362 }
363
364 .wpdt-c .column-settings .card-header button.wdt-add-column:after,
365 .wpdt-c .column-settings .card-header button.wdt-remove-column:after {
366 font-size: 15px;
367 }
368
369 .wpdt-c .wdt-table-settings .input-path-block .fg-line {
370 width: 75%;
371 }
372
373 .wpdt-c .wdt-table-settings .wdt-pf-cascade-filtering-logic-block .form-group {
374 margin-bottom: 0;
375 }
1 .wpdt-c .wdt-datatables-admin-wrap #color-and-font-settings a {
2 box-shadow: none !important;
3 -webkit-box-shadow: none !important;
4 }
5
6 .wpdt-c .wdt-datatables-admin-wrap tr:first-child > td{
7 border-top: 0px;
8 }
9
10 .wpdt-c .wdt-datatables-admin-wrap .tab-content #info table .zmdi.zmdi-check {
11 font-size: 22px;
12 font-weight: 600;
13 color: #4CAF50;
14 }
15
16 .wpdt-c .wdt-datatables-admin-wrap .tab-content #info table .zmdi.zmdi-close {
17 font-size: 22px;
18 font-weight: 600;
19 color: #F44336;
20 }
21
22 .wpdt-c .wdt-datatables-admin-wrap .tab-content #info table .alert {
23 text-align: center;
24 }
25
26 /* Theme fixes */
27 .wpdt-c .panel-title {
28 float: none;
29 }
...\ No newline at end of file ...\ No newline at end of file
1 /*!
2 * Bootstrap Colorpicker v2.5.1
3 * https://itsjavi.com/bootstrap-colorpicker/
4 *
5 * Originally written by (c) 2012 Stefan Petre
6 * Licensed under the Apache License v2.0
7 * http://www.apache.org/licenses/LICENSE-2.0.txt
8 *
9 */
10 .colorpicker-saturation {
11 width: 100px;
12 height: 100px;
13 background-image: url("../../../img/bootstrap-colorpicker/saturation.png");
14 cursor: crosshair;
15 float: left;
16 }
17 .colorpicker-saturation i {
18 display: block;
19 height: 5px;
20 width: 5px;
21 border: 1px solid #000;
22 -webkit-border-radius: 5px;
23 -moz-border-radius: 5px;
24 border-radius: 5px;
25 position: absolute;
26 top: 0;
27 left: 0;
28 margin: -4px 0 0 -4px;
29 }
30 .colorpicker-saturation i b {
31 display: block;
32 height: 5px;
33 width: 5px;
34 border: 1px solid #fff;
35 -webkit-border-radius: 5px;
36 -moz-border-radius: 5px;
37 border-radius: 5px;
38 }
39 .colorpicker-hue,
40 .colorpicker-alpha {
41 width: 15px;
42 height: 100px;
43 float: left;
44 cursor: row-resize;
45 margin-left: 4px;
46 margin-bottom: 4px;
47 }
48 .colorpicker-hue i,
49 .colorpicker-alpha i {
50 display: block;
51 height: 1px;
52 background: #000;
53 border-top: 1px solid #fff;
54 position: absolute;
55 top: 0;
56 left: 0;
57 width: 100%;
58 margin-top: -1px;
59 }
60 .colorpicker-hue {
61 background-image: url("../../../img/bootstrap-colorpicker/hue.png");
62 }
63 .colorpicker-alpha {
64 background-image: url("../../../img/bootstrap-colorpicker/alpha.png");
65 display: none;
66 }
67 .colorpicker-saturation,
68 .colorpicker-hue,
69 .colorpicker-alpha {
70 background-size: contain;
71 }
72 .colorpicker {
73 padding: 4px;
74 min-width: 130px;
75 margin-top: 1px;
76 -webkit-border-radius: 4px;
77 -moz-border-radius: 4px;
78 border-radius: 4px;
79 z-index: 2500;
80 }
81 .colorpicker:before,
82 .colorpicker:after {
83 display: table;
84 content: "";
85 line-height: 0;
86 }
87 .colorpicker:after {
88 clear: both;
89 }
90 .colorpicker:before {
91 content: '';
92 display: inline-block;
93 border-left: 7px solid transparent;
94 border-right: 7px solid transparent;
95 border-bottom: 7px solid #ccc;
96 border-bottom-color: rgba(0, 0, 0, 0.2);
97 position: absolute;
98 top: -7px;
99 left: 6px;
100 }
101 .colorpicker:after {
102 content: '';
103 display: inline-block;
104 border-left: 6px solid transparent;
105 border-right: 6px solid transparent;
106 border-bottom: 6px solid #ffffff;
107 position: absolute;
108 top: -6px;
109 left: 7px;
110 }
111 .colorpicker div {
112 position: relative;
113 }
114 .colorpicker.colorpicker-with-alpha {
115 min-width: 140px;
116 }
117 .colorpicker.colorpicker-with-alpha .colorpicker-alpha {
118 display: block;
119 }
120 .colorpicker-color {
121 height: 10px;
122 margin-top: 5px;
123 clear: both;
124 background-image: url("../../../img/bootstrap-colorpicker/alpha.png");
125 background-position: 0 100%;
126 }
127 .colorpicker-color div {
128 height: 10px;
129 }
130 .colorpicker-selectors {
131 display: none;
132 height: 10px;
133 margin-top: 5px;
134 clear: both;
135 }
136 .colorpicker-selectors i {
137 cursor: pointer;
138 float: left;
139 height: 10px;
140 width: 10px;
141 }
142 .colorpicker-selectors i + i {
143 margin-left: 3px;
144 }
145 .colorpicker-element .input-group-addon i,
146 .colorpicker-element .add-on i {
147 display: inline-block;
148 cursor: pointer;
149 height: 16px;
150 vertical-align: text-top;
151 width: 16px;
152 }
153 .colorpicker.colorpicker-inline {
154 position: relative;
155 display: inline-block;
156 float: none;
157 z-index: auto;
158 }
159 .colorpicker.colorpicker-horizontal {
160 width: 110px;
161 min-width: 110px;
162 height: auto;
163 }
164 .colorpicker.colorpicker-horizontal .colorpicker-saturation {
165 margin-bottom: 4px;
166 }
167 .colorpicker.colorpicker-horizontal .colorpicker-color {
168 width: 100px;
169 }
170 .colorpicker.colorpicker-horizontal .colorpicker-hue,
171 .colorpicker.colorpicker-horizontal .colorpicker-alpha {
172 width: 100px;
173 height: 15px;
174 float: left;
175 cursor: col-resize;
176 margin-left: 0px;
177 margin-bottom: 4px;
178 }
179 .colorpicker.colorpicker-horizontal .colorpicker-hue i,
180 .colorpicker.colorpicker-horizontal .colorpicker-alpha i {
181 display: block;
182 height: 15px;
183 background: #ffffff;
184 position: absolute;
185 top: 0;
186 left: 0;
187 width: 1px;
188 border: none;
189 margin-top: 0px;
190 }
191 .colorpicker.colorpicker-horizontal .colorpicker-hue {
192 background-image: url("../../../img/bootstrap-colorpicker/hue-horizontal.png");
193 }
194 .colorpicker.colorpicker-horizontal .colorpicker-alpha {
195 background-image: url("../../../img/bootstrap-colorpicker/alpha-horizontal.png");
196 }
197 .colorpicker-right:before {
198 left: auto;
199 right: 6px;
200 }
201 .colorpicker-right:after {
202 left: auto;
203 right: 7px;
204 }
205 .colorpicker-no-arrow:before {
206 border-right: 0;
207 border-left: 0;
208 }
209 .colorpicker-no-arrow:after {
210 border-right: 0;
211 border-left: 0;
212 }
213 .colorpicker.colorpicker-visible,
214 .colorpicker-alpha.colorpicker-visible,
215 .colorpicker-saturation.colorpicker-visible,
216 .colorpicker-hue.colorpicker-visible,
217 .colorpicker-selectors.colorpicker-visible {
218 display: block;
219 }
220 .colorpicker.colorpicker-hidden,
221 .colorpicker-alpha.colorpicker-hidden,
222 .colorpicker-saturation.colorpicker-hidden,
223 .colorpicker-hue.colorpicker-hidden,
224 .colorpicker-selectors.colorpicker-hidden {
225 display: none;
226 }
227 .colorpicker-inline.colorpicker-visible {
228 display: inline-block;
229 }
...\ No newline at end of file ...\ No newline at end of file
1 /*!
2 * Bootstrap Colorpicker v2.5.1
3 * https://itsjavi.com/bootstrap-colorpicker/
4 *
5 * Originally written by (c) 2012 Stefan Petre
6 * Licensed under the Apache License v2.0
7 * http://www.apache.org/licenses/LICENSE-2.0.txt
8 *
9 */.colorpicker-saturation{width:100px;height:100px;background-image:url(../../../img/bootstrap-colorpicker/saturation.png);cursor:crosshair;float:left}.colorpicker-saturation i{display:block;height:5px;width:5px;border:1px solid #000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;position:absolute;top:0;left:0;margin:-4px 0 0 -4px}.colorpicker-saturation i b{display:block;height:5px;width:5px;border:1px solid #fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.colorpicker-alpha,.colorpicker-hue{width:15px;height:100px;float:left;cursor:row-resize;margin-left:4px;margin-bottom:4px}.colorpicker-alpha i,.colorpicker-hue i{display:block;height:1px;background:#000;border-top:1px solid #fff;position:absolute;top:0;left:0;width:100%;margin-top:-1px}.colorpicker-hue{background-image:url(../../../img/bootstrap-colorpicker/hue.png)}.colorpicker-alpha{background-image:url(../../../img/bootstrap-colorpicker/alpha.png);display:none}.colorpicker-alpha,.colorpicker-hue,.colorpicker-saturation{background-size:contain}.colorpicker{padding:4px;min-width:130px;margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;z-index:2500}.colorpicker:after,.colorpicker:before{display:table;content:"";line-height:0}.colorpicker:after{clear:both}.colorpicker:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);position:absolute;top:-7px;left:6px}.colorpicker:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:7px}.colorpicker div{position:relative}.colorpicker.colorpicker-with-alpha{min-width:140px}.colorpicker.colorpicker-with-alpha .colorpicker-alpha{display:block}.colorpicker-color{height:10px;margin-top:5px;clear:both;background-image:url(../../../img/bootstrap-colorpicker/alpha.png);background-position:0 100%}.colorpicker-color div{height:10px}.colorpicker-selectors{display:none;height:10px;margin-top:5px;clear:both}.colorpicker-selectors i{cursor:pointer;float:left;height:10px;width:10px}.colorpicker-selectors i+i{margin-left:3px}.colorpicker-element .add-on i,.colorpicker-element .input-group-addon i{display:inline-block;cursor:pointer;height:16px;vertical-align:text-top;width:16px}.colorpicker.colorpicker-inline{position:relative;display:inline-block;float:none;z-index:auto}.colorpicker.colorpicker-horizontal{width:110px;min-width:110px;height:auto}.colorpicker.colorpicker-horizontal .colorpicker-saturation{margin-bottom:4px}.colorpicker.colorpicker-horizontal .colorpicker-color{width:100px}.colorpicker.colorpicker-horizontal .colorpicker-alpha,.colorpicker.colorpicker-horizontal .colorpicker-hue{width:100px;height:15px;float:left;cursor:col-resize;margin-left:0;margin-bottom:4px}.colorpicker.colorpicker-horizontal .colorpicker-alpha i,.colorpicker.colorpicker-horizontal .colorpicker-hue i{display:block;height:15px;background:#fff;position:absolute;top:0;left:0;width:1px;border:none;margin-top:0}.colorpicker.colorpicker-horizontal .colorpicker-hue{background-image:url(../../../img/bootstrap-colorpicker/hue-horizontal.png)}.colorpicker.colorpicker-horizontal .colorpicker-alpha{background-image:url(../../../img/bootstrap-colorpicker/alpha-horizontal.png)}.colorpicker-right:before{left:auto;right:6px}.colorpicker-right:after{left:auto;right:7px}.colorpicker-no-arrow:before{border-right:0;border-left:0}.colorpicker-no-arrow:after{border-right:0;border-left:0}.colorpicker-alpha.colorpicker-visible,.colorpicker-hue.colorpicker-visible,.colorpicker-saturation.colorpicker-visible,.colorpicker-selectors.colorpicker-visible,.colorpicker.colorpicker-visible{display:block}.colorpicker-alpha.colorpicker-hidden,.colorpicker-hue.colorpicker-hidden,.colorpicker-saturation.colorpicker-hidden,.colorpicker-selectors.colorpicker-hidden,.colorpicker.colorpicker-hidden{display:none}.colorpicker-inline.colorpicker-visible{display:inline-block}
1 /*!
2 * Datetimepicker for Bootstrap 3
3 * version : 4.17.47
4 * https://github.com/Eonasdan/bootstrap-datetimepicker/
5 */
6 .bootstrap-datetimepicker-widget {
7 list-style: none;
8 }
9 .bootstrap-datetimepicker-widget.dropdown-menu {
10 display: block;
11 margin: 2px 0;
12 padding: 4px;
13 width: 19em;
14 }
15 @media (min-width: 768px) {
16 .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
17 width: 38em;
18 }
19 }
20 @media (min-width: 992px) {
21 .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
22 width: 38em;
23 }
24 }
25 @media (min-width: 1200px) {
26 .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
27 width: 38em;
28 }
29 }
30 .bootstrap-datetimepicker-widget.dropdown-menu:before,
31 .bootstrap-datetimepicker-widget.dropdown-menu:after {
32 content: '';
33 display: inline-block;
34 position: absolute;
35 }
36 .bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
37 border-left: 7px solid transparent;
38 border-right: 7px solid transparent;
39 border-bottom: 7px solid #ccc;
40 border-bottom-color: rgba(0, 0, 0, 0.2);
41 top: -7px;
42 left: 7px;
43 }
44 .bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
45 border-left: 6px solid transparent;
46 border-right: 6px solid transparent;
47 border-bottom: 6px solid white;
48 top: -6px;
49 left: 8px;
50 }
51 .bootstrap-datetimepicker-widget.dropdown-menu.top:before {
52 border-left: 7px solid transparent;
53 border-right: 7px solid transparent;
54 border-top: 7px solid #ccc;
55 border-top-color: rgba(0, 0, 0, 0.2);
56 bottom: -7px;
57 left: 6px;
58 }
59 .bootstrap-datetimepicker-widget.dropdown-menu.top:after {
60 border-left: 6px solid transparent;
61 border-right: 6px solid transparent;
62 border-top: 6px solid white;
63 bottom: -6px;
64 left: 7px;
65 }
66 .bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
67 left: auto;
68 right: 6px;
69 }
70 .bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
71 left: auto;
72 right: 7px;
73 }
74 .bootstrap-datetimepicker-widget .list-unstyled {
75 margin: 0;
76 }
77 .bootstrap-datetimepicker-widget a[data-action] {
78 padding: 6px 0;
79 }
80 .bootstrap-datetimepicker-widget a[data-action]:active {
81 box-shadow: none;
82 }
83 .bootstrap-datetimepicker-widget .timepicker-hour,
84 .bootstrap-datetimepicker-widget .timepicker-minute,
85 .bootstrap-datetimepicker-widget .timepicker-second {
86 width: 54px;
87 font-weight: bold;
88 font-size: 1.2em;
89 margin: 0;
90 }
91 .bootstrap-datetimepicker-widget button[data-action] {
92 padding: 6px;
93 }
94 .bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
95 position: absolute;
96 width: 1px;
97 height: 1px;
98 margin: -1px;
99 padding: 0;
100 overflow: hidden;
101 clip: rect(0, 0, 0, 0);
102 border: 0;
103 content: "Increment Hours";
104 }
105 .bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
106 position: absolute;
107 width: 1px;
108 height: 1px;
109 margin: -1px;
110 padding: 0;
111 overflow: hidden;
112 clip: rect(0, 0, 0, 0);
113 border: 0;
114 content: "Increment Minutes";
115 }
116 .bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
117 position: absolute;
118 width: 1px;
119 height: 1px;
120 margin: -1px;
121 padding: 0;
122 overflow: hidden;
123 clip: rect(0, 0, 0, 0);
124 border: 0;
125 content: "Decrement Hours";
126 }
127 .bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
128 position: absolute;
129 width: 1px;
130 height: 1px;
131 margin: -1px;
132 padding: 0;
133 overflow: hidden;
134 clip: rect(0, 0, 0, 0);
135 border: 0;
136 content: "Decrement Minutes";
137 }
138 .bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
139 position: absolute;
140 width: 1px;
141 height: 1px;
142 margin: -1px;
143 padding: 0;
144 overflow: hidden;
145 clip: rect(0, 0, 0, 0);
146 border: 0;
147 content: "Show Hours";
148 }
149 .bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
150 position: absolute;
151 width: 1px;
152 height: 1px;
153 margin: -1px;
154 padding: 0;
155 overflow: hidden;
156 clip: rect(0, 0, 0, 0);
157 border: 0;
158 content: "Show Minutes";
159 }
160 .bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
161 position: absolute;
162 width: 1px;
163 height: 1px;
164 margin: -1px;
165 padding: 0;
166 overflow: hidden;
167 clip: rect(0, 0, 0, 0);
168 border: 0;
169 content: "Toggle AM/PM";
170 }
171 .bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
172 position: absolute;
173 width: 1px;
174 height: 1px;
175 margin: -1px;
176 padding: 0;
177 overflow: hidden;
178 clip: rect(0, 0, 0, 0);
179 border: 0;
180 content: "Clear the picker";
181 }
182 .bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
183 position: absolute;
184 width: 1px;
185 height: 1px;
186 margin: -1px;
187 padding: 0;
188 overflow: hidden;
189 clip: rect(0, 0, 0, 0);
190 border: 0;
191 content: "Set the date to today";
192 }
193 .bootstrap-datetimepicker-widget .picker-switch {
194 text-align: center;
195 }
196 .bootstrap-datetimepicker-widget .picker-switch::after {
197 position: absolute;
198 width: 1px;
199 height: 1px;
200 margin: -1px;
201 padding: 0;
202 overflow: hidden;
203 clip: rect(0, 0, 0, 0);
204 border: 0;
205 content: "Toggle Date and Time Screens";
206 }
207 .bootstrap-datetimepicker-widget .picker-switch td {
208 padding: 0;
209 margin: 0;
210 height: auto;
211 width: auto;
212 line-height: inherit;
213 }
214 .bootstrap-datetimepicker-widget .picker-switch td span {
215 line-height: 2.5;
216 height: 2.5em;
217 width: 100%;
218 }
219 .bootstrap-datetimepicker-widget table {
220 width: 100%;
221 margin: 0;
222 }
223 .bootstrap-datetimepicker-widget table td,
224 .bootstrap-datetimepicker-widget table th {
225 text-align: center;
226 border-radius: 4px;
227 }
228 .bootstrap-datetimepicker-widget table th {
229 height: 20px;
230 line-height: 20px;
231 width: 20px;
232 }
233 .bootstrap-datetimepicker-widget table th.picker-switch {
234 width: 145px;
235 }
236 .bootstrap-datetimepicker-widget table th.disabled,
237 .bootstrap-datetimepicker-widget table th.disabled:hover {
238 background: none;
239 color: #777777;
240 cursor: not-allowed;
241 }
242 .bootstrap-datetimepicker-widget table th.prev::after {
243 position: absolute;
244 width: 1px;
245 height: 1px;
246 margin: -1px;
247 padding: 0;
248 overflow: hidden;
249 clip: rect(0, 0, 0, 0);
250 border: 0;
251 content: "Previous Month";
252 }
253 .bootstrap-datetimepicker-widget table th.next::after {
254 position: absolute;
255 width: 1px;
256 height: 1px;
257 margin: -1px;
258 padding: 0;
259 overflow: hidden;
260 clip: rect(0, 0, 0, 0);
261 border: 0;
262 content: "Next Month";
263 }
264 .bootstrap-datetimepicker-widget table thead tr:first-child th {
265 cursor: pointer;
266 }
267 .bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
268 background: #eeeeee;
269 }
270 .bootstrap-datetimepicker-widget table td {
271 height: 54px;
272 line-height: 54px;
273 width: 54px;
274 }
275 .bootstrap-datetimepicker-widget table td.cw {
276 font-size: .8em;
277 height: 20px;
278 line-height: 20px;
279 color: #777777;
280 }
281 .bootstrap-datetimepicker-widget table td.day {
282 height: 20px;
283 line-height: 20px;
284 width: 20px;
285 }
286 .bootstrap-datetimepicker-widget table td.day:hover,
287 .bootstrap-datetimepicker-widget table td.hour:hover,
288 .bootstrap-datetimepicker-widget table td.minute:hover,
289 .bootstrap-datetimepicker-widget table td.second:hover {
290 background: #eeeeee;
291 cursor: pointer;
292 }
293 .bootstrap-datetimepicker-widget table td.old,
294 .bootstrap-datetimepicker-widget table td.new {
295 color: #777777;
296 }
297 .bootstrap-datetimepicker-widget table td.today {
298 position: relative;
299 }
300 .bootstrap-datetimepicker-widget table td.today:before {
301 content: '';
302 display: inline-block;
303 border: solid transparent;
304 border-width: 0 0 7px 7px;
305 border-bottom-color: #337ab7;
306 border-top-color: rgba(0, 0, 0, 0.2);
307 position: absolute;
308 bottom: 4px;
309 right: 4px;
310 }
311 .bootstrap-datetimepicker-widget table td.active,
312 .bootstrap-datetimepicker-widget table td.active:hover {
313 background-color: #337ab7;
314 color: #fff;
315 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
316 }
317 .bootstrap-datetimepicker-widget table td.active.today:before {
318 border-bottom-color: #fff;
319 }
320 .bootstrap-datetimepicker-widget table td.disabled,
321 .bootstrap-datetimepicker-widget table td.disabled:hover {
322 background: none;
323 color: #777777;
324 cursor: not-allowed;
325 }
326 .bootstrap-datetimepicker-widget table td span {
327 display: inline-block;
328 width: 54px;
329 height: 54px;
330 line-height: 54px;
331 margin: 2px 1.5px;
332 cursor: pointer;
333 border-radius: 4px;
334 }
335 .bootstrap-datetimepicker-widget table td span:hover {
336 background: #eeeeee;
337 }
338 .bootstrap-datetimepicker-widget table td span.active {
339 background-color: #337ab7;
340 color: #fff;
341 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
342 }
343 .bootstrap-datetimepicker-widget table td span.old {
344 color: #777777;
345 }
346 .bootstrap-datetimepicker-widget table td span.disabled,
347 .bootstrap-datetimepicker-widget table td span.disabled:hover {
348 background: none;
349 color: #777777;
350 cursor: not-allowed;
351 }
352 .bootstrap-datetimepicker-widget.usetwentyfour td.hour {
353 height: 27px;
354 line-height: 27px;
355 }
356 .bootstrap-datetimepicker-widget.wider {
357 width: 21em;
358 }
359 .bootstrap-datetimepicker-widget .datepicker-decades .decade {
360 line-height: 1.8em !important;
361 }
362 .input-group.date .input-group-addon {
363 cursor: pointer;
364 }
365 .sr-only {
366 position: absolute;
367 width: 1px;
368 height: 1px;
369 margin: -1px;
370 padding: 0;
371 overflow: hidden;
372 clip: rect(0, 0, 0, 0);
373 border: 0;
374 }
1 /*!
2 * Datetimepicker for Bootstrap 3
3 * version : 4.17.47
4 * https://github.com/Eonasdan/bootstrap-datetimepicker/
5 */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:before,.bootstrap-datetimepicker-widget.dropdown-menu:after{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:bold;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action="today"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.old,.bootstrap-datetimepicker-widget table td.new{color:#777}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,0.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget table td span:hover{background:#eee}.bootstrap-datetimepicker-widget table td span.active{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em !important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}
...\ No newline at end of file ...\ No newline at end of file
1 .wpdt-c .wpDataTablesWrapper table.wpDataTable .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td {
2 background: transparent;
3 -o-transition: 0s;
4 -ms-transition: 0s;
5 -moz-transition: 0s;
6 -webkit-transition: 0s;
7 transition: 0s;
8 }
9 .wpdt-c .wpDataTables.wpDataTablesWrapper {
10 position: relative !important;
11 }
12
13 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget {
14 padding: 0 !important;
15 margin: 0 !important;
16 width: auto !important;
17 bottom: auto !important;
18 top: auto !important;
19 min-width: 216px;
20 }
21
22 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget:after,
23 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget:before {
24 display: none !important;
25 }
26
27 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table {
28 border: 0 !important;
29 font-size: inherit;
30 line-height: inherit;
31 table-layout: auto;
32 }
33
34 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td {
35 text-shadow: none;
36 white-space: normal;
37 overflow: visible;
38 border: 0;
39 font-weight: normal;
40 }
41
42 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td span {
43 margin: 0;
44 }
45
46 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td span:hover {
47 background: transparent;
48 }
49
50 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon {
51 font-family: 'Material-Design-Iconic-Font';
52 font-size: 18px;
53 }
54
55 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-left:before {
56 content: "\f2ff";
57 }
58
59 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-right:before {
60 content: "\f301";
61 }
62
63 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-time:before {
64 content: "\f337";
65 }
66
67 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-trash:before {
68 content: "\f330";
69 }
70
71 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-calendar:before {
72 content: "\f32e";
73 }
74
75 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-up:before {
76 content: "\f1e5";
77 }
78
79 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-down:before {
80 content: "\f1e4";
81 }
82
83 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget a[data-action] {
84 color: #2196F3;
85 border-bottom: 0;
86 }
87
88 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .datepicker-decades .decade {
89 line-height: 1.8em !important;
90 background: none;
91 color: inherit;
92 }
93
94 .wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .datepicker-decades span {
95 height: auto;
96 }
97
98 .wpdt-c .wdt-datetimepicker-modal .timepicker-picker .table-condensed > tbody > tr > td {
99 padding: 10px;
100 background: transparent;
101 }
102
103 .wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn {
104 box-shadow: none !important;
105 height: auto !important;
106 }
107
108 .wpdt-c .wdt-datetimepicker-modal .timepicker-picker table tbody tr + tr:not(:last-child) {
109 background: #2196F3;
110 color: #fff;
111 }
112
113 .wpdt-c .wdt-datetimepicker-modal .timepicker-picker table tbody tr + tr:not(:last-child) {
114 background: #2196F3;
115 color: #fff;
116 }
117
118 .wpdt-c .wdt-datetimepicker-modal .timepicker-picker table tbody tr + tr:not(:last-child) td {
119 border-radius: 0;
120 background-color: #2196F3;
121 }
122
123 .wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn,
124 .wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn:hover {
125 background: #fff;
126 color: #333;
127 }
128
129 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th {
130 border-radius: 0;
131 color: #fff;
132 border: 0 !important;
133 }
134
135 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th .glyphicon {
136 width: 30px;
137 height: 30px;
138 border-radius: 50%;
139 line-height: 29px;
140 }
141
142 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th:hover .glyphicon {
143 background: rgba(0, 0, 0, 0.2);
144 }
145
146 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th {
147 background: #2196F3;
148 padding: 20px 0;
149 text-align: center;
150 }
151
152 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th:hover {
153 background: #2196F3;
154 }
155
156 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th.picker-switch {
157 font-size: 16px;
158 font-weight: 400;
159 text-transform: uppercase;
160 }
161
162 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th {
163 text-transform: uppercase;
164 font-weight: normal;
165 font-size: 11px;
166 }
167
168 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th:first-child {
169 padding-left: 20px;
170 }
171
172 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th:last-child {
173 padding-right: 20px;
174 }
175
176 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child:not(:only-child),
177 .wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child:not(:only-child) th {
178 background: #098BEF;
179 }
180
181 .wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr,
182 .wpdt-c .wdt-datetimepicker-modal .datepicker table tbody td {
183 padding: 0 !important;
184 }
185
186 .wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr:last-child td {
187 padding-bottom: 25px !important;
188 }
189
190 .wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr td:first-child {
191 padding-left: 13px !important;
192 overflow: visible;
193 }
194
195 .wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr td:last-child {
196 padding-right: 13px !important;
197 }
198
199 .wpdt-c .wdt-datetimepicker-modal .datepicker table td.day {
200 width: 35px;
201 height: 35px;
202 line-height: 20px;
203 color: #333;
204 position: relative;
205 background: transparent !important;
206 border: 0;
207 }
208
209 .wpdt-c .wdt-datetimepicker-modal .datepicker table td.day:hover {
210 background: none;
211 }
212
213 .wpdt-c .wdt-datetimepicker-modal .datepicker table td.day:before {
214 content: "";
215 width: 35px;
216 height: 35px;
217 border-radius: 50%;
218 margin-bottom: -33px;
219 display: inline-block;
220 background: transparent;
221 position: static;
222 text-shadow: none;
223 border-bottom-color: transparent !important;
224 }
225
226 .wpdt-c .wdt-datetimepicker-modal .datepicker table td.day.old,
227 .wpdt-c .wdt-datetimepicker-modal .datepicker table td.day.new {
228 color: #CDCDCD;
229 }
230
231 .wpdt-c .wdt-datetimepicker-modal .datepicker table td:not(.today):not(.active):hover:before {
232 background: #F0F0F0;
233 }
234
235 .wpdt-c .wdt-datetimepicker-modal .datepicker table td.today {
236 color: #333;
237 }
238
239 .wpdt-c .wdt-datetimepicker-modal .datepicker table td.today:before {
240 background-color: #E2E2E2;
241 }
242
243 .wpdt-c .wdt-datetimepicker-modal .datepicker table td.active {
244 color: #fff;
245 }
246
247 .wpdt-c .wdt-datetimepicker-modal .datepicker table td.active:before {
248 background-color: #2196F3;
249 }
250
251 .wpdt-c .wdt-datetimepicker-modal .datepicker-months .month,
252 .wpdt-c .wdt-datetimepicker-modal .datepicker-years .year,
253 .wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute,
254 .wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour {
255 border-radius: 50%;
256 }
257
258 .wpdt-c .wdt-datetimepicker-modal .datepicker-months .month:not(.active):hover,
259 .wpdt-c .wdt-datetimepicker-modal .datepicker-years .year:not(.active):hover,
260 .wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute:not(.active):hover,
261 .wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour:not(.active):hover {
262 background: #F0F0F0;
263 }
264
265 .wpdt-c .wdt-datetimepicker-modal .datepicker-months .month.active,
266 .wpdt-c .wdt-datetimepicker-modal .datepicker-years .year.active,
267 .wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute.active,
268 .wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour.active {
269 background: #2196F3;
270 }
271
272 .wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute,
273 .wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour {
274 padding: 0;
275 }
276
277 .wpdt-c .wdt-datetimepicker-modal .list-unstyled {
278 padding: 0 !important;
279 line-height: inherit !important;
280 list-style-type: inherit !important;
281 }
1 .wpdt-c .wpDataTablesWrapper table.wpDataTable .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td{background:0 0;-o-transition:0s;-ms-transition:0s;-moz-transition:0s;-webkit-transition:0s;transition:0s}.wpdt-c .wpDataTables.wpDataTablesWrapper{position:relative!important}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget{padding:0!important;margin:0!important;width:auto!important;bottom:auto!important;top:auto!important;min-width:216px}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget:after,.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget:before{display:none!important}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table{border:0!important;font-size:inherit;line-height:inherit;table-layout:auto}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td{text-shadow:none;white-space:normal;overflow:visible;border:0;font-weight:400}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td span{margin:0}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td span:hover{background:0 0}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon{font-family:Material-Design-Iconic-Font;font-size:18px}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-left:before{content:"\f2ff"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-right:before{content:"\f301"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-time:before{content:"\f337"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-trash:before{content:"\f330"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-calendar:before{content:"\f32e"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-up:before{content:"\f1e5"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-down:before{content:"\f1e4"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget a[data-action]{color:#2196F3;border-bottom:0}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em!important;background:0 0;color:inherit}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .datepicker-decades span{height:auto}.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .table-condensed>tbody>tr>td{padding:10px;background:0 0}.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn{box-shadow:none!important;height:auto!important}.wpdt-c .wdt-datetimepicker-modal .timepicker-picker table tbody tr+tr:not(:last-child){background:#2196F3;color:#fff}.wpdt-c .wdt-datetimepicker-modal .timepicker-picker table tbody tr+tr:not(:last-child) td{border-radius:0;background-color:#2196F3}.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn,.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn:hover{background:#fff;color:#333}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th{border-radius:0;color:#fff;border:0!important}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th .glyphicon{width:30px;height:30px;border-radius:50%;line-height:29px}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th:hover .glyphicon{background:rgba(0,0,0,.2)}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th{background:#2196F3;padding:20px 0;text-align:center}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th:hover{background:#2196F3}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th.picker-switch{font-size:16px;font-weight:400;text-transform:uppercase}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th{text-transform:uppercase;font-weight:400;font-size:11px}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th:first-child{padding-left:20px}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th:last-child{padding-right:20px}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child:not(:only-child),.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child:not(:only-child) th{background:#098BEF}.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody td,.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr{padding:0!important}.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr:last-child td{padding-bottom:25px!important}.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr td:first-child{padding-left:13px!important;overflow:visible}.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr td:last-child{padding-right:13px!important}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day{width:35px;height:35px;line-height:20px;color:#333;position:relative;background:0 0!important;border:0}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day:hover{background:0 0}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day:before{content:"";width:35px;height:35px;border-radius:50%;margin-bottom:-33px;display:inline-block;background:0 0;position:static;text-shadow:none;border-bottom-color:transparent!important}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day.new,.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day.old{color:#CDCDCD}.wpdt-c .wdt-datetimepicker-modal .datepicker table td:not(.today):not(.active):hover:before{background:#F0F0F0}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.today{color:#333}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.today:before{background-color:#E2E2E2}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.active{color:#fff}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.active:before{background-color:#2196F3}.wpdt-c .wdt-datetimepicker-modal .datepicker-months .month,.wpdt-c .wdt-datetimepicker-modal .datepicker-years .year,.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour,.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute{border-radius:50%}.wpdt-c .wdt-datetimepicker-modal .datepicker-months .month:not(.active):hover,.wpdt-c .wdt-datetimepicker-modal .datepicker-years .year:not(.active):hover,.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour:not(.active):hover,.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute:not(.active):hover{background:#F0F0F0}.wpdt-c .wdt-datetimepicker-modal .datepicker-months .month.active,.wpdt-c .wdt-datetimepicker-modal .datepicker-years .year.active,.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour.active,.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute.active{background:#2196F3}.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour,.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute{padding:0}.wpdt-c .wdt-datetimepicker-modal .list-unstyled{padding:0!important;line-height:inherit!important;list-style-type:inherit!important}
...\ No newline at end of file ...\ No newline at end of file
1 /*!
2 * Bootstrap-select v1.11.0 (http://silviomoreto.github.io/bootstrap-select)
3 *
4 * Copyright 2013-2016 bootstrap-select
5 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6 */select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\9}.bootstrap-select>.dropdown-toggle{width:100%;padding-right:25px;z-index:1}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2}.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{z-index:auto}.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn{border-radius:0}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.bootstrap-select.btn-group.disabled,.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group.disabled:focus,.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group.bs-container{position:absolute;height:0!important;padding:0!important}.bootstrap-select.btn-group.bs-container .dropdown-menu{z-index:1060}.bootstrap-select.btn-group .dropdown-toggle .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li.active small{color:#fff}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option{position:static}.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}
...\ No newline at end of file ...\ No newline at end of file
1 .bootstrap-tagsinput {
2 background-color: #fff;
3 border: 1px solid #ccc;
4 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
5 display: inline-block;
6 padding: 4px 6px;
7 color: #555;
8 vertical-align: middle;
9 border-radius: 4px;
10 max-width: 100%;
11 line-height: 22px;
12 cursor: text;
13 }
14 .bootstrap-tagsinput input {
15 border: none;
16 box-shadow: none;
17 outline: none;
18 background-color: transparent;
19 padding: 0 6px;
20 margin: 0;
21 width: auto;
22 max-width: inherit;
23 }
24 .bootstrap-tagsinput.form-control input::-moz-placeholder {
25 color: #777;
26 opacity: 1;
27 }
28 .bootstrap-tagsinput.form-control input:-ms-input-placeholder {
29 color: #777;
30 }
31 .bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
32 color: #777;
33 }
34 .bootstrap-tagsinput input:focus {
35 border: none;
36 box-shadow: none;
37 }
38 .bootstrap-tagsinput .tag {
39 margin-right: 2px;
40 color: white;
41 }
42 .bootstrap-tagsinput .tag [data-role="remove"] {
43 margin-left: 8px;
44 cursor: pointer;
45 }
46 .bootstrap-tagsinput .tag [data-role="remove"]:after {
47 content: "x";
48 padding: 0px 2px;
49 }
50 .bootstrap-tagsinput .tag [data-role="remove"]:hover {
51 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
52 }
53 .bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
54 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
55 }
1 table.has-columns-hidden > tbody > tr > td > span.responsiveExpander,
2 table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander {
3 background-color: #ffffff;
4 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e0e0e0) );
5 background-image: -webkit-linear-gradient(top, #ffffff, #e0e0e0);
6 background-image: -o-linear-gradient(top, #ffffff, #e0e0e0);
7 background-image: linear-gradient(to bottom, #ffffff, #e0e0e0);
8 background-image: -moz-linear-gradient(top, #ffffff, #e0e0e0);
9 filter: progid:dximagetransform.microsoft.gradient( startColorstr= '#ffffffff', endColorstr= '#ffe0e0e0', GradientType= 0 );
10 border: 1px solid #e0e0e0;
11 cursor: pointer;
12 display: inline-block;
13 line-height: 0;
14 font-size: 0;
15 padding: 1px;
16 box-sizing: border-box;
17 -moz-box-sizing: border-box;
18 -webkit-box-sizing: border-box;
19 -moz-border-radius: 5px;
20 -webkit-border-radius: 5px;
21 -o-border-radius: 5px;
22 border-radius: 5px;
23 -webkit-user-select: none;
24 -khtml-user-select: none;
25 -moz-user-select: none;
26 -ms-user-select: none;
27 user-select: none;
28 margin-right: 3px;
29 }
30
31 table.has-columns-hidden > tbody > tr > td > span.responsiveExpander:hover,
32 table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander:hover {
33 background-color: #fff;
34 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5) );
35 background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
36 background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
37 background-image: linear-gradient(to bottom, #ffffff, #f5f5f5);
38 background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
39 filter: progid:dximagetransform.microsoft.gradient( startColorstr= '#ffffffff', endColorstr= '#fff5f5f5', GradientType= 0 );
40 border-color: #c7d5e1;
41 -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
42 -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
43 box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
44 }
45
46 table.has-columns-hidden > tbody > tr > td > span.responsiveExpander:after,
47 table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander:after {
48 display: inline-block;
49 line-height: 0;
50 content: "";
51 height: 11px;
52 width: 11px;
53 background-image: url("../img/icons.png");
54 background-repeat: no-repeat;
55 background-position: -3000px -3000px;
56 }
57
58 table.has-columns-hidden > tbody > tr > td > span.responsiveExpander:after {
59 background-position: 0 0;
60 cursor: pointer;
61 }
62
63 table.has-columns-hidden > tbody > tr > td > span.responsiveExpander:hover:after {
64 background-position: -12px 0;
65 }
66
67 table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander:after {
68 background-position: -24px 0;
69 }
70
71 table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander:hover:after {
72 background-position: -36px 0;
73 }
74
75 table.has-columns-hidden > tbody > tr.row-detail > td {
76 background: #eee;
77 }
78
79 table.has-columns-hidden > tbody > tr.row-detail > td > ul {
80 list-style: none;
81 margin: 0;
82 }
83
84 table.has-columns-hidden > tbody > tr.row-detail > td > ul > li > span.columnTitle {
85 font-weight: bold;
86 }
1 .gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80)}.gu-hide{display:none!important}.gu-unselectable{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";filter:alpha(opacity=20)}
...\ No newline at end of file ...\ No newline at end of file
1 /*!
2 * Waves v0.7.5
3 * http://fian.my.id/Waves
4 *
5 * Copyright 2014-2016 Alfiana E. Sibuea and other contributors
6 * Released under the MIT license
7 * https://github.com/fians/Waves/blob/master/LICENSE
8 */.waves-effect{position:relative;cursor:pointer;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.waves-effect .waves-ripple{position:absolute;border-radius:50%;width:100px;height:100px;margin-top:-50px;margin-left:-50px;opacity:0;background:rgba(0,0,0,.2);background:-webkit-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);background:-o-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);background:-moz-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);background:radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);-webkit-transition:all .5s ease-out;-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;transition:all .5s ease-out;-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;-o-transition-property:-o-transform,opacity;transition-property:transform,opacity;-webkit-transform:scale(0) translate(0,0);-moz-transform:scale(0) translate(0,0);-ms-transform:scale(0) translate(0,0);-o-transform:scale(0) translate(0,0);transform:scale(0) translate(0,0);pointer-events:none}.waves-effect.waves-light .waves-ripple{background:rgba(255,255,255,.4);background:-webkit-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);background:-o-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);background:-moz-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);background:radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%)}.waves-effect.waves-classic .waves-ripple{background:rgba(0,0,0,.2)}.waves-effect.waves-classic.waves-light .waves-ripple{background:rgba(255,255,255,.4)}.waves-notransition{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;transition:none!important}.waves-button,.waves-circle{-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0);-webkit-mask-image:-webkit-radial-gradient(circle,#fff 100%,#000 100%)}.waves-button,.waves-button:hover,.waves-button:visited,.waves-button-input{white-space:nowrap;vertical-align:middle;cursor:pointer;border:none;outline:0;color:inherit;background-color:transparent;font-size:1em;line-height:1em;text-align:center;text-decoration:none;z-index:1}.waves-button{padding:.85em 1.1em;border-radius:.2em}.waves-button-input{margin:0;padding:.85em 1.1em}.waves-input-wrapper{border-radius:.2em;vertical-align:bottom}.waves-input-wrapper.waves-button{padding:0}.waves-input-wrapper .waves-button-input{position:relative;top:0;left:0;z-index:1}.waves-circle{text-align:center;width:2.5em;height:2.5em;line-height:2.5em;border-radius:50%}.waves-float{-webkit-mask-image:none;-webkit-box-shadow:0 1px 1.5px 1px rgba(0,0,0,.12);box-shadow:0 1px 1.5px 1px rgba(0,0,0,.12);-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.waves-float:active{-webkit-box-shadow:none;box-shadow:none}.waves-block{display:block}
...\ No newline at end of file ...\ No newline at end of file
1 div.wpExcelTable {
2 clear:both;
3 }
4
5 .wpExcelTable_search_filter {
6 float: left;
7 margin-bottom: 20px;
8 }
9
10 .wpExcelTable .wdtAttachmentEditorHolder {
11 position: absolute;
12 top: 0;
13 left: 0;
14 z-index: 100;
15 background-color: #fff;
16 padding: 5px;
17 border: 2px solid #CCC;
18 }
19
20 .wpExcelTable .wdtAttachmentEditorHolder span.delete_file {
21 padding-left: 10px;
22 }
23
24 .wpExcelTable .invalid_editor_value > textarea {
25 background-color: #ff4c42!important;
26 }
27
28 .wpExcelTable .overlayed_elm {
29 position: relative;
30 pointer-events: none;
31 }
32
33 .wpExcelTable .overlayed_elm>* {
34 opacity: .3;
35 }
36
37 .wpExcelTable > .handsontable:first-child .overlayed_elm:after {
38 color: inherit;
39 font-size: 34px;
40 left: 50%;
41 margin-left: -15px;
42 margin-top: -20px;
43 opacity: 1;
44 position: absolute;
45 top: 50%;
46 -webkit-animation: spin 2s infinite linear;
47 -moz-animation: spin 2s infinite linear;
48 -o-animation: spin 2s infinite linear;
49 animation: spin 2s infinite linear;
50 }
51
52 .wpExcelTable > .handsontable:first-child .overlayed_elm:after {
53 display: inline-block;
54 font-family: WPDataTablesIcons!important;
55 font-style: normal;
56 font-weight: 400;
57 text-align: center;
58 text-decoration: none;
59 vertical-align: middle;
60 -webkit-font-smoothing: antialiased;
61 }
62
63 .wpExcelTable > .handsontable:first-child .overlayed_elm:after {
64 font-family: dashicons!important;
65 content: "\f463"
66 }
...\ No newline at end of file ...\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.