datavis-glide 4.0.0-PRE.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +45 -0
- package/README.md +129 -0
- package/datavis.js +101 -0
- package/dist/wcdatavis.css +1957 -0
- package/dist/wcdatavis.min.js +1 -0
- package/global-jquery.js +4 -0
- package/ie-fixes.js +13 -0
- package/index.js +70 -0
- package/meteor.js +1 -0
- package/package.json +102 -0
- package/src/flags.js +6 -0
- package/src/graph.js +1079 -0
- package/src/graph_renderer.js +85 -0
- package/src/grid.js +2777 -0
- package/src/grid_control.js +1957 -0
- package/src/grid_filter.js +1073 -0
- package/src/grid_renderer.js +276 -0
- package/src/group_fun_win.js +121 -0
- package/src/lang/en-US.js +188 -0
- package/src/lang/es-MX.js +188 -0
- package/src/lang/fr-FR.js +188 -0
- package/src/lang/id-ID.js +188 -0
- package/src/lang/nl-NL.js +188 -0
- package/src/lang/pt-BR.js +188 -0
- package/src/lang/ru-RU.js +188 -0
- package/src/lang/th-TH.js +188 -0
- package/src/lang/vi-VN.js +188 -0
- package/src/lang/zh-Hans-CN.js +188 -0
- package/src/operations_palette.js +176 -0
- package/src/prefs_modules.js +132 -0
- package/src/reg/graph_renderer.js +17 -0
- package/src/renderers/graph/chartjs.js +457 -0
- package/src/renderers/graph/google.js +584 -0
- package/src/renderers/graph/jit.js +61 -0
- package/src/renderers/graph/svelte-gantt.js +168 -0
- package/src/renderers/grid/dummy.js +79 -0
- package/src/renderers/grid/handlebars.js +217 -0
- package/src/renderers/grid/squirrelly.js +215 -0
- package/src/renderers/grid/table/group_detail.js +1404 -0
- package/src/renderers/grid/table/group_summary.js +380 -0
- package/src/renderers/grid/table/pivot.js +915 -0
- package/src/renderers/grid/table/plain.js +1592 -0
- package/src/renderers/grid/table.js +2510 -0
- package/src/trans.js +101 -0
- package/src/ui/collapsible.js +234 -0
- package/src/ui/filters/date.js +283 -0
- package/src/ui/grid_filter.js +398 -0
- package/src/ui/popup_menu.js +224 -0
- package/src/ui/popup_window.js +572 -0
- package/src/ui/slider.js +156 -0
- package/src/ui/tabs.js +202 -0
- package/src/ui/templates.js +131 -0
- package/src/ui/toolbar.js +63 -0
- package/src/ui/toolbars/grid.js +873 -0
- package/src/ui/windows/col_config.js +341 -0
- package/src/ui/windows/debug.js +164 -0
- package/src/ui/windows/grid_table_opts.js +139 -0
- package/src/util/handlebars.js +158 -0
- package/src/util/jquery.js +630 -0
- package/src/util/misc.js +1058 -0
- package/src/util/squirrelly.js +155 -0
- package/wcdatavis.css +1601 -0
package/wcdatavis.css
ADDED
|
@@ -0,0 +1,1601 @@
|
|
|
1
|
+
/* WC DATAVIS STYLES */
|
|
2
|
+
|
|
3
|
+
.wcdv_button {
|
|
4
|
+
cursor: pointer;
|
|
5
|
+
vertical-align: middle;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
button.wcdv_icon_button {
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
border: none;
|
|
11
|
+
background-color: transparent;
|
|
12
|
+
padding: 0;
|
|
13
|
+
padding-top: 2px;
|
|
14
|
+
vertical-align: middle;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
button.wcdv_icon_button > svg.wcdv_icon {
|
|
18
|
+
height: 16px;
|
|
19
|
+
width: 16px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
button.wcdv_icon_button_nolabel svg.wcdv_icon {
|
|
23
|
+
margin-right: 0px !important;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
button.wcdv_button_left {
|
|
27
|
+
margin-left: 0.5em;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
button.wcdv_button_right {
|
|
31
|
+
margin-right: 0.5em;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/*
|
|
35
|
+
* In-cell buttons like the one used to show the full value of a cell when the maxHeight is set in
|
|
36
|
+
* column config.
|
|
37
|
+
*/
|
|
38
|
+
|
|
39
|
+
td button.wcdv_icon_button_incell {
|
|
40
|
+
/*
|
|
41
|
+
position: absolute;
|
|
42
|
+
top: 0px;
|
|
43
|
+
right: 0px;
|
|
44
|
+
*/
|
|
45
|
+
float: right;
|
|
46
|
+
border: none;
|
|
47
|
+
margin-left: 4px; /* to keep left-aligned data (like numbers) from running into it */
|
|
48
|
+
padding: 2px;
|
|
49
|
+
border-radius: 2px;
|
|
50
|
+
background-color: #E0E0E080;
|
|
51
|
+
color: #80808080;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
td:hover button.wcdv_icon_button_incell {
|
|
55
|
+
background-color: #C0C0C080;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
td button.wcdv_icon_button_incell:hover {
|
|
59
|
+
color: #404040;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/* Icon sizing. */
|
|
63
|
+
|
|
64
|
+
td button.wcdv_icon_button_incell svg.wcdv_icon {
|
|
65
|
+
width: 12px;
|
|
66
|
+
height: 12px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/*
|
|
70
|
+
* Styles for checkboxes which are displayed using icons.
|
|
71
|
+
*/
|
|
72
|
+
|
|
73
|
+
button.wcdv_icon_button > svg.wcdv_icon.wcdv_icon_checkbox_off {
|
|
74
|
+
color: #000;
|
|
75
|
+
padding: 0.2em;
|
|
76
|
+
border-radius: 0.2em;
|
|
77
|
+
}
|
|
78
|
+
button.wcdv_icon_button > svg.wcdv_icon.wcdv_icon_checkbox_on {
|
|
79
|
+
background-color: #0095D6;
|
|
80
|
+
color: #FFF;
|
|
81
|
+
padding: 0.2em;
|
|
82
|
+
border-radius: 0.2em;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.wcdv_grid button > svg.wcdv_icon,
|
|
86
|
+
.wcdv_graph button > svg.wcdv_icon,
|
|
87
|
+
.wcdv_spinner > svg.wcdv_icon {
|
|
88
|
+
margin-right: 0.25em;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
li.wcdv_aggregate_field:first-child {
|
|
92
|
+
padding-top: 0.5ex;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
li.wcdv_aggregate_field {
|
|
96
|
+
padding-top: 0.25ex;
|
|
97
|
+
padding-bottom: 0.25ex;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
button.wcdv_expand_button > svg.wcdv_icon {
|
|
101
|
+
width: 15px;
|
|
102
|
+
height: 15px;
|
|
103
|
+
cursor: pointer;
|
|
104
|
+
margin-right: inherit;
|
|
105
|
+
color: #737373;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/*
|
|
109
|
+
* Icon animation and rotation utility classes.
|
|
110
|
+
*/
|
|
111
|
+
|
|
112
|
+
@keyframes wcdv-spin {
|
|
113
|
+
from { transform: rotate(0deg); }
|
|
114
|
+
to { transform: rotate(360deg); }
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.wcdv_icon_spin {
|
|
118
|
+
animation: wcdv-spin 1.5s linear infinite;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.wcdv_icon_pulse {
|
|
122
|
+
animation: wcdv-spin 1s steps(8) infinite;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.wcdv_icon_rotate_180 {
|
|
126
|
+
transform: rotate(180deg);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.wcdv_icon_rotate_270 {
|
|
130
|
+
transform: rotate(270deg);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.wcdv_grid, .wcdv_graph {
|
|
134
|
+
background-color: white;
|
|
135
|
+
margin-top: 1em;
|
|
136
|
+
display: flex;
|
|
137
|
+
flex-direction: column;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.wcdv_grid:first-of-type {
|
|
141
|
+
margin-top: 0;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.wcdv_dlg_warning_banner {
|
|
145
|
+
border-left: solid 8px #bf311a;
|
|
146
|
+
padding: 4px;
|
|
147
|
+
margin-bottom: 4px;
|
|
148
|
+
background-color: #fadfdb;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.wcdv_dlg_info_banner {
|
|
152
|
+
border: solid 2px #2196F3;
|
|
153
|
+
background-color: #E3F2FD;
|
|
154
|
+
color: #0D47A1;
|
|
155
|
+
padding: 1ex;
|
|
156
|
+
margin-top: 1ex;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.wcdv_bottom_border_teal {
|
|
160
|
+
border-bottom: solid 2px #009688;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
hr.wcdv_hr_gradient {
|
|
164
|
+
border: 0;
|
|
165
|
+
height: 2px;
|
|
166
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/******************************************************************************/
|
|
170
|
+
|
|
171
|
+
.wcdv_omnifilter {
|
|
172
|
+
display: inline-flex;
|
|
173
|
+
align-items: center;
|
|
174
|
+
height: 30px;
|
|
175
|
+
padding: 0 4px;
|
|
176
|
+
vertical-align: top;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.wcdv_omnifilter_input_wrap {
|
|
180
|
+
position: relative;
|
|
181
|
+
display: inline-flex;
|
|
182
|
+
align-items: center;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.wcdv_omnifilter_input {
|
|
186
|
+
border: 1px solid #ddd;
|
|
187
|
+
border-radius: 3px;
|
|
188
|
+
padding: 2px 22px 2px 6px;
|
|
189
|
+
font-size: 0.85em;
|
|
190
|
+
outline: none;
|
|
191
|
+
width: 150px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.wcdv_omnifilter_input:focus {
|
|
195
|
+
border-color: #66afe9;
|
|
196
|
+
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 4px rgba(102,175,233,.6);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.wcdv_omnifilter_clear {
|
|
200
|
+
position: absolute;
|
|
201
|
+
right: 2px;
|
|
202
|
+
top: 50%;
|
|
203
|
+
transform: translateY(-50%);
|
|
204
|
+
background: transparent;
|
|
205
|
+
border: none;
|
|
206
|
+
cursor: pointer;
|
|
207
|
+
color: #999;
|
|
208
|
+
padding: 0 3px;
|
|
209
|
+
font-size: 0.8em;
|
|
210
|
+
line-height: 1;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.wcdv_omnifilter_clear:hover {
|
|
214
|
+
color: #333;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.wcdv_omnifilter_toggle.wcdv_omnifilter_active {
|
|
218
|
+
filter: drop-shadow(0 0 4px rgba(102, 175, 233, 0.8)) drop-shadow(0 0 8px rgba(102, 175, 233, 0.5));
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/******************************************************************************/
|
|
222
|
+
|
|
223
|
+
.wcdv_grid_titlebar {
|
|
224
|
+
border: 1px solid #c7c7c7;
|
|
225
|
+
padding: 0 0 0 8px;
|
|
226
|
+
cursor: pointer;
|
|
227
|
+
color: #737373;
|
|
228
|
+
flex: 0 0 auto;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.wcdv_grid_titlebar strong {
|
|
232
|
+
font-size: 1em;
|
|
233
|
+
line-height: 30px;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.wcdv_grid_titlebar .headingInfo {
|
|
237
|
+
cursor: default;
|
|
238
|
+
font-size: 0.9em;
|
|
239
|
+
line-height: 30px;
|
|
240
|
+
padding-right: 8px;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
div.wcdv_grid_titlebar div.wcdv_loading_spinner {
|
|
244
|
+
display: inline-block;
|
|
245
|
+
margin-left: -4px;
|
|
246
|
+
margin-right: 4px;
|
|
247
|
+
vertical-align: middle;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.wcdv_grid_titlebar .link {
|
|
251
|
+
cursor: pointer;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.wcdv_grid_titlebar .link:hover {
|
|
255
|
+
text-decoration: underline;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
/*
|
|
259
|
+
* Controls in the top-right of the titlebar:
|
|
260
|
+
*
|
|
261
|
+
* - omnifilter
|
|
262
|
+
* - download
|
|
263
|
+
* - refresh
|
|
264
|
+
* - config
|
|
265
|
+
* - show/hide
|
|
266
|
+
*/
|
|
267
|
+
|
|
268
|
+
div.wcdv_titlebar_controls {
|
|
269
|
+
float: right;
|
|
270
|
+
height: 30px;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
div.wcdv_titlebar_controls button.wcdv_icon_button {
|
|
274
|
+
height: 30px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
div.wcdv_titlebar_controls button.wcdv_icon_button > svg.wcdv_icon {
|
|
278
|
+
cursor: pointer;
|
|
279
|
+
text-align: center;
|
|
280
|
+
user-select: none;
|
|
281
|
+
width: 24px;
|
|
282
|
+
height: 18px;
|
|
283
|
+
vertical-align: middle;
|
|
284
|
+
margin-top: -4px;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/******************************************************************************/
|
|
288
|
+
|
|
289
|
+
.wcdv_grid_content {
|
|
290
|
+
flex: 1 1 auto;
|
|
291
|
+
display: flex;
|
|
292
|
+
flex-direction: column;
|
|
293
|
+
border: 1px solid #c7c7c7;
|
|
294
|
+
border-top: none;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
/******************************************************************************/
|
|
298
|
+
|
|
299
|
+
.wcdv_grid_toolbar {
|
|
300
|
+
border-bottom: 1px solid #c7c7c7;
|
|
301
|
+
padding: 0 4px;
|
|
302
|
+
flex: 0 0 auto;
|
|
303
|
+
font-size: 0.85em;
|
|
304
|
+
padding: 0 8px;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.wcdv_grid_toolbar .wcdv_button.pull-right {
|
|
308
|
+
padding-right: 0.5em;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
/******************************************************************************/
|
|
312
|
+
|
|
313
|
+
.wcdv_toolbar_section button,
|
|
314
|
+
.wcdv_toolbar_section label,
|
|
315
|
+
.wcdv_toolbar_section .wcdv_button,
|
|
316
|
+
.wcdv_toolbar_section input {
|
|
317
|
+
margin-left: 0.5em;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.wcdv_toolbar_section button:first-child,
|
|
321
|
+
.wcdv_toolbar_section label:first-child,
|
|
322
|
+
.wcdv_toolbar_section .wcdv_button:first-child,
|
|
323
|
+
.wcdv_toolbar_section input:first-child {
|
|
324
|
+
margin-left: 0;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.wcdv_toolbar_section > svg.wcdv_icon {
|
|
328
|
+
width: 18px;
|
|
329
|
+
height: 18px;
|
|
330
|
+
color: #888;
|
|
331
|
+
}
|
|
332
|
+
.wcdv_toolbar_section > svg.wcdv_icon:hover {
|
|
333
|
+
color: #444;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.wcdv_toolbar_section button svg.wcdv_icon {
|
|
337
|
+
width: 1.15em;
|
|
338
|
+
height: 1.15em;
|
|
339
|
+
padding-right: 3px;
|
|
340
|
+
vertical-align: middle;
|
|
341
|
+
margin-top: -2px;
|
|
342
|
+
}
|
|
343
|
+
.wcdv_toolbar_section button[disabled=disabled] svg.wcdv_icon {
|
|
344
|
+
color: #c7c7c77a;
|
|
345
|
+
cursor: not-allowed;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.wcdv_toolbar_section:first-child {
|
|
349
|
+
padding-left: 0px;
|
|
350
|
+
border-left: none;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.wcdv_toolbar_section {
|
|
354
|
+
display: inline-block;
|
|
355
|
+
margin-right: 8px;
|
|
356
|
+
vertical-align: middle;
|
|
357
|
+
border-left: 1px solid #c7c7c7;
|
|
358
|
+
padding: 4px 4px 4px 12px;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.wcdv_toolbar_section input{
|
|
362
|
+
vertical-align: middle;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.wcdv_toolbar_section input[type="radio"] {
|
|
366
|
+
margin-top: -1px;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.wcdv_toolbar_view select{
|
|
370
|
+
margin-left: 0.5em;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.wcdv_toolbar_view .wcdv_icon_button span{
|
|
374
|
+
margin: 0 !important;
|
|
375
|
+
padding: 0;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.wcdv_grid_toolbar svg.wcdv_icon.wcdv_info_icon {
|
|
379
|
+
color: #737373;
|
|
380
|
+
margin-left: 0.5em;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
/******************************************************************************/
|
|
384
|
+
|
|
385
|
+
.wcdv_warning_banner {
|
|
386
|
+
padding: 0.5em;
|
|
387
|
+
font-weight: bold;
|
|
388
|
+
background-color: #FFEB3B;
|
|
389
|
+
font-size: small;
|
|
390
|
+
cursor: pointer;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
/******************************************************************************/
|
|
394
|
+
|
|
395
|
+
.wcdv_grid_control {
|
|
396
|
+
background-color: #FFF;
|
|
397
|
+
border-bottom: 1px solid #c7c7c7;
|
|
398
|
+
font-size: 0.85em;
|
|
399
|
+
|
|
400
|
+
/*
|
|
401
|
+
* Flexible display of group/filter/pivot controls.
|
|
402
|
+
*/
|
|
403
|
+
|
|
404
|
+
display: flex;
|
|
405
|
+
flex-shrink: 0;
|
|
406
|
+
flex-wrap: wrap;
|
|
407
|
+
justify-content: space-between;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.wcdv_control_title_bar {
|
|
411
|
+
display: flex;
|
|
412
|
+
border-bottom: 1px solid #737373;
|
|
413
|
+
align-items: baseline;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.wcdv_control_title {
|
|
417
|
+
color: #737373;
|
|
418
|
+
text-transform: uppercase;
|
|
419
|
+
font-weight: bold;
|
|
420
|
+
display: inline-block;
|
|
421
|
+
flex: 1 1 auto;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
button.wcdv_control_clear_button {
|
|
425
|
+
margin-left: 10px;
|
|
426
|
+
/* so the clear icon doesn't increase the height of the control pane title */
|
|
427
|
+
margin-top: -2px;
|
|
428
|
+
flex: none;
|
|
429
|
+
height: 14px;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
button.wcdv_control_clear_button > svg.wcdv_icon {
|
|
433
|
+
height: 14px;
|
|
434
|
+
/* so the clear icon doesn't increase the height of the control pane title */
|
|
435
|
+
margin-top: -2px;
|
|
436
|
+
margin-right: 0px;
|
|
437
|
+
stroke-width: 2.5px;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.wcdv_control_pane {
|
|
441
|
+
flex-grow: 1;
|
|
442
|
+
background-color: #FFF;
|
|
443
|
+
padding: 8px;
|
|
444
|
+
display: inline-block;
|
|
445
|
+
vertical-align: top;
|
|
446
|
+
border: solid 1px #c7c7c7;
|
|
447
|
+
border-radius: 8px;
|
|
448
|
+
margin: 8px;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.wcdv_control_pane > div {
|
|
452
|
+
display: flex;
|
|
453
|
+
height: 100%;
|
|
454
|
+
flex-direction: column;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.wcdv_control_pane > div > ul {
|
|
458
|
+
list-style-type: none;
|
|
459
|
+
padding: 0px;
|
|
460
|
+
margin-top: 1ex;
|
|
461
|
+
margin-bottom: 1ex;
|
|
462
|
+
width: 100%;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.wcdv_control_pane > div select.wcdv_control_addField {
|
|
466
|
+
width: 100%;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
/* HORIZONTAL CONTROLS */
|
|
470
|
+
|
|
471
|
+
.wcdv_control_pane ul.wcdv_control_horizontal li {
|
|
472
|
+
display: inline-block;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
/*
|
|
476
|
+
* These are the little arrows that show the relationship between group & pivot fields like this:
|
|
477
|
+
* [field] → [field] → [field]. Since these are horizontal lists, the arrows are actually placed at
|
|
478
|
+
* the beginning of every <LI>, we just use CSS to hide the first one so they appear to be between
|
|
479
|
+
* field elements.
|
|
480
|
+
*/
|
|
481
|
+
|
|
482
|
+
.wcdv_control_pane ul.wcdv_control_horizontal > li:first-child > svg.wcdv_icon {
|
|
483
|
+
display: none;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.wcdv_control_pane ul.wcdv_control_horizontal li > svg.wcdv_icon {
|
|
487
|
+
margin-right: 4px;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
/*
|
|
491
|
+
* These are the fields themselves.
|
|
492
|
+
*/
|
|
493
|
+
|
|
494
|
+
.wcdv_control_pane ul.wcdv_control_horizontal li .wcdv_field {
|
|
495
|
+
display: inline-block;
|
|
496
|
+
border-radius: 4px;
|
|
497
|
+
padding: 4px;
|
|
498
|
+
margin-right: 4px;
|
|
499
|
+
cursor: pointer;
|
|
500
|
+
white-space: nowrap;
|
|
501
|
+
border: 1px solid #c7c7c7;
|
|
502
|
+
border-radius: 4px;
|
|
503
|
+
background-color: #FFF;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.wcdv_control_pane ul.wcdv_control_horizontal li.ui-sortable-helper .wcdv_field button {
|
|
507
|
+
display: none;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
/* VERTICAL CONTROLS */
|
|
511
|
+
|
|
512
|
+
.wcdv_control_pane > div > ul.wcdv_control_vertical {
|
|
513
|
+
flex-grow: 1;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.wcdv_control_pane > div > ul.wcdv_control_vertical.ui-sortable > li span.wcdv_field_name {
|
|
517
|
+
cursor: pointer;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
/*
|
|
521
|
+
.wcdv_control_pane .wcdv_control_vertical li:first-child .wcdv_field {
|
|
522
|
+
border-top: none;
|
|
523
|
+
}
|
|
524
|
+
*/
|
|
525
|
+
|
|
526
|
+
.wcdv_control_pane .wcdv_control_vertical li .wcdv_field {
|
|
527
|
+
display: flex;
|
|
528
|
+
align-items: center;
|
|
529
|
+
/* border-top: dashed 1px #c7c7c7; */
|
|
530
|
+
padding: 4px;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.wcdv_sortable_helper {
|
|
534
|
+
border-radius: 8px;
|
|
535
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
|
|
536
|
+
0 2px 4px rgba(0, 0, 0, 0.06);
|
|
537
|
+
background: white; /* Ensures shadow is visible */
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.ui-state-highlight {
|
|
541
|
+
box-sizing: border-box;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
/*
|
|
545
|
+
* These are the fields themselves.
|
|
546
|
+
*/
|
|
547
|
+
|
|
548
|
+
.wcdv_control_pane .wcdv_control_vertical .wcdv_field .wcdv_field_name {
|
|
549
|
+
flex-grow: 1;
|
|
550
|
+
flex-shrink: 0;
|
|
551
|
+
/*
|
|
552
|
+
max-width: 10em;
|
|
553
|
+
overflow: hidden;
|
|
554
|
+
white-space: nowrap;
|
|
555
|
+
text-overflow: ellipsis;
|
|
556
|
+
*/
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
/* AGGREGATE CONTROL */
|
|
560
|
+
|
|
561
|
+
.wcdv_aggregate_control_error {
|
|
562
|
+
margin-left: 4px;
|
|
563
|
+
color: #FF9800;
|
|
564
|
+
cursor: help;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.ui-widget.ui-widget-content.wcdv_aggregate_control_error_tooltip {
|
|
568
|
+
border: solid 2px #FF9800;
|
|
569
|
+
border-top-width: 10px;
|
|
570
|
+
font-size: 0.85em;
|
|
571
|
+
padding: 4px 6px 4px 6px;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.ui-widget.ui-widget-content.wcdv_info_tooltip {
|
|
575
|
+
border: solid 2px #737373;
|
|
576
|
+
border-top-width: 10px;
|
|
577
|
+
font-size: 0.85em;
|
|
578
|
+
padding: 4px 6px 4px 6px;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
/* FILTER CONTROL */
|
|
582
|
+
|
|
583
|
+
.wcdv_filter_control ul li .wcdv_field {
|
|
584
|
+
display: flex;
|
|
585
|
+
align-items: center;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.wcdv_filter_control ul li .wcdv_field > * {
|
|
589
|
+
flex: none;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.wcdv_filter_control ul li .wcdv_field .wcdv_field_name {
|
|
593
|
+
flex-grow: 0 !important;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.wcdv_filter_control ul li .wcdv_field > .wcdv_filter_control_filter_container {
|
|
597
|
+
margin-left: 1ex;
|
|
598
|
+
flex: 1 1 auto;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.wcdv_filter_control ul li .wcdv_field > .wcdv_filter_control_filter_container > div {
|
|
602
|
+
align-items: center;
|
|
603
|
+
display: flex;
|
|
604
|
+
white-space: nowrap;
|
|
605
|
+
padding-top: 2px;
|
|
606
|
+
padding-bottom: 2px;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
/* WARNING - MAY NEED TUNED IN THE FUTURE */
|
|
610
|
+
|
|
611
|
+
.wcdv_filter_control ul li .wcdv_field > .wcdv_filter_control_filter_container > div > input,
|
|
612
|
+
.wcdv_filter_control ul li .wcdv_field > .wcdv_filter_control_filter_container > div > div.SumoSelect {
|
|
613
|
+
flex: 1 1 auto;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
/*
|
|
617
|
+
* If we don't set this here, then floatThead will cover up the Sumo Select dropdown. The
|
|
618
|
+
* floatThead z-index is 1001.
|
|
619
|
+
*/
|
|
620
|
+
|
|
621
|
+
div.SumoSelect > div.optWrapper {
|
|
622
|
+
z-index: 1002;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.wcdv_filter_control_filter_container {
|
|
626
|
+
display: inline-block;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
/* AGGREGATE CONTROL */
|
|
630
|
+
|
|
631
|
+
ul.wcdv_aggregate_control_fieldlist {
|
|
632
|
+
padding-left: 0.5em;
|
|
633
|
+
list-style-type: none;
|
|
634
|
+
text-align: right;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
ul.wcdv_aggregate_control_fieldlist > li > label {
|
|
638
|
+
padding-right: 0.5em;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
/* OPERATIONS PALETTE */
|
|
642
|
+
|
|
643
|
+
div.wcdv_operations_category {
|
|
644
|
+
display: inline-block;
|
|
645
|
+
border: solid 1px #c7c7c7;
|
|
646
|
+
border-radius: 4px;
|
|
647
|
+
padding: 6px;
|
|
648
|
+
margin-top: 8px;
|
|
649
|
+
margin-left: 0.5em;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
div.wcdv_operations_category:first-child {
|
|
653
|
+
margin-left: 0;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
div.wcdv_operations_category > button.wcdv_operation {
|
|
657
|
+
margin-left: 0.5em;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
div.wcdv_operations_category > button.wcdv_operation:first-child {
|
|
661
|
+
margin-left: 0;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
button.wcdv_operation.no_label > svg.wcdv_icon {
|
|
665
|
+
margin-right: 0;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
/* ROW OPERATIONS */
|
|
669
|
+
|
|
670
|
+
div.wcdv_grid_table td.wcdv_row_operations {
|
|
671
|
+
text-align: left;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
div.wcdv_grid_table td.wcdv_row_operations > button.wcdv_operation {
|
|
676
|
+
margin-left: 0.25em;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
div.wcdv_grid_table td.wcdv_row_operations > button.wcdv_operation:first-child {
|
|
680
|
+
margin-left: 0;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
/* CELL OPERATIONS */
|
|
684
|
+
|
|
685
|
+
button.wcdv_operation[data-operation-type="cell"]:disabled:hover {
|
|
686
|
+
color: #80808080;
|
|
687
|
+
cursor: default;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
button.wcdv_operation[data-operation-type="cell"]:disabled > svg.wcdv_icon {
|
|
691
|
+
cursor: default;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
/******************************************************************************/
|
|
695
|
+
|
|
696
|
+
.wcdv_grid_table,
|
|
697
|
+
.wcdv_graph_render {
|
|
698
|
+
flex: 1 1 auto;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.wcdv_grid_table th {
|
|
702
|
+
white-space: nowrap;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.wcdv_grid_table .wcdv_group_col_spacer {
|
|
706
|
+
width: 18px;
|
|
707
|
+
min-width: 18px;
|
|
708
|
+
text-align: center;
|
|
709
|
+
/*padding-right: 0px;*/
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.wcdv_filter_icon {
|
|
713
|
+
cursor: pointer;
|
|
714
|
+
width: 1.5em;
|
|
715
|
+
padding: 0;
|
|
716
|
+
text-align: center;
|
|
717
|
+
margin: -.333em -0.26667em -.333em 0;
|
|
718
|
+
height: 1.86667em;
|
|
719
|
+
line-height: 1.86667em;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.wcdv_sort_icon {
|
|
723
|
+
cursor: pointer;
|
|
724
|
+
margin: -0.3333em 0 -0.3333em 0;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
/*
|
|
728
|
+
td.wcdv_group_col_spacer,
|
|
729
|
+
td.wcdv_group_value {
|
|
730
|
+
background-color: #EEE;
|
|
731
|
+
}
|
|
732
|
+
*/
|
|
733
|
+
|
|
734
|
+
/*
|
|
735
|
+
td.wcdv_group_value > span.wcdv_group_value {
|
|
736
|
+
font-weight: bold;
|
|
737
|
+
}
|
|
738
|
+
*/
|
|
739
|
+
|
|
740
|
+
tr.wcdv_grid_filterrow th.wcdv_grid_filtercol {
|
|
741
|
+
text-transform: none;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
/******************************************************************************/
|
|
745
|
+
|
|
746
|
+
.wcdv_drop_target_hover {
|
|
747
|
+
background-color: rgba(0, 149, 214, 0.11) !important;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.wcdv_drag_handle.ui-draggable {
|
|
751
|
+
cursor: pointer;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
.wcdv_drag_handle.ui-draggable-dragging {
|
|
755
|
+
visibility: visible;
|
|
756
|
+
border: solid 1px #888;
|
|
757
|
+
background-color: #EEE;
|
|
758
|
+
padding: 4px;
|
|
759
|
+
border-radius: 4px;
|
|
760
|
+
z-index: 1;
|
|
761
|
+
|
|
762
|
+
/*
|
|
763
|
+
* Without negative margin, the extra space in the span causes the table column sizes to be
|
|
764
|
+
* recalculated, making everything shift around when you start dragging. Feels like a hack.
|
|
765
|
+
* The exact number was determined by just playing around to find what works.
|
|
766
|
+
*/
|
|
767
|
+
|
|
768
|
+
margin: -10px;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.wcdv_control_vertical.ui-sortable.wcdv_sortable_sender {
|
|
772
|
+
min-height: 3ex;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.wcdv_sortable_helper {
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
/******************************************************************************/
|
|
779
|
+
|
|
780
|
+
.wcdvgrid_textLeft {
|
|
781
|
+
text-align: left;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.wcdvgrid_textRight {
|
|
785
|
+
text-align: right;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.wcdvgrid_textCenter {
|
|
789
|
+
text-align: center;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.wcdvgrid_textJustify {
|
|
793
|
+
text-align: justify;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.wcdv_centered {
|
|
797
|
+
margin-left: auto;
|
|
798
|
+
margin-right: auto;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.wcdv_nowrap {
|
|
802
|
+
white-space: nowrap !important;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
/******************************************************************************/
|
|
806
|
+
/* COLUMN RESIZING */
|
|
807
|
+
/******************************************************************************/
|
|
808
|
+
|
|
809
|
+
.wcdv_resizable_column {
|
|
810
|
+
position: relative;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.wcdv_column_resize_handle {
|
|
814
|
+
position: absolute;
|
|
815
|
+
right: 0;
|
|
816
|
+
top: 0;
|
|
817
|
+
bottom: 0;
|
|
818
|
+
width: 5px;
|
|
819
|
+
cursor: col-resize;
|
|
820
|
+
background-color: transparent;
|
|
821
|
+
z-index: 10;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.wcdv_column_resize_handle:hover {
|
|
825
|
+
background-color: #0095D6;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.wcdv_resizing {
|
|
829
|
+
cursor: col-resize !important;
|
|
830
|
+
user-select: none;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.wcdv_resizing * {
|
|
834
|
+
cursor: col-resize !important;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
/* Use table-layout: fixed for proper column width control */
|
|
838
|
+
.wcdv_grid_table table.wcdv-resizable-cols {
|
|
839
|
+
table-layout: fixed;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
/******************************************************************************/
|
|
843
|
+
/* COLUMN REORDERING */
|
|
844
|
+
/******************************************************************************/
|
|
845
|
+
|
|
846
|
+
.wcdv_reorderable_column {
|
|
847
|
+
cursor: grab;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.wcdv_reorderable_column:active {
|
|
851
|
+
cursor: grabbing;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.wcdv_column_dragging {
|
|
855
|
+
background-color: #E3F2FD !important;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.wcdv_column_drop_target {
|
|
859
|
+
background-color: #BBDEFB !important;
|
|
860
|
+
box-shadow: inset 0 0 0 2px #0095D6;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.wcdv_column_drop_indicator {
|
|
864
|
+
position: absolute;
|
|
865
|
+
width: 3px;
|
|
866
|
+
border-left: 3px dashed #4CAF50;
|
|
867
|
+
pointer-events: none;
|
|
868
|
+
z-index: 1000;
|
|
869
|
+
display: none;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
/******************************************************************************/
|
|
873
|
+
/* ROW MODE (CLIPPED vs WRAPPED) */
|
|
874
|
+
/******************************************************************************/
|
|
875
|
+
|
|
876
|
+
/* Wrapped mode (default) - cells can wrap to multiple lines */
|
|
877
|
+
.wcdv_grid_table.wcdv_row_mode_wrapped td {
|
|
878
|
+
white-space: normal;
|
|
879
|
+
word-wrap: break-word;
|
|
880
|
+
overflow-wrap: break-word;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
/* Clipped mode - single line cells with text truncated */
|
|
884
|
+
.wcdv_grid_table.wcdv_row_mode_clipped td {
|
|
885
|
+
white-space: nowrap;
|
|
886
|
+
overflow: hidden;
|
|
887
|
+
text-overflow: ellipsis;
|
|
888
|
+
max-width: 300px;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.wcdv_grid_table.wcdv_row_mode_clipped th {
|
|
892
|
+
white-space: nowrap;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
/* Allow overflow visible on headers for resize handles */
|
|
896
|
+
.wcdv_grid_table.wcdv_row_mode_clipped th.wcdv_resizable_column {
|
|
897
|
+
overflow: visible;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
/*
|
|
901
|
+
* The "show more rows" button, shown when using the "more" limit method.
|
|
902
|
+
*/
|
|
903
|
+
|
|
904
|
+
tr.wcdvgrid_more td {
|
|
905
|
+
background-color: #F6F6F9;
|
|
906
|
+
border-top: 3px double #808080;
|
|
907
|
+
font-weight: normal;
|
|
908
|
+
color: #646464;
|
|
909
|
+
font-size: .85em;
|
|
910
|
+
font-weight: normal;
|
|
911
|
+
padding-bottom: 3px;
|
|
912
|
+
padding-top: 3px;
|
|
913
|
+
text-transform: uppercase;
|
|
914
|
+
cursor: pointer;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
/*
|
|
918
|
+
* Pagination controls, shown below the table when the pagination feature is enabled.
|
|
919
|
+
*/
|
|
920
|
+
|
|
921
|
+
.wcdv_pagination {
|
|
922
|
+
display: flex;
|
|
923
|
+
justify-content: center;
|
|
924
|
+
align-items: center;
|
|
925
|
+
gap: 4px;
|
|
926
|
+
padding: 8px 0;
|
|
927
|
+
user-select: none;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.wcdv_pagination_btn {
|
|
931
|
+
min-width: 32px;
|
|
932
|
+
height: 32px;
|
|
933
|
+
padding: 0 8px;
|
|
934
|
+
border: 1px solid #CCCCCC;
|
|
935
|
+
border-radius: 4px;
|
|
936
|
+
background-color: #FFFFFF;
|
|
937
|
+
color: #333333;
|
|
938
|
+
font-size: 0.85em;
|
|
939
|
+
cursor: pointer;
|
|
940
|
+
line-height: 30px;
|
|
941
|
+
text-align: center;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.wcdv_pagination_btn:hover:not(:disabled) {
|
|
945
|
+
background-color: #E8E8E8;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.wcdv_pagination_btn:disabled {
|
|
949
|
+
cursor: default;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.wcdv_pagination_btn.wcdv_pagination_current {
|
|
953
|
+
background-color: #337AB7;
|
|
954
|
+
border-color: #337AB7;
|
|
955
|
+
color: #FFFFFF;
|
|
956
|
+
font-weight: bold;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.wcdv_pagination_ellipsis {
|
|
960
|
+
min-width: 24px;
|
|
961
|
+
text-align: center;
|
|
962
|
+
color: #999999;
|
|
963
|
+
font-size: 0.85em;
|
|
964
|
+
line-height: 32px;
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
/*
|
|
968
|
+
.wcdv_grid .tabletool .thead {
|
|
969
|
+
overflow: initial;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.wcdv_grid .tabletool .outer.thead {
|
|
973
|
+
overflow: initial;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.wcdv_grid .tabletool.ttsticky .outer.thead .inner {
|
|
977
|
+
overflow: initial;
|
|
978
|
+
}
|
|
979
|
+
*/
|
|
980
|
+
|
|
981
|
+
.ui-progressbar.wcdvgrid_progressbar {
|
|
982
|
+
height: 32px;
|
|
983
|
+
padding: 8px;
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
.ui-progressbar .ui-progressbar-value.wcdvgrid_progressbar {
|
|
987
|
+
background: #80A0C0;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.ui-resizable-helper {
|
|
991
|
+
border: solid 2px dotted;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
/*
|
|
995
|
+
* =============================================================================
|
|
996
|
+
* BASIC TABLE STYLES
|
|
997
|
+
* =============================================================================
|
|
998
|
+
*/
|
|
999
|
+
|
|
1000
|
+
.wcdv_grid_table table {
|
|
1001
|
+
/*
|
|
1002
|
+
* If we use border-collapse then the border of the sticky header <th> elements will scroll with
|
|
1003
|
+
* the table body, rather than being stuck with the <th> elements. Using border-spacing instead.
|
|
1004
|
+
*/
|
|
1005
|
+
/* border-collapse: collapse; */
|
|
1006
|
+
border-spacing: 0;
|
|
1007
|
+
background-color: #FFFFFF;
|
|
1008
|
+
font-size: 1em;
|
|
1009
|
+
width: 100%;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.wcdv_grid_table table th {
|
|
1013
|
+
background-color: #FFF;
|
|
1014
|
+
color: #737373;
|
|
1015
|
+
font-weight: normal;
|
|
1016
|
+
line-height: 16px;
|
|
1017
|
+
text-align: left;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.wcdv_grid_table table thead th {
|
|
1021
|
+
background-color: #737373;
|
|
1022
|
+
color: #FFF;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.wcdv_grid_table table thead th button.wcdv_icon_button > svg.wcdv_icon {
|
|
1026
|
+
color: #FFF;
|
|
1027
|
+
stroke-width: 2.5px;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
.wcdv_sort_column_active.wcdv_bg-primary{
|
|
1031
|
+
color: #FFF;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
/*
|
|
1035
|
+
.wcdv_grid_table table th.wcdv_sort_column_active {
|
|
1036
|
+
background-color: rgba(255, 152, 0, 0.2);
|
|
1037
|
+
}
|
|
1038
|
+
*/
|
|
1039
|
+
|
|
1040
|
+
.wcdv_grid_table table > thead > tr:first-child > th:first-child {
|
|
1041
|
+
border-bottom: none;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.wcdv_grid_table table > thead > tr > th {
|
|
1045
|
+
padding: 5px 4px;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.wcdv_grid_table table > thead > tr + tr > th{
|
|
1049
|
+
background-color: #f0f0f5;
|
|
1050
|
+
color: #000;
|
|
1051
|
+
border-bottom: 1px solid #000;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
/*
|
|
1055
|
+
.wcdv_grid_table table > thead > tr:last-child > th {
|
|
1056
|
+
border-bottom: none !important;
|
|
1057
|
+
}
|
|
1058
|
+
*/
|
|
1059
|
+
|
|
1060
|
+
.wcdv_grid_table table > tfoot {
|
|
1061
|
+
background-color: #F6F6F9;
|
|
1062
|
+
border-top: 3px double #808080;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.wcdv_grid_table table > tfoot > tr {
|
|
1066
|
+
border-bottom: solid 1px #c7c7c7;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.wcdv_grid_table table > tfoot > tr:last-child {
|
|
1070
|
+
border-bottom: none;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.wcdv_grid_table table > tbody > tr.even {
|
|
1074
|
+
/* blue: background-color: #e3f2fd; */
|
|
1075
|
+
background-color: #e8f5e9;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
.wcdv_grid_table table.zebra > tbody > tr.odd {
|
|
1079
|
+
background-color: white;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.wcdv_grid_table table td.wcdv_selected_row {
|
|
1083
|
+
background-color: rgba(255, 235, 59, .4);
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
.wcdv_grid_table table td.wcdv_focus {
|
|
1087
|
+
background-color: rgba(76, 175, 80, .3);
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
/*
|
|
1091
|
+
.wcdv_grid_table table > tbody > tr:first-child > td,
|
|
1092
|
+
.wcdv_grid_table table > tbody > tr:first-child > th {
|
|
1093
|
+
padding-top: 4px;
|
|
1094
|
+
}
|
|
1095
|
+
*/
|
|
1096
|
+
|
|
1097
|
+
.wcdv_grid_table table td,
|
|
1098
|
+
.wcdv_grid_table table th {
|
|
1099
|
+
padding: 4px;
|
|
1100
|
+
vertical-align: top;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
.wcdv_grid_table table .wcdv_divider {
|
|
1104
|
+
border-left: solid 1px #c7c7c7;
|
|
1105
|
+
padding-left: 4px !important;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.wcdv_grid_table table .wcdv_pivot_colval_boundary {
|
|
1109
|
+
border-left: solid 1px #c7c7c7;
|
|
1110
|
+
padding-left: 4px !important;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
.wcdv_grid_table table .wcdv_pivot_colval_boundary:first-child{
|
|
1114
|
+
border-left: none;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
.wcdv_grid_table table .wcdv_pivot_colval_boundary ~ td {
|
|
1118
|
+
padding-left: 16px;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.wcdv_grid_table table .wcdv_pivot_aggregate_boundary {
|
|
1122
|
+
border-left: double #c7c7c7;
|
|
1123
|
+
padding-left: 4px !important;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
.wcdv_grid_table table .wcdv_gridtable_agg_pivot td,
|
|
1127
|
+
.wcdv_grid_table table .wcdv_gridtable_agg_pivot th {
|
|
1128
|
+
border-top: double #c7c7c7;
|
|
1129
|
+
padding-top: 4px;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.wcdv_heading_container{
|
|
1133
|
+
display: flex;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.wcdv_heading_container .wcdv_heading_title{
|
|
1137
|
+
flex-grow: 1;
|
|
1138
|
+
margin-right: 25px;
|
|
1139
|
+
line-height: 18px;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.wcdv_heading_container div{
|
|
1143
|
+
display: inline-block;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.wcdv_grid_table table .wcdv_bld {
|
|
1147
|
+
border-left: double #c7c7c7;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
.wcdv_grid_table table .wcdv_brd {
|
|
1151
|
+
border-right: double #c7c7c7;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
.wcdv_grid_table table .wcdv_btd {
|
|
1155
|
+
border-top: double #c7c7c7;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.wcdv_graph_message {
|
|
1159
|
+
font-size: 30px;
|
|
1160
|
+
font-weight: bold;
|
|
1161
|
+
color: #C0C0C0;
|
|
1162
|
+
text-align: center;
|
|
1163
|
+
position: relative;
|
|
1164
|
+
padding: 10px 0;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
/*
|
|
1168
|
+
* ROW SELECTION CELLS
|
|
1169
|
+
*/
|
|
1170
|
+
|
|
1171
|
+
.wcdv-row-select-col {
|
|
1172
|
+
width: 1em;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
/*
|
|
1176
|
+
* CELLS YOU CAN "DRILL DOWN" INTO
|
|
1177
|
+
*/
|
|
1178
|
+
|
|
1179
|
+
.wcdv_grid_table table td.wcdv_drill_down {
|
|
1180
|
+
cursor: zoom-in;
|
|
1181
|
+
}
|
|
1182
|
+
.wcdv_grid_table table td.wcdv_drill_down:active {
|
|
1183
|
+
background-color: #fff9c4;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
.wcdv_maxheight_wrapper {
|
|
1187
|
+
position: relative;
|
|
1188
|
+
overflow: hidden;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.wcdv_maxheight_wrapper_withwidth {
|
|
1192
|
+
text-overflow: ellipsis;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
/*
|
|
1196
|
+
* EMPTY CELL
|
|
1197
|
+
*/
|
|
1198
|
+
|
|
1199
|
+
html:not(.ie11) .wcdv_grid_table table td.wcdv_cell_empty,
|
|
1200
|
+
html:not(.ie11) .wcdv_grid_table table th.wcdv_cell_empty {
|
|
1201
|
+
position: relative;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
html:not(.ie11) .wcdv_grid_table table td.wcdv_cell_empty div,
|
|
1205
|
+
html:not(.ie11) .wcdv_grid_table table th.wcdv_cell_empty div {
|
|
1206
|
+
position: absolute;
|
|
1207
|
+
top: 0px;
|
|
1208
|
+
left: 0px;
|
|
1209
|
+
right: 0px;
|
|
1210
|
+
bottom: 0px;
|
|
1211
|
+
margin: 4px;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.wcdv_grid_table table td.wcdv_cell_empty div,
|
|
1215
|
+
.wcdv_grid_table table th.wcdv_cell_empty div {
|
|
1216
|
+
background: repeating-linear-gradient(-45deg, rgba(127, 127, 127, 0.5), rgba(127, 127, 127, 0.5) 8px, rgba(0, 0, 0, 0) 8px, rgba(0, 0, 0, 0) 16px);
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
/*
|
|
1220
|
+
* Icon Tweaks
|
|
1221
|
+
*/
|
|
1222
|
+
|
|
1223
|
+
.wcdv_grid svg.wcdv_icon, .wcdv_graph svg.wcdv_icon {
|
|
1224
|
+
width: 18px;
|
|
1225
|
+
height: 18px;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.wcdv_grid th svg.wcdv_icon {
|
|
1229
|
+
width: 15px;
|
|
1230
|
+
height: 15px;
|
|
1231
|
+
opacity: 0.8;
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
.wcdv_grid th svg.wcdv_icon:hover {
|
|
1235
|
+
opacity: 1;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
/*
|
|
1239
|
+
* Various Overrides
|
|
1240
|
+
*/
|
|
1241
|
+
|
|
1242
|
+
.wcdv_grid select{
|
|
1243
|
+
padding: 2px;
|
|
1244
|
+
border-color: #c7c7c7;
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
.wcdv_grid select + svg.wcdv_icon {
|
|
1248
|
+
vertical-align: middle;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
/*
|
|
1252
|
+
* Main Theme Colors
|
|
1253
|
+
*/
|
|
1254
|
+
|
|
1255
|
+
.wcdv_bg-primary{
|
|
1256
|
+
background-color: #0095D6 !important;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
.wcdv_text-primary{
|
|
1260
|
+
color: #0095D6;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
.wcdv_border-primary{
|
|
1264
|
+
border-color: #0095D6 !important;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
.wcdv_grid_table table > tbody > tr.even{
|
|
1268
|
+
background-color: #f0f0f5;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
.wcdv_grid_table table td.wcdv_selected_row{
|
|
1272
|
+
background-color: #0095d642;
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
.SumoSelect .select-all.selected>span i, .SumoSelect>.optWrapper.multiple>.options li.opt.selected span i{
|
|
1276
|
+
background-color: #0095D6;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
.SumoSelect .select-all.partial>span i{
|
|
1280
|
+
background-color: #c7c7c77a;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
/*
|
|
1284
|
+
* GRID COLUMN CONFIGURATION WINDOW
|
|
1285
|
+
*/
|
|
1286
|
+
|
|
1287
|
+
.wcdv_colconfigwin_table {
|
|
1288
|
+
width: 100%;
|
|
1289
|
+
border-collapse: collapse;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.wcdv_colconfigwin_table tr {
|
|
1293
|
+
background-color: white;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.wcdv_colconfigwin_table thead tr th {
|
|
1297
|
+
text-align: left;
|
|
1298
|
+
color: #808080;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.wcdv_colconfigwin_table tbody tr td:first-child,
|
|
1302
|
+
.wcdv_colconfigwin_table thead tr th:first-child {
|
|
1303
|
+
padding-left: 0.5em;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.wcdv_colconfigwin_table tbody tr td,
|
|
1307
|
+
.wcdv_colconfigwin_table thead tr th {
|
|
1308
|
+
padding-top: 0.5ex;
|
|
1309
|
+
padding-bottom: 0.5ex;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
.wcdv_colconfigwin_table tbody tr td:last-child,
|
|
1313
|
+
.wcdv_colconfigwin_table thead tr th:last-child {
|
|
1314
|
+
padding-right: 0.5em;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.wcdv_colconfigwin_table tbody tr:hover {
|
|
1318
|
+
background-color: #E0F2F1;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
#wcdv_debugwin dt {
|
|
1322
|
+
font-weight: bold;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
#wcdv_debugwin dt::after {
|
|
1326
|
+
content: ":";
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
#wcdv_debugwin dd {
|
|
1330
|
+
margin-inline-start: 1.5em;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
#wcdv_debugwin .json-formatter-row {
|
|
1334
|
+
font-family: unset;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.wcdv_minimal_width {
|
|
1338
|
+
width: 1px;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.wcdv_width_1em {
|
|
1342
|
+
text-align: center;
|
|
1343
|
+
width: 1em;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
div.wcdv_button_bar {
|
|
1347
|
+
text-align: right;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
div.wcdv_button_bar button {
|
|
1351
|
+
margin-left: 0.5em;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
div.wcdv_button_bar button:first-child {
|
|
1355
|
+
margin-left: 0em;
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
div.wcdv_button_bar button > svg.wcdv_icon {
|
|
1359
|
+
width: 1.15em;
|
|
1360
|
+
height: 1.15em;
|
|
1361
|
+
padding-right: 3px;
|
|
1362
|
+
vertical-align: middle;
|
|
1363
|
+
stroke-width: 2.5px;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
div.wcdv_button_bar button[disabled=disabled] > svg.wcdv_icon {
|
|
1367
|
+
color: #c7c7c77a;
|
|
1368
|
+
cursor: not-allowed;
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
div.wcdv_button_bar button[data-role="ok"] > svg.wcdv_icon {
|
|
1372
|
+
color: #2e7d32;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
div.wcdv_button_bar button[data-role="cancel"] > svg.wcdv_icon {
|
|
1376
|
+
color: #c62828;
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
/*
|
|
1380
|
+
* GROUP FUNCTION WINDOW
|
|
1381
|
+
*/
|
|
1382
|
+
|
|
1383
|
+
h1.wcdv_groupfun_header {
|
|
1384
|
+
font-weight: normal;
|
|
1385
|
+
font-size: inherit;
|
|
1386
|
+
padding-left: 0.5em;
|
|
1387
|
+
padding-right: 0.5em;
|
|
1388
|
+
padding-bottom: 0.5ex;
|
|
1389
|
+
margin: 0px;
|
|
1390
|
+
white-space: nowrap;
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
div.wcdv_groupfun_buttons {
|
|
1394
|
+
border-top: solid 1px black;
|
|
1395
|
+
padding: 0.5ex;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
button.wcdv_option {
|
|
1399
|
+
width: 100%;
|
|
1400
|
+
padding-top: 1ex;
|
|
1401
|
+
padding-bottom: 1ex;
|
|
1402
|
+
margin-top: 0.5ex;
|
|
1403
|
+
margin-bottom: 0.5ex;
|
|
1404
|
+
white-space: nowrap;
|
|
1405
|
+
text-align: left;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
/******************************************************************************/
|
|
1409
|
+
|
|
1410
|
+
.wcdv_group_value > .spinner,
|
|
1411
|
+
.wcdvgrid_more .spinner {
|
|
1412
|
+
display: inline-block;
|
|
1413
|
+
margin: auto 0.5em;
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
.wcdv_group_value > .spinner > div,
|
|
1417
|
+
.wcdvgrid_more .spinner > div {
|
|
1418
|
+
width: 10px;
|
|
1419
|
+
height: 10px;
|
|
1420
|
+
background-color: #737373;
|
|
1421
|
+
margin: auto 0.1em;
|
|
1422
|
+
|
|
1423
|
+
border-radius: 100%;
|
|
1424
|
+
display: inline-block;
|
|
1425
|
+
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
|
1426
|
+
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.wcdv_group_value > .spinner .bounce1,
|
|
1430
|
+
.wcdvgrid_more .spinner .bounce1 {
|
|
1431
|
+
-webkit-animation-delay: -0.32s;
|
|
1432
|
+
animation-delay: -0.32s;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
.wcdv_group_value > .spinner .bounce2,
|
|
1436
|
+
.wcdvgrid_more .spinner .bounce2 {
|
|
1437
|
+
-webkit-animation-delay: -0.16s;
|
|
1438
|
+
animation-delay: -0.16s;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
@-webkit-keyframes sk-bouncedelay {
|
|
1442
|
+
0%, 80%, 100% { -webkit-transform: scale(0) }
|
|
1443
|
+
40% { -webkit-transform: scale(1.0) }
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
@keyframes sk-bouncedelay {
|
|
1447
|
+
0%, 80%, 100% {
|
|
1448
|
+
-webkit-transform: scale(0);
|
|
1449
|
+
transform: scale(0);
|
|
1450
|
+
} 40% {
|
|
1451
|
+
-webkit-transform: scale(1.0);
|
|
1452
|
+
transform: scale(1.0);
|
|
1453
|
+
}
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
/* STICKY TABLE HEADER/FOOTER */
|
|
1457
|
+
|
|
1458
|
+
table thead.sticky,
|
|
1459
|
+
table tfoot.sticky {
|
|
1460
|
+
position: sticky;
|
|
1461
|
+
}
|
|
1462
|
+
table thead.sticky {
|
|
1463
|
+
inset-block-start: 0; /* "top" */
|
|
1464
|
+
/*
|
|
1465
|
+
* If we fail to do this, then the "expand" button in group details output will show through the
|
|
1466
|
+
* header cell in the same column.
|
|
1467
|
+
*/
|
|
1468
|
+
z-index: 1;
|
|
1469
|
+
}
|
|
1470
|
+
table tfoot.sticky {
|
|
1471
|
+
inset-block-end: 0; /* "bottom" */
|
|
1472
|
+
z-index: 1;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
/* ACTIVE ROW */
|
|
1476
|
+
|
|
1477
|
+
.wcdv_grid .wcdv_grid_table tbody tr.wcdv-active-row {
|
|
1478
|
+
background-color: #FFF9C4 !important; /* override zebra striping */
|
|
1479
|
+
box-shadow: inset 0 0 0 2px #FFEB3B;
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
/* SLIDER */
|
|
1483
|
+
|
|
1484
|
+
.wcdv-slider {
|
|
1485
|
+
position: fixed;
|
|
1486
|
+
top: 0;
|
|
1487
|
+
right: -400px;
|
|
1488
|
+
width: 400px;
|
|
1489
|
+
height: 100vh;
|
|
1490
|
+
background: white;
|
|
1491
|
+
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
|
|
1492
|
+
transition: right 0.3s ease;
|
|
1493
|
+
z-index: 1000;
|
|
1494
|
+
padding: 20px;
|
|
1495
|
+
box-sizing: border-box;
|
|
1496
|
+
overflow-y: auto;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
.wcdv-slider.show {
|
|
1500
|
+
right: 0;
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
.wcdv-slider-header {
|
|
1504
|
+
display: flex;
|
|
1505
|
+
justify-content: space-between;
|
|
1506
|
+
align-items: center;
|
|
1507
|
+
margin-bottom: 20px;
|
|
1508
|
+
border-bottom: 1px solid #ccc;
|
|
1509
|
+
padding-bottom: 10px;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
.wcdv-slider-header h1 {
|
|
1513
|
+
margin: 0px;
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
.wcdv-slider-close {
|
|
1517
|
+
background: none;
|
|
1518
|
+
border: none;
|
|
1519
|
+
font-size: 24px;
|
|
1520
|
+
cursor: pointer;
|
|
1521
|
+
color: #666;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
.wcdv-slider-close:hover {
|
|
1525
|
+
color: #000;
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
.wcdv-slider-body {
|
|
1529
|
+
margin: 0;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
.wcdv-slider-body dt {
|
|
1533
|
+
font-weight: bold;
|
|
1534
|
+
color: #0095D6;
|
|
1535
|
+
margin-top: 15px;
|
|
1536
|
+
margin-bottom: 5px;
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
.wcdv-slider-body dt:first-child {
|
|
1540
|
+
margin-top: 0;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
.wcdv-slider-body dd {
|
|
1544
|
+
margin: 0 0 10px 0;
|
|
1545
|
+
padding: 8px;
|
|
1546
|
+
background: #eee;
|
|
1547
|
+
border-radius: 4px;
|
|
1548
|
+
border-left: 3px solid #0095D6;
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
/* FOCUS */
|
|
1552
|
+
|
|
1553
|
+
.wcdv-focus {
|
|
1554
|
+
animation: wcdv-pulse 0.5s 2;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
@keyframes wcdv-pulse {
|
|
1558
|
+
0% {
|
|
1559
|
+
box-shadow: 0 0 4px 4px #0095D6FF;
|
|
1560
|
+
}
|
|
1561
|
+
100% {
|
|
1562
|
+
box-shadow: 0 0 4px 4px #0095D600;
|
|
1563
|
+
}
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
/* TOOLTIPS */
|
|
1567
|
+
|
|
1568
|
+
[data-tooltip] {
|
|
1569
|
+
position: relative;
|
|
1570
|
+
/*border-bottom: 1px dashed #000;*/
|
|
1571
|
+
cursor: help
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
[data-tooltip]::after {
|
|
1575
|
+
position: absolute;
|
|
1576
|
+
opacity: 0;
|
|
1577
|
+
pointer-events: none;
|
|
1578
|
+
content: attr(data-tooltip);
|
|
1579
|
+
left: 0;
|
|
1580
|
+
top: calc(100% + 10px);
|
|
1581
|
+
min-width: 20em;
|
|
1582
|
+
line-height: initial;
|
|
1583
|
+
border-radius: 4px;
|
|
1584
|
+
box-shadow: 0px 0px 8px 2px rgb(0 0 0 / 60%);
|
|
1585
|
+
background-color: white;
|
|
1586
|
+
z-index: 10;
|
|
1587
|
+
padding: 6px;
|
|
1588
|
+
color: black;
|
|
1589
|
+
text-align: left;
|
|
1590
|
+
border-left: solid 6px #0095D6;
|
|
1591
|
+
transform: translateY(-20px);
|
|
1592
|
+
transition: all 150ms cubic-bezier(.25, .8, .25, 1);
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
[data-tooltip]:hover::after {
|
|
1596
|
+
opacity: 1;
|
|
1597
|
+
transform: translateY(0);
|
|
1598
|
+
transition-duration: 300ms;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
/* vim:set noet sw=4 ts=4: */
|