ontotext-yasgui-web-component 0.0.1

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.
Files changed (64) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +72 -0
  3. package/dist/cjs/index-c487dc05.js +1152 -0
  4. package/dist/cjs/index.cjs.js +2 -0
  5. package/dist/cjs/loader.cjs.js +21 -0
  6. package/dist/cjs/ontotext-yasgui-web-component.cjs.js +19 -0
  7. package/dist/cjs/ontotext-yasgui.cjs.entry.js +391 -0
  8. package/dist/collection/collection-manifest.json +12 -0
  9. package/dist/collection/components/ontotext-yasgui-web-component/ontotext-yasgui-web-component.css +2361 -0
  10. package/dist/collection/components/ontotext-yasgui-web-component/ontotext-yasgui-web-component.js +152 -0
  11. package/dist/collection/components/yasgui/yasgui-script.js +4 -0
  12. package/dist/collection/index.js +1 -0
  13. package/dist/collection/js/main.js +8 -0
  14. package/dist/collection/models/ontotext-yasgui.js +41 -0
  15. package/dist/collection/models/yasgui-configuration.js +11 -0
  16. package/dist/collection/pages/default-view/main.js +8 -0
  17. package/dist/collection/pages/view-configurations/main.js +31 -0
  18. package/dist/collection/pages/view-modes/main.js +18 -0
  19. package/dist/collection/services/yasgui/configuration/configurator.js +1 -0
  20. package/dist/collection/services/yasgui/configuration/yasgui-configuration-builder.js +28 -0
  21. package/dist/collection/services/yasgui/configuration/yasgui-configurator.js +45 -0
  22. package/dist/collection/services/yasgui/configuration/yasqe-configurator.js +17 -0
  23. package/dist/collection/services/yasgui/configuration/yasr-configurator.js +12 -0
  24. package/dist/collection/services/yasgui/yasgui-builder.js +26 -0
  25. package/dist/components/index.d.ts +22 -0
  26. package/dist/components/index.js +2 -0
  27. package/dist/components/ontotext-yasgui.d.ts +11 -0
  28. package/dist/components/ontotext-yasgui.js +407 -0
  29. package/dist/esm/index-5e3f8118.js +1124 -0
  30. package/dist/esm/index.js +1 -0
  31. package/dist/esm/loader.js +17 -0
  32. package/dist/esm/ontotext-yasgui-web-component.js +17 -0
  33. package/dist/esm/ontotext-yasgui.entry.js +387 -0
  34. package/dist/esm/polyfills/core-js.js +11 -0
  35. package/dist/esm/polyfills/css-shim.js +1 -0
  36. package/dist/esm/polyfills/dom.js +79 -0
  37. package/dist/esm/polyfills/es5-html-element.js +1 -0
  38. package/dist/esm/polyfills/index.js +34 -0
  39. package/dist/esm/polyfills/system.js +6 -0
  40. package/dist/index.cjs.js +1 -0
  41. package/dist/index.js +1 -0
  42. package/dist/ontotext-yasgui-web-component/index.esm.js +0 -0
  43. package/dist/ontotext-yasgui-web-component/ontotext-yasgui-web-component.esm.js +1 -0
  44. package/dist/ontotext-yasgui-web-component/p-498af5d3.js +2 -0
  45. package/dist/ontotext-yasgui-web-component/p-88daf135.entry.js +2 -0
  46. package/dist/types/components/ontotext-yasgui-web-component/ontotext-yasgui-web-component.d.ts +21 -0
  47. package/dist/types/components.d.ts +46 -0
  48. package/dist/types/index.d.ts +1 -0
  49. package/dist/types/models/ontotext-yasgui.d.ts +17 -0
  50. package/dist/types/models/yasgui-configuration.d.ts +40 -0
  51. package/dist/types/services/yasgui/configuration/configurator.d.ts +15 -0
  52. package/dist/types/services/yasgui/configuration/yasgui-configuration-builder.d.ts +18 -0
  53. package/dist/types/services/yasgui/configuration/yasgui-configurator.d.ts +14 -0
  54. package/dist/types/services/yasgui/configuration/yasqe-configurator.d.ts +8 -0
  55. package/dist/types/services/yasgui/configuration/yasr-configurator.d.ts +8 -0
  56. package/dist/types/services/yasgui/yasgui-builder.d.ts +20 -0
  57. package/dist/types/stencil-public-runtime.d.ts +1581 -0
  58. package/loader/cdn.js +3 -0
  59. package/loader/index.cjs.js +3 -0
  60. package/loader/index.d.ts +12 -0
  61. package/loader/index.es2017.js +3 -0
  62. package/loader/index.js +4 -0
  63. package/loader/package.json +11 -0
  64. package/package.json +41 -0
@@ -0,0 +1,2361 @@
1
+ @charset "UTF-8";
2
+ .yasr .yasr_btn {
3
+ border: none;
4
+ background: inherit;
5
+ }
6
+
7
+ .yasr .svgImg {
8
+ display: flex;
9
+ flex-direction: row;
10
+ }
11
+
12
+ .yasr .svgImg svg {
13
+ max-width: 100%;
14
+ max-height: 100%;
15
+ width: 15px;
16
+ height: 15px;
17
+ align-self: center;
18
+ }
19
+
20
+ .yasr .yasr_btn.yasr_external_ref_btn {
21
+ font-weight: 600;
22
+ -webkit-user-select: none;
23
+ -moz-user-select: none;
24
+ -ms-user-select: none;
25
+ user-select: none;
26
+ }
27
+
28
+ .yasr .yasr_btn.yasr_external_ref_btn:active, .yasr .yasr_btn.yasr_external_ref_btn:focus {
29
+ color: inherit;
30
+ -webkit-text-decoration-color: inherit;
31
+ text-decoration-color: inherit;
32
+ }
33
+
34
+ .yasr .yasr_btn.yasr_external_ref_btn .svgImg svg {
35
+ width: 18px;
36
+ height: 18px;
37
+ }
38
+
39
+ .yasr a {
40
+ color: #428bca;
41
+ text-decoration: none;
42
+ }
43
+
44
+ .yasr a:active, .yasr a:hover {
45
+ outline: 0;
46
+ color: #2a6496;
47
+ text-decoration: underline;
48
+ }
49
+
50
+ .yasr .yasr_btnGroup {
51
+ margin: 0;
52
+ padding: 0;
53
+ list-style: none;
54
+ display: flex;
55
+ overflow-x: auto;
56
+ overflow-y: hidden;
57
+ }
58
+
59
+ .yasr .yasr_btnGroup .plugin_icon {
60
+ height: 15px;
61
+ width: 15px;
62
+ margin-right: 5px;
63
+ text-align: center;
64
+ }
65
+
66
+ .yasr .yasr_btnGroup .yasr_btn {
67
+ border-bottom: 2px solid transparent;
68
+ padding-left: 6px;
69
+ padding-right: 6px;
70
+ margin-left: 6px;
71
+ margin-right: 6px;
72
+ }
73
+
74
+ .yasr .yasr_btnGroup .yasr_btn.selected {
75
+ border-bottom: 2px solid #337ab7;
76
+ }
77
+
78
+ @media (max-width: 768px) {
79
+ .yasr .yasr_btn span {
80
+ display: none;
81
+ }
82
+
83
+ .yasr .yasr_btn .plugin_icon {
84
+ margin-right: 0;
85
+ }
86
+ }
87
+ .yasr .yasr_header {
88
+ display: flex;
89
+ flex-wrap: wrap;
90
+ }
91
+
92
+ .yasr .yasr_fallback_info:not(:empty) {
93
+ margin-top: 5px;
94
+ border: 1px solid #d1d1d1;
95
+ padding: 0.5rem;
96
+ background: #f7f7f7;
97
+ }
98
+
99
+ .yasr .yasr_fallback_info:not(:empty) p {
100
+ margin: 0;
101
+ }
102
+
103
+ .yasr .yasr_help_variable {
104
+ background: #dff0ff;
105
+ color: #428bca;
106
+ }
107
+
108
+ .yasr .yasr_response_chip {
109
+ color: #505050;
110
+ background: #f5f5f5;
111
+ border-radius: 6px;
112
+ display: flex;
113
+ font-size: 11pt;
114
+ max-height: 16pt;
115
+ align-self: center;
116
+ align-items: center;
117
+ justify-content: center;
118
+ white-space: nowrap;
119
+ padding: 6px;
120
+ margin-left: 5px;
121
+ overflow: visible;
122
+ box-sizing: border-box;
123
+ }
124
+
125
+ .yasr .yasr_response_chip.empty {
126
+ display: none;
127
+ }
128
+
129
+ .yasr .yasr_plugin_control {
130
+ display: flex;
131
+ margin-left: auto;
132
+ align-items: center;
133
+ }
134
+
135
+ .yasr .yasr_plugin_control:empty {
136
+ display: none;
137
+ }
138
+
139
+ .yasr .yasr_btn {
140
+ color: #505050;
141
+ fill: #505050;
142
+ display: flex;
143
+ align-items: center;
144
+ justify-content: center;
145
+ cursor: pointer;
146
+ white-space: nowrap;
147
+ padding: 6px 12px;
148
+ overflow: visible;
149
+ box-sizing: border-box;
150
+ }
151
+
152
+ .yasr .yasr_btn.btn_icon {
153
+ padding: 4px 8px;
154
+ }
155
+
156
+ .yasr .yasr_btn.disabled, .yasr .yasr_btn[disabled] {
157
+ cursor: default;
158
+ opacity: 0.5;
159
+ box-shadow: none;
160
+ }
161
+
162
+ .yasr .yasr_btn:not(.disabled):hover {
163
+ fill: #000;
164
+ color: #000;
165
+ }
166
+
167
+ .yasr .yasr_btn.selected, .yasr .yasr_btn:focus {
168
+ color: #337ab7;
169
+ fill: #337ab7;
170
+ }
171
+
172
+ .yasr .space_element {
173
+ flex-grow: 1;
174
+ min-width: 10px;
175
+ }
176
+
177
+ .yasr .tableControls {
178
+ display: flex;
179
+ align-items: center;
180
+ padding: 0 5px 0 0;
181
+ flex-wrap: wrap;
182
+ }
183
+
184
+ .yasr .tableControls .tableFilter {
185
+ margin-right: 10px;
186
+ height: 100%;
187
+ }
188
+
189
+ .yasr .tableControls .tableSizer {
190
+ height: 100%;
191
+ }
192
+
193
+ .yasr .tableControls .switch {
194
+ display: flex;
195
+ align-items: center;
196
+ margin-right: 10px;
197
+ }
198
+
199
+ .yasr .dataTable.ellipseTable {
200
+ white-space: nowrap;
201
+ }
202
+
203
+ .yasr .dataTable.ellipseTable div:not(.expanded) {
204
+ overflow: hidden;
205
+ text-overflow: ellipsis;
206
+ }
207
+
208
+ .yasr .dataTable:not(.ellipseTable) div:not(.expanded), .yasr .expanded {
209
+ word-break: break-all;
210
+ }
211
+
212
+ .yasr .expanded {
213
+ white-space: normal;
214
+ }
215
+
216
+ .yasr .expandable:not(.expanded) {
217
+ cursor: pointer;
218
+ }
219
+
220
+ .yasr .expandable:not(.expanded) a {
221
+ pointer-events: none;
222
+ }
223
+
224
+ .yasr .dataTables_wrapper {
225
+ font-size: 0.9em;
226
+ min-width: 100%;
227
+ }
228
+
229
+ .yasr .dataTables_wrapper .grip-container {
230
+ max-width: 100%;
231
+ }
232
+
233
+ .yasr .dataTables_wrapper .grip-padding > tbody > tr > td, .yasr .dataTables_wrapper .grip-padding > tbody > tr > th {
234
+ padding-left: 7px !important;
235
+ padding-right: 5px !important;
236
+ }
237
+
238
+ .yasr .dataTables_wrapper .dataTable {
239
+ min-width: 100%;
240
+ box-sizing: border-box;
241
+ }
242
+
243
+ .yasr .dataTables_wrapper .dataTable.no-footer {
244
+ border-bottom: none;
245
+ }
246
+
247
+ .yasr .dataTables_wrapper .dataTable thead .sorting {
248
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7XQMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC");
249
+ }
250
+
251
+ .yasr .dataTables_wrapper .dataTable thead .sorting_asc {
252
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZ0lEQVQ4y2NgGLKgquEuFxBPAGI2ahhWCsS/gDibUoO0gPgxEP8H4ttArEyuQYxAPBdqEAxPBImTY5gjEL9DM+wTENuQahAvEO9DMwiGdwAxOymGJQLxTyD+jgWDxCMZRsEoGAVoAADeemwtPcZI2wAAAABJRU5ErkJggg==");
253
+ }
254
+
255
+ .yasr .dataTables_wrapper .dataTable thead .sorting_desc {
256
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZUlEQVQ4y2NgGAWjYBSggaqGu5FA/BOIv2PBIPFEUgxjB+IdQPwfC94HxLykus4GiD+hGfQOiB3J8SojEE9EM2wuSJzcsFMG4ttQgx4DsRalkZENxL+AuJQaMcsGxBOAmGvopk8AVz1sLZgg0bsAAAAASUVORK5CYII=");
257
+ }
258
+
259
+ .yasr .dataTables_wrapper .dataTable thead .sorting_asc_disabled {
260
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAW0lEQVQoz2NgoCm4w3Vnwh02wspK7/y6k01Ikdadx3f+37l9RxmfIsY7c4GKQHDiHUbcyhzvvIMq+3THBpci3jv7oIpAcMcdduzKEu/8vPMdDn/eiWQYBYMKAAC3ykIEuYQJUgAAAABJRU5ErkJggg==");
261
+ }
262
+
263
+ .yasr .dataTables_wrapper .dataTable thead .sorting_desc_disabled {
264
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAWUlEQVQoz2NgGAWDCtyJvPPzznc4/HknEbsy9js77vyHw313eHGZZ3PnE1TRuzuOuK1lvDMRqmzuHUZ87lO+cxuo6PEdLUIeyb7z604pYf+y3Zlwh4u2YQoAc7ZCBHH4jigAAAAASUVORK5CYII=");
265
+ }
266
+
267
+ .yasr .dataTables_wrapper .dataTable tbody tr:hover {
268
+ background-color: #f9f9f9;
269
+ }
270
+
271
+ .yasr .dataTables_wrapper .dataTable thead tr th {
272
+ -webkit-user-select: none;
273
+ -moz-user-select: none;
274
+ -ms-user-select: none;
275
+ user-select: none;
276
+ font-weight: 700;
277
+ text-align: start;
278
+ overflow: hidden;
279
+ text-overflow: ellipsis;
280
+ border: none;
281
+ padding: 5px 5px 5px 7px;
282
+ min-width: 28px;
283
+ }
284
+
285
+ .yasr .dataTables_wrapper .dataTable thead tr th.sorting {
286
+ min-width: 10px;
287
+ padding-right: 18px;
288
+ }
289
+
290
+ .yasr .dataTables_wrapper .dataTable thead tr th:hover {
291
+ background-color: #f9f9f9;
292
+ }
293
+
294
+ .yasr .dataTables_wrapper .dataTable td {
295
+ padding: 5px;
296
+ }
297
+
298
+ .yasr .dataTables_wrapper .dataTable td > div {
299
+ -webkit-hyphens: auto;
300
+ -ms-hyphens: auto;
301
+ hyphens: auto;
302
+ }
303
+
304
+ .yasr .dataTables_wrapper .dataTable td > div.rowNumber {
305
+ word-break: keep-all;
306
+ overflow: visible;
307
+ }
308
+
309
+ .yasr .dataTables_wrapper .dataTable td .tableEllipse {
310
+ cursor: pointer;
311
+ font-weight: 700;
312
+ padding: 0 2px;
313
+ background-color: rgba(66, 139, 202, 0.2);
314
+ border-radius: 2px;
315
+ margin: 0 3px;
316
+ }
317
+
318
+ .yasr .dataTables_wrapper div.dataTables_paginate.paging_simple_numbers a.paginate_button {
319
+ border: none;
320
+ background: transparent;
321
+ }
322
+
323
+ .yasr .dataTables_wrapper div.dataTables_paginate.paging_simple_numbers a.paginate_button .disabled {
324
+ color: #505050;
325
+ }
326
+
327
+ .yasr .dataTables_wrapper div.dataTables_paginate.paging_simple_numbers a.paginate_button.current {
328
+ border: none;
329
+ background: transparent;
330
+ text-decoration: underline !important;
331
+ }
332
+
333
+ .yasr .dataTables_wrapper div.dataTables_paginate.paging_simple_numbers a.paginate_button:hover {
334
+ border: none;
335
+ background: transparent;
336
+ }
337
+
338
+ .yasr .dataTables_wrapper div.dataTables_paginate.paging_simple_numbers a.paginate_button:hover:not(.disabled) {
339
+ color: #000 !important;
340
+ }
341
+
342
+ .yasr .dataTables_wrapper div.dataTables_paginate.paging_simple_numbers a.paginate_button:active {
343
+ box-shadow: none;
344
+ }
345
+
346
+ table.dataTable {
347
+ width: 100%;
348
+ margin: 0 auto;
349
+ clear: both;
350
+ border-collapse: separate;
351
+ border-spacing: 0;
352
+ }
353
+
354
+ table.dataTable tfoot th, table.dataTable thead th {
355
+ font-weight: 700;
356
+ }
357
+
358
+ table.dataTable thead td, table.dataTable thead th {
359
+ padding: 10px 18px;
360
+ border-bottom: 1px solid #111;
361
+ }
362
+
363
+ table.dataTable thead td:active, table.dataTable thead th:active {
364
+ outline: none;
365
+ }
366
+
367
+ table.dataTable tfoot td, table.dataTable tfoot th {
368
+ padding: 10px 18px 6px;
369
+ border-top: 1px solid #111;
370
+ }
371
+
372
+ table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_desc_disabled {
373
+ cursor: pointer;
374
+ *cursor: hand;
375
+ background-repeat: no-repeat;
376
+ background-position: 100%;
377
+ }
378
+
379
+ table.dataTable tbody tr {
380
+ background-color: #fff;
381
+ }
382
+
383
+ table.dataTable tbody tr.selected {
384
+ background-color: #b0bed9;
385
+ }
386
+
387
+ table.dataTable tbody td, table.dataTable tbody th {
388
+ padding: 8px 10px;
389
+ }
390
+
391
+ table.dataTable.display tbody td, table.dataTable.display tbody th, table.dataTable.row-border tbody td, table.dataTable.row-border tbody th {
392
+ border-top: 1px solid #ddd;
393
+ }
394
+
395
+ table.dataTable.display tbody tr:first-child td, table.dataTable.display tbody tr:first-child th, table.dataTable.row-border tbody tr:first-child td, table.dataTable.row-border tbody tr:first-child th {
396
+ border-top: none;
397
+ }
398
+
399
+ table.dataTable.cell-border tbody td, table.dataTable.cell-border tbody th {
400
+ border-top: 1px solid #ddd;
401
+ border-right: 1px solid #ddd;
402
+ }
403
+
404
+ table.dataTable.cell-border tbody tr td:first-child, table.dataTable.cell-border tbody tr th:first-child {
405
+ border-left: 1px solid #ddd;
406
+ }
407
+
408
+ table.dataTable.cell-border tbody tr:first-child td, table.dataTable.cell-border tbody tr:first-child th {
409
+ border-top: none;
410
+ }
411
+
412
+ table.dataTable.display tbody tr.odd, table.dataTable.stripe tbody tr.odd {
413
+ background-color: #f9f9f9;
414
+ }
415
+
416
+ table.dataTable.display tbody tr.odd.selected, table.dataTable.stripe tbody tr.odd.selected {
417
+ background-color: #acbad4;
418
+ }
419
+
420
+ table.dataTable.display tbody tr:hover, table.dataTable.hover tbody tr:hover {
421
+ background-color: #f6f6f6;
422
+ }
423
+
424
+ table.dataTable.display tbody tr:hover.selected, table.dataTable.hover tbody tr:hover.selected {
425
+ background-color: #aab7d1;
426
+ }
427
+
428
+ table.dataTable.display tbody tr > .sorting_1, table.dataTable.display tbody tr > .sorting_2, table.dataTable.display tbody tr > .sorting_3, table.dataTable.order-column tbody tr > .sorting_1, table.dataTable.order-column tbody tr > .sorting_2, table.dataTable.order-column tbody tr > .sorting_3 {
429
+ background-color: #fafafa;
430
+ }
431
+
432
+ table.dataTable.display tbody tr.selected > .sorting_1, table.dataTable.display tbody tr.selected > .sorting_2, table.dataTable.display tbody tr.selected > .sorting_3, table.dataTable.order-column tbody tr.selected > .sorting_1, table.dataTable.order-column tbody tr.selected > .sorting_2, table.dataTable.order-column tbody tr.selected > .sorting_3 {
433
+ background-color: #acbad5;
434
+ }
435
+
436
+ table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
437
+ background-color: #f1f1f1;
438
+ }
439
+
440
+ table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
441
+ background-color: #f3f3f3;
442
+ }
443
+
444
+ table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
445
+ background-color: #f5f5f5;
446
+ }
447
+
448
+ table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
449
+ background-color: #a6b4cd;
450
+ }
451
+
452
+ table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
453
+ background-color: #a8b5cf;
454
+ }
455
+
456
+ table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
457
+ background-color: #a9b7d1;
458
+ }
459
+
460
+ table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
461
+ background-color: #fafafa;
462
+ }
463
+
464
+ table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
465
+ background-color: #fcfcfc;
466
+ }
467
+
468
+ table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
469
+ background-color: #fefefe;
470
+ }
471
+
472
+ table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
473
+ background-color: #acbad5;
474
+ }
475
+
476
+ table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
477
+ background-color: #aebcd6;
478
+ }
479
+
480
+ table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
481
+ background-color: #afbdd8;
482
+ }
483
+
484
+ table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
485
+ background-color: #eaeaea;
486
+ }
487
+
488
+ table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
489
+ background-color: #ececec;
490
+ }
491
+
492
+ table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
493
+ background-color: #efefef;
494
+ }
495
+
496
+ table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
497
+ background-color: #a2aec7;
498
+ }
499
+
500
+ table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
501
+ background-color: #a3b0c9;
502
+ }
503
+
504
+ table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
505
+ background-color: #a5b2cb;
506
+ }
507
+
508
+ table.dataTable.no-footer {
509
+ border-bottom: 1px solid #111;
510
+ }
511
+
512
+ table.dataTable.nowrap td, table.dataTable.nowrap th {
513
+ white-space: nowrap;
514
+ }
515
+
516
+ table.dataTable.compact thead td, table.dataTable.compact thead th {
517
+ padding: 4px 17px;
518
+ }
519
+
520
+ table.dataTable.compact tbody td, table.dataTable.compact tbody th, table.dataTable.compact tfoot td, table.dataTable.compact tfoot th {
521
+ padding: 4px;
522
+ }
523
+
524
+ table.dataTable td.dt-left, table.dataTable th.dt-left {
525
+ text-align: left;
526
+ }
527
+
528
+ table.dataTable td.dataTables_empty, table.dataTable td.dt-center, table.dataTable th.dt-center {
529
+ text-align: center;
530
+ }
531
+
532
+ table.dataTable td.dt-right, table.dataTable th.dt-right {
533
+ text-align: right;
534
+ }
535
+
536
+ table.dataTable td.dt-justify, table.dataTable th.dt-justify {
537
+ text-align: justify;
538
+ }
539
+
540
+ table.dataTable td.dt-nowrap, table.dataTable th.dt-nowrap {
541
+ white-space: nowrap;
542
+ }
543
+
544
+ table.dataTable tfoot td.dt-head-left, table.dataTable tfoot th.dt-head-left, table.dataTable thead td.dt-head-left, table.dataTable thead th.dt-head-left {
545
+ text-align: left;
546
+ }
547
+
548
+ table.dataTable tfoot td.dt-head-center, table.dataTable tfoot th.dt-head-center, table.dataTable thead td.dt-head-center, table.dataTable thead th.dt-head-center {
549
+ text-align: center;
550
+ }
551
+
552
+ table.dataTable tfoot td.dt-head-right, table.dataTable tfoot th.dt-head-right, table.dataTable thead td.dt-head-right, table.dataTable thead th.dt-head-right {
553
+ text-align: right;
554
+ }
555
+
556
+ table.dataTable tfoot td.dt-head-justify, table.dataTable tfoot th.dt-head-justify, table.dataTable thead td.dt-head-justify, table.dataTable thead th.dt-head-justify {
557
+ text-align: justify;
558
+ }
559
+
560
+ table.dataTable tfoot td.dt-head-nowrap, table.dataTable tfoot th.dt-head-nowrap, table.dataTable thead td.dt-head-nowrap, table.dataTable thead th.dt-head-nowrap {
561
+ white-space: nowrap;
562
+ }
563
+
564
+ table.dataTable tbody td.dt-body-left, table.dataTable tbody th.dt-body-left {
565
+ text-align: left;
566
+ }
567
+
568
+ table.dataTable tbody td.dt-body-center, table.dataTable tbody th.dt-body-center {
569
+ text-align: center;
570
+ }
571
+
572
+ table.dataTable tbody td.dt-body-right, table.dataTable tbody th.dt-body-right {
573
+ text-align: right;
574
+ }
575
+
576
+ table.dataTable tbody td.dt-body-justify, table.dataTable tbody th.dt-body-justify {
577
+ text-align: justify;
578
+ }
579
+
580
+ table.dataTable tbody td.dt-body-nowrap, table.dataTable tbody th.dt-body-nowrap {
581
+ white-space: nowrap;
582
+ }
583
+
584
+ table.dataTable, table.dataTable td, table.dataTable th {
585
+ box-sizing: content-box;
586
+ }
587
+
588
+ .dataTables_wrapper {
589
+ position: relative;
590
+ clear: both;
591
+ *zoom: 1;
592
+ zoom: 1;
593
+ }
594
+
595
+ .dataTables_wrapper .dataTables_length {
596
+ float: left;
597
+ }
598
+
599
+ .dataTables_wrapper .dataTables_length select {
600
+ border: 1px solid #aaa;
601
+ border-radius: 3px;
602
+ background-color: transparent;
603
+ padding: 4px;
604
+ }
605
+
606
+ .dataTables_wrapper .dataTables_filter {
607
+ float: right;
608
+ text-align: right;
609
+ }
610
+
611
+ .dataTables_wrapper .dataTables_filter input {
612
+ border: 1px solid #aaa;
613
+ border-radius: 3px;
614
+ padding: 5px;
615
+ background-color: transparent;
616
+ margin-left: 3px;
617
+ }
618
+
619
+ .dataTables_wrapper .dataTables_info {
620
+ clear: both;
621
+ float: left;
622
+ padding-top: 0.755em;
623
+ }
624
+
625
+ .dataTables_wrapper .dataTables_paginate {
626
+ float: right;
627
+ text-align: right;
628
+ padding-top: 0.25em;
629
+ }
630
+
631
+ .dataTables_wrapper .dataTables_paginate .paginate_button {
632
+ box-sizing: border-box;
633
+ display: inline-block;
634
+ min-width: 1.5em;
635
+ padding: 0.5em 1em;
636
+ margin-left: 2px;
637
+ text-align: center;
638
+ text-decoration: none !important;
639
+ cursor: pointer;
640
+ *cursor: hand;
641
+ color: #333 !important;
642
+ border: 1px solid transparent;
643
+ border-radius: 2px;
644
+ }
645
+
646
+ .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
647
+ color: #333 !important;
648
+ border: 1px solid #979797;
649
+ background-color: #fff;
650
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(100%, #dcdcdc));
651
+ background: -webkit-linear-gradient(top, #fff, #dcdcdc);
652
+ background: -moz-linear-gradient(top, #fff 0, #dcdcdc 100%);
653
+ background: -ms-linear-gradient(top, #fff 0, #dcdcdc 100%);
654
+ background: -o-linear-gradient(top, #fff 0, #dcdcdc 100%);
655
+ background: linear-gradient(180deg, #fff 0, #dcdcdc);
656
+ }
657
+
658
+ .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
659
+ cursor: default;
660
+ color: #666 !important;
661
+ border: 1px solid transparent;
662
+ background: transparent;
663
+ box-shadow: none;
664
+ }
665
+
666
+ .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
667
+ color: #fff !important;
668
+ border: 1px solid #111;
669
+ background-color: #585858;
670
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #585858), color-stop(100%, #111));
671
+ background: -webkit-linear-gradient(top, #585858, #111);
672
+ background: -moz-linear-gradient(top, #585858 0, #111 100%);
673
+ background: -ms-linear-gradient(top, #585858 0, #111 100%);
674
+ background: -o-linear-gradient(top, #585858 0, #111 100%);
675
+ background: linear-gradient(180deg, #585858 0, #111);
676
+ }
677
+
678
+ .dataTables_wrapper .dataTables_paginate .paginate_button:active {
679
+ outline: none;
680
+ background-color: #2b2b2b;
681
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #2b2b2b), color-stop(100%, #0c0c0c));
682
+ background: -webkit-linear-gradient(top, #2b2b2b, #0c0c0c);
683
+ background: -moz-linear-gradient(top, #2b2b2b 0, #0c0c0c 100%);
684
+ background: -ms-linear-gradient(top, #2b2b2b 0, #0c0c0c 100%);
685
+ background: -o-linear-gradient(top, #2b2b2b 0, #0c0c0c 100%);
686
+ background: linear-gradient(180deg, #2b2b2b 0, #0c0c0c);
687
+ box-shadow: inset 0 0 3px #111;
688
+ }
689
+
690
+ .dataTables_wrapper .dataTables_paginate .ellipsis {
691
+ padding: 0 1em;
692
+ }
693
+
694
+ .dataTables_wrapper .dataTables_processing {
695
+ position: absolute;
696
+ top: 50%;
697
+ left: 50%;
698
+ width: 100%;
699
+ height: 40px;
700
+ margin-left: -50%;
701
+ margin-top: -25px;
702
+ padding-top: 20px;
703
+ text-align: center;
704
+ font-size: 1.2em;
705
+ background-color: #fff;
706
+ background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
707
+ background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0));
708
+ background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
709
+ background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
710
+ background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
711
+ background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0));
712
+ }
713
+
714
+ .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_paginate, .dataTables_wrapper .dataTables_processing {
715
+ color: #333;
716
+ }
717
+
718
+ .dataTables_wrapper .dataTables_scroll {
719
+ clear: both;
720
+ }
721
+
722
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
723
+ *margin-top: -1px;
724
+ -webkit-overflow-scrolling: touch;
725
+ }
726
+
727
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th {
728
+ vertical-align: middle;
729
+ }
730
+
731
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing {
732
+ height: 0;
733
+ overflow: hidden;
734
+ margin: 0 !important;
735
+ padding: 0 !important;
736
+ }
737
+
738
+ .dataTables_wrapper.no-footer .dataTables_scrollBody {
739
+ border-bottom: 1px solid #111;
740
+ }
741
+
742
+ .dataTables_wrapper.no-footer div.dataTables_scrollBody > table, .dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable {
743
+ border-bottom: none;
744
+ }
745
+
746
+ .dataTables_wrapper:after {
747
+ visibility: hidden;
748
+ display: block;
749
+ content: "";
750
+ clear: both;
751
+ height: 0;
752
+ }
753
+
754
+ @media screen and (max-width: 767px) {
755
+ .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_paginate {
756
+ float: none;
757
+ text-align: center;
758
+ }
759
+
760
+ .dataTables_wrapper .dataTables_paginate {
761
+ margin-top: 0.5em;
762
+ }
763
+ }
764
+ @media screen and (max-width: 640px) {
765
+ .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_length {
766
+ float: none;
767
+ text-align: center;
768
+ }
769
+
770
+ .dataTables_wrapper .dataTables_filter {
771
+ margin-top: 0.5em;
772
+ }
773
+ }
774
+ .yasr .booleanResult {
775
+ display: flex;
776
+ align-items: center;
777
+ justify-content: center;
778
+ }
779
+
780
+ .yasr .booleanResult svg {
781
+ margin-bottom: -10px;
782
+ margin-right: 7px;
783
+ }
784
+
785
+ .yasr .yasr_results {
786
+ position: relative;
787
+ }
788
+
789
+ .yasr .yasr_results .CodeMirror {
790
+ border: 1px solid #d1d1d1;
791
+ margin-top: 5px;
792
+ height: 100%;
793
+ }
794
+
795
+ .yasr .yasr_results .CodeMirror.overflow:before {
796
+ background: linear-gradient(transparent, rgba(255, 255, 255, 0.666667) 75%, #fff);
797
+ content: "";
798
+ width: 100%;
799
+ height: 100%;
800
+ z-index: 1200;
801
+ position: absolute;
802
+ pointer-events: none;
803
+ }
804
+
805
+ .yasr .yasr_results .overlay {
806
+ width: 100%;
807
+ position: absolute;
808
+ bottom: 0;
809
+ z-index: 1201;
810
+ display: flex;
811
+ pointer-events: none;
812
+ }
813
+
814
+ .yasr .yasr_results .overlay:after, .yasr .yasr_results .overlay:before {
815
+ content: "";
816
+ flex-grow: 1;
817
+ }
818
+
819
+ .yasr .yasr_results .overlay_content {
820
+ display: flex;
821
+ align-content: center;
822
+ justify-content: center;
823
+ align-items: center;
824
+ background: #fff;
825
+ pointer-events: all;
826
+ background: linear-gradient(90deg, transparent, #fff 5%, #fff 95%, transparent);
827
+ }
828
+
829
+ .yasr .yasr_results .yasr_btn.overlay_btn {
830
+ border: 1px solid #337ab7;
831
+ background: #fff;
832
+ color: #337ab7;
833
+ padding: 10px;
834
+ margin: 10px;
835
+ }
836
+
837
+ .yasr .yasr_results .yasr_btn.overlay_btn svg {
838
+ margin-left: 0.5rem;
839
+ fill: #337ab7;
840
+ color: #337ab7;
841
+ }
842
+
843
+ .yasr .yasr_results .yasr_btn.overlay_btn:hover {
844
+ color: #255681;
845
+ border-color: #337ab7;
846
+ fill: #255681;
847
+ }
848
+
849
+ .yasr .yasr_results .yasr_btn.overlay_btn:hover svg {
850
+ color: #255681;
851
+ fill: #255681;
852
+ }
853
+
854
+ .CodeMirror {
855
+ font-family: monospace;
856
+ height: 300px;
857
+ color: #000;
858
+ direction: ltr;
859
+ }
860
+
861
+ .CodeMirror-lines {
862
+ padding: 4px 0;
863
+ }
864
+
865
+ .CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like {
866
+ padding: 0 4px;
867
+ }
868
+
869
+ .CodeMirror-gutter-filler, .CodeMirror-scrollbar-filler {
870
+ background-color: #fff;
871
+ }
872
+
873
+ .CodeMirror-gutters {
874
+ border-right: 1px solid #ddd;
875
+ background-color: #f7f7f7;
876
+ white-space: nowrap;
877
+ }
878
+
879
+ .CodeMirror-linenumber {
880
+ padding: 0 3px 0 5px;
881
+ min-width: 20px;
882
+ text-align: right;
883
+ color: #999;
884
+ white-space: nowrap;
885
+ }
886
+
887
+ .CodeMirror-guttermarker {
888
+ color: #000;
889
+ }
890
+
891
+ .CodeMirror-guttermarker-subtle {
892
+ color: #999;
893
+ }
894
+
895
+ .CodeMirror-cursor {
896
+ border-left: 1px solid #000;
897
+ border-right: none;
898
+ width: 0;
899
+ }
900
+
901
+ .CodeMirror div.CodeMirror-secondarycursor {
902
+ border-left: 1px solid silver;
903
+ }
904
+
905
+ .cm-fat-cursor .CodeMirror-cursor {
906
+ width: auto;
907
+ border: 0 !important;
908
+ background: #7e7;
909
+ }
910
+
911
+ .cm-fat-cursor div.CodeMirror-cursors {
912
+ z-index: 1;
913
+ }
914
+
915
+ .cm-fat-cursor-mark {
916
+ background-color: rgba(20, 255, 20, 0.5);
917
+ }
918
+
919
+ .cm-animate-fat-cursor, .cm-fat-cursor-mark {
920
+ -webkit-animation: blink 1.06s steps(1) infinite;
921
+ -moz-animation: blink 1.06s steps(1) infinite;
922
+ animation: blink 1.06s steps(1) infinite;
923
+ }
924
+
925
+ .cm-animate-fat-cursor {
926
+ width: auto;
927
+ border: 0;
928
+ background-color: #7e7;
929
+ }
930
+
931
+ @-moz-keyframes blink {
932
+ 50% {
933
+ background-color: transparent;
934
+ }
935
+ }
936
+ @-webkit-keyframes blink {
937
+ 50% {
938
+ background-color: transparent;
939
+ }
940
+ }
941
+ @keyframes blink {
942
+ 50% {
943
+ background-color: transparent;
944
+ }
945
+ }
946
+ .cm-tab {
947
+ display: inline-block;
948
+ text-decoration: inherit;
949
+ }
950
+
951
+ .CodeMirror-rulers {
952
+ position: absolute;
953
+ left: 0;
954
+ right: 0;
955
+ top: -50px;
956
+ bottom: 0;
957
+ overflow: hidden;
958
+ }
959
+
960
+ .CodeMirror-ruler {
961
+ border-left: 1px solid #ccc;
962
+ top: 0;
963
+ bottom: 0;
964
+ position: absolute;
965
+ }
966
+
967
+ .cm-s-default .cm-header {
968
+ color: #00f;
969
+ }
970
+
971
+ .cm-s-default .cm-quote {
972
+ color: #090;
973
+ }
974
+
975
+ .cm-negative {
976
+ color: #d44;
977
+ }
978
+
979
+ .cm-positive {
980
+ color: #292;
981
+ }
982
+
983
+ .cm-header, .cm-strong {
984
+ font-weight: 700;
985
+ }
986
+
987
+ .cm-em {
988
+ font-style: italic;
989
+ }
990
+
991
+ .cm-link {
992
+ text-decoration: underline;
993
+ }
994
+
995
+ .cm-strikethrough {
996
+ text-decoration: line-through;
997
+ }
998
+
999
+ .cm-s-default .cm-keyword {
1000
+ color: #708;
1001
+ }
1002
+
1003
+ .cm-s-default .cm-atom {
1004
+ color: #219;
1005
+ }
1006
+
1007
+ .cm-s-default .cm-number {
1008
+ color: #164;
1009
+ }
1010
+
1011
+ .cm-s-default .cm-def {
1012
+ color: #00f;
1013
+ }
1014
+
1015
+ .cm-s-default .cm-variable-2 {
1016
+ color: #05a;
1017
+ }
1018
+
1019
+ .cm-s-default .cm-type, .cm-s-default .cm-variable-3 {
1020
+ color: #085;
1021
+ }
1022
+
1023
+ .cm-s-default .cm-comment {
1024
+ color: #a50;
1025
+ }
1026
+
1027
+ .cm-s-default .cm-string {
1028
+ color: #a11;
1029
+ }
1030
+
1031
+ .cm-s-default .cm-string-2 {
1032
+ color: #f50;
1033
+ }
1034
+
1035
+ .cm-s-default .cm-meta, .cm-s-default .cm-qualifier {
1036
+ color: #555;
1037
+ }
1038
+
1039
+ .cm-s-default .cm-builtin {
1040
+ color: #30a;
1041
+ }
1042
+
1043
+ .cm-s-default .cm-bracket {
1044
+ color: #997;
1045
+ }
1046
+
1047
+ .cm-s-default .cm-tag {
1048
+ color: #170;
1049
+ }
1050
+
1051
+ .cm-s-default .cm-attribute {
1052
+ color: #00c;
1053
+ }
1054
+
1055
+ .cm-s-default .cm-hr {
1056
+ color: #999;
1057
+ }
1058
+
1059
+ .cm-s-default .cm-link {
1060
+ color: #00c;
1061
+ }
1062
+
1063
+ .cm-invalidchar, .cm-s-default .cm-error {
1064
+ color: red;
1065
+ }
1066
+
1067
+ .CodeMirror-composing {
1068
+ border-bottom: 2px solid;
1069
+ }
1070
+
1071
+ div.CodeMirror span.CodeMirror-matchingbracket {
1072
+ color: #0b0;
1073
+ }
1074
+
1075
+ div.CodeMirror span.CodeMirror-nonmatchingbracket {
1076
+ color: #a22;
1077
+ }
1078
+
1079
+ .CodeMirror-matchingtag {
1080
+ background: rgba(255, 150, 0, 0.3);
1081
+ }
1082
+
1083
+ .CodeMirror-activeline-background {
1084
+ background: #e8f2ff;
1085
+ }
1086
+
1087
+ .CodeMirror {
1088
+ position: relative;
1089
+ overflow: hidden;
1090
+ background: #fff;
1091
+ }
1092
+
1093
+ .CodeMirror-scroll {
1094
+ overflow: scroll !important;
1095
+ margin-bottom: -50px;
1096
+ margin-right: -50px;
1097
+ padding-bottom: 50px;
1098
+ height: 100%;
1099
+ outline: none;
1100
+ position: relative;
1101
+ }
1102
+
1103
+ .CodeMirror-sizer {
1104
+ position: relative;
1105
+ border-right: 50px solid transparent;
1106
+ }
1107
+
1108
+ .CodeMirror-gutter-filler, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-vscrollbar {
1109
+ position: absolute;
1110
+ z-index: 6;
1111
+ display: none;
1112
+ }
1113
+
1114
+ .CodeMirror-vscrollbar {
1115
+ right: 0;
1116
+ top: 0;
1117
+ overflow-x: hidden;
1118
+ overflow-y: scroll;
1119
+ }
1120
+
1121
+ .CodeMirror-hscrollbar {
1122
+ bottom: 0;
1123
+ left: 0;
1124
+ overflow-y: hidden;
1125
+ overflow-x: scroll;
1126
+ }
1127
+
1128
+ .CodeMirror-scrollbar-filler {
1129
+ right: 0;
1130
+ bottom: 0;
1131
+ }
1132
+
1133
+ .CodeMirror-gutter-filler {
1134
+ left: 0;
1135
+ bottom: 0;
1136
+ }
1137
+
1138
+ .CodeMirror-gutters {
1139
+ position: absolute;
1140
+ left: 0;
1141
+ top: 0;
1142
+ min-height: 100%;
1143
+ z-index: 3;
1144
+ }
1145
+
1146
+ .CodeMirror-gutter {
1147
+ white-space: normal;
1148
+ height: 100%;
1149
+ display: inline-block;
1150
+ vertical-align: top;
1151
+ margin-bottom: -50px;
1152
+ }
1153
+
1154
+ .CodeMirror-gutter-wrapper {
1155
+ position: absolute;
1156
+ z-index: 4;
1157
+ background: none !important;
1158
+ border: none !important;
1159
+ }
1160
+
1161
+ .CodeMirror-gutter-background {
1162
+ position: absolute;
1163
+ top: 0;
1164
+ bottom: 0;
1165
+ z-index: 4;
1166
+ }
1167
+
1168
+ .CodeMirror-gutter-elt {
1169
+ position: absolute;
1170
+ cursor: default;
1171
+ z-index: 4;
1172
+ }
1173
+
1174
+ .CodeMirror-gutter-wrapper ::selection {
1175
+ background-color: transparent;
1176
+ }
1177
+
1178
+ .CodeMirror-gutter-wrapper ::-moz-selection {
1179
+ background-color: transparent;
1180
+ }
1181
+
1182
+ .CodeMirror-lines {
1183
+ cursor: text;
1184
+ min-height: 1px;
1185
+ }
1186
+
1187
+ .CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like {
1188
+ -moz-border-radius: 0;
1189
+ -webkit-border-radius: 0;
1190
+ border-radius: 0;
1191
+ border-width: 0;
1192
+ background: transparent;
1193
+ font-family: inherit;
1194
+ font-size: inherit;
1195
+ margin: 0;
1196
+ white-space: pre;
1197
+ word-wrap: normal;
1198
+ line-height: inherit;
1199
+ color: inherit;
1200
+ z-index: 2;
1201
+ position: relative;
1202
+ overflow: visible;
1203
+ -webkit-tap-highlight-color: transparent;
1204
+ -webkit-font-variant-ligatures: contextual;
1205
+ font-variant-ligatures: contextual;
1206
+ }
1207
+
1208
+ .CodeMirror-wrap pre.CodeMirror-line, .CodeMirror-wrap pre.CodeMirror-line-like {
1209
+ word-wrap: break-word;
1210
+ white-space: pre-wrap;
1211
+ word-break: normal;
1212
+ }
1213
+
1214
+ .CodeMirror-linebackground {
1215
+ position: absolute;
1216
+ left: 0;
1217
+ right: 0;
1218
+ top: 0;
1219
+ bottom: 0;
1220
+ z-index: 0;
1221
+ }
1222
+
1223
+ .CodeMirror-linewidget {
1224
+ position: relative;
1225
+ z-index: 2;
1226
+ padding: 0.1px;
1227
+ }
1228
+
1229
+ .CodeMirror-rtl pre {
1230
+ direction: rtl;
1231
+ }
1232
+
1233
+ .CodeMirror-code {
1234
+ outline: none;
1235
+ }
1236
+
1237
+ .CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber, .CodeMirror-scroll, .CodeMirror-sizer {
1238
+ -moz-box-sizing: content-box;
1239
+ box-sizing: content-box;
1240
+ }
1241
+
1242
+ .CodeMirror-measure {
1243
+ position: absolute;
1244
+ width: 100%;
1245
+ height: 0;
1246
+ overflow: hidden;
1247
+ visibility: hidden;
1248
+ }
1249
+
1250
+ .CodeMirror-cursor {
1251
+ position: absolute;
1252
+ pointer-events: none;
1253
+ }
1254
+
1255
+ .CodeMirror-measure pre {
1256
+ position: static;
1257
+ }
1258
+
1259
+ div.CodeMirror-cursors {
1260
+ visibility: hidden;
1261
+ position: relative;
1262
+ z-index: 3;
1263
+ }
1264
+
1265
+ .CodeMirror-focused div.CodeMirror-cursors, div.CodeMirror-dragcursors {
1266
+ visibility: visible;
1267
+ }
1268
+
1269
+ .CodeMirror-selected {
1270
+ background: #d9d9d9;
1271
+ }
1272
+
1273
+ .CodeMirror-focused .CodeMirror-selected {
1274
+ background: #d7d4f0;
1275
+ }
1276
+
1277
+ .CodeMirror-crosshair {
1278
+ cursor: crosshair;
1279
+ }
1280
+
1281
+ .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
1282
+ background: #d7d4f0;
1283
+ }
1284
+
1285
+ .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
1286
+ background: #d7d4f0;
1287
+ }
1288
+
1289
+ .cm-searching {
1290
+ background-color: #ffa;
1291
+ background-color: rgba(255, 255, 0, 0.4);
1292
+ }
1293
+
1294
+ .cm-force-border {
1295
+ padding-right: 0.1px;
1296
+ }
1297
+
1298
+ @media print {
1299
+ .CodeMirror div.CodeMirror-cursors {
1300
+ visibility: hidden;
1301
+ }
1302
+ }
1303
+ .cm-tab-wrap-hack:after {
1304
+ content: "";
1305
+ }
1306
+
1307
+ span.CodeMirror-selectedtext {
1308
+ background: none;
1309
+ }
1310
+
1311
+ .yasr .errorResult {
1312
+ padding: 10px;
1313
+ }
1314
+
1315
+ .yasr .errorResult .errorHeader {
1316
+ overflow: hidden;
1317
+ }
1318
+
1319
+ .yasr .errorResult .errorHeader .yasr_tryQuery {
1320
+ float: right;
1321
+ text-decoration: none;
1322
+ padding-top: 3px;
1323
+ padding-bottom: 3px;
1324
+ }
1325
+
1326
+ .yasr .errorResult .errorHeader span.status {
1327
+ display: inline-block;
1328
+ padding: 0.35em 0.5rem;
1329
+ font-size: 75%;
1330
+ font-weight: 600;
1331
+ line-height: 1.35;
1332
+ text-align: center;
1333
+ white-space: nowrap;
1334
+ vertical-align: baseline;
1335
+ border-radius: 0.25em;
1336
+ color: #fff;
1337
+ background-color: #dc3545;
1338
+ }
1339
+
1340
+ .yasr .errorResult .errorMessageContainer {
1341
+ display: flex;
1342
+ }
1343
+
1344
+ .yasr .errorResult .errorMessageContainer .errorMessage {
1345
+ flex-grow: 1;
1346
+ width: 0;
1347
+ min-width: 100px;
1348
+ overflow: auto;
1349
+ display: block;
1350
+ padding: 10px;
1351
+ margin: 10px 0;
1352
+ font-size: 13px;
1353
+ line-height: 1.42857;
1354
+ word-break: break-all;
1355
+ word-wrap: break-word;
1356
+ color: #333;
1357
+ background-color: #f5f5f5;
1358
+ border: 1px solid #ccc;
1359
+ border-radius: 4px;
1360
+ }
1361
+
1362
+ .yasr .errorResult .redOutline {
1363
+ color: #a94442;
1364
+ background-color: #f2dede;
1365
+ margin-top: 10px;
1366
+ padding: 5px 1em;
1367
+ border: 1px solid #ebccd1;
1368
+ border-radius: 4px;
1369
+ }
1370
+
1371
+ .yasqe .CodeMirror {
1372
+ min-height: 60px;
1373
+ }
1374
+
1375
+ .yasqe .svgImg {
1376
+ display: inline-block;
1377
+ }
1378
+
1379
+ .yasqe span.shortlinkErr {
1380
+ font-size: small;
1381
+ color: red;
1382
+ font-weight: 700;
1383
+ float: left;
1384
+ }
1385
+
1386
+ .yasqe .CodeMirror-hint {
1387
+ max-width: 30em;
1388
+ }
1389
+
1390
+ .yasqe .notificationContainer {
1391
+ width: 100%;
1392
+ display: flex;
1393
+ justify-content: center;
1394
+ position: absolute;
1395
+ bottom: 0;
1396
+ }
1397
+
1398
+ .yasqe .notification {
1399
+ z-index: 4;
1400
+ padding: 0 5px;
1401
+ max-height: 0;
1402
+ color: #999;
1403
+ background-color: #eee;
1404
+ font-size: 90%;
1405
+ text-align: center;
1406
+ transition: max-height 0.2s ease-in;
1407
+ border-top-right-radius: 2px;
1408
+ border-top-left-radius: 2px;
1409
+ }
1410
+
1411
+ .yasqe .notification.active {
1412
+ max-height: 3rem;
1413
+ }
1414
+
1415
+ .yasqe .parseErrorIcon {
1416
+ width: 13px;
1417
+ height: 13px;
1418
+ margin-top: 2px;
1419
+ margin-left: 2px;
1420
+ }
1421
+
1422
+ .yasqe .parseErrorIcon svg g {
1423
+ fill: red;
1424
+ }
1425
+
1426
+ .yasqe .yasqe_tooltip {
1427
+ background: #333;
1428
+ background: rgba(0, 0, 0, 0.8);
1429
+ border-radius: 5px;
1430
+ color: #fff;
1431
+ padding: 5px 15px;
1432
+ width: 220px;
1433
+ white-space: pre-wrap;
1434
+ white-space: normal;
1435
+ margin-top: 5px;
1436
+ }
1437
+
1438
+ .yasqe .notificationLoader {
1439
+ width: 18px;
1440
+ height: 18px;
1441
+ vertical-align: middle;
1442
+ }
1443
+
1444
+ .yasqe .resizeWrapper {
1445
+ width: 100%;
1446
+ height: 10px;
1447
+ display: flex;
1448
+ align-items: center;
1449
+ justify-content: center;
1450
+ cursor: row-resize;
1451
+ }
1452
+
1453
+ .yasqe .resizeChip {
1454
+ width: 20%;
1455
+ height: 4px;
1456
+ background-color: #d1d1d1;
1457
+ visibility: hidden;
1458
+ border-radius: 2px;
1459
+ }
1460
+
1461
+ .yasqe:hover .resizeChip {
1462
+ visibility: visible;
1463
+ }
1464
+
1465
+ .yasqe .yasqe_btn {
1466
+ color: #333;
1467
+ background-color: #fff;
1468
+ border: 1px solid #ccc;
1469
+ display: inline-block;
1470
+ text-align: center;
1471
+ vertical-align: middle;
1472
+ cursor: pointer;
1473
+ white-space: nowrap;
1474
+ padding: 6px 12px;
1475
+ border-radius: 2px;
1476
+ -webkit-user-select: none;
1477
+ -moz-user-select: none;
1478
+ -ms-user-select: none;
1479
+ user-select: none;
1480
+ overflow: visible;
1481
+ box-sizing: border-box;
1482
+ }
1483
+
1484
+ .yasqe .yasqe_btn.btn_icon {
1485
+ padding: 4px 8px;
1486
+ }
1487
+
1488
+ .yasqe .yasqe_btn.disabled, .yasqe .yasqe_btn[disabled] {
1489
+ cursor: default;
1490
+ opacity: 0.5;
1491
+ filter: alpha(opacity=50);
1492
+ box-shadow: none;
1493
+ }
1494
+
1495
+ .yasqe .yasqe_btn:hover {
1496
+ outline: 0;
1497
+ background-color: #ebebeb;
1498
+ border-color: #adadad;
1499
+ }
1500
+
1501
+ .yasqe .yasqe_btn.selected, .yasqe .yasqe_btn:focus {
1502
+ color: #fff;
1503
+ outline: 0;
1504
+ background-color: #337ab7;
1505
+ border-color: #337ab7;
1506
+ }
1507
+
1508
+ .yasqe .yasqe_btn.btn_icon:focus {
1509
+ color: #333;
1510
+ background-color: #fff;
1511
+ border: 1px solid #ccc;
1512
+ }
1513
+
1514
+ .yasqe .yasqe_btn.yasqe_btn-sm {
1515
+ padding: 1px 5px;
1516
+ font-size: 12px;
1517
+ line-height: 1.5;
1518
+ border-radius: 3px;
1519
+ }
1520
+
1521
+ .yasqe .yasqe_buttons {
1522
+ position: absolute;
1523
+ top: 10px;
1524
+ right: 20px;
1525
+ z-index: 5;
1526
+ }
1527
+
1528
+ .yasqe .yasqe_buttons svg {
1529
+ fill: #505050;
1530
+ }
1531
+
1532
+ .yasqe .yasqe_buttons .yasqe_share {
1533
+ cursor: pointer;
1534
+ margin-top: 3px;
1535
+ display: inline-block;
1536
+ border: none;
1537
+ background: none;
1538
+ }
1539
+
1540
+ .yasqe .yasqe_buttons .yasqe_share svg {
1541
+ height: 25px;
1542
+ width: 25px;
1543
+ }
1544
+
1545
+ .yasqe .yasqe_buttons button {
1546
+ vertical-align: top;
1547
+ margin-left: 5px;
1548
+ }
1549
+
1550
+ .yasqe .yasqe_buttons .yasqe_sharePopup {
1551
+ position: absolute;
1552
+ padding: 4px;
1553
+ margin-left: 0;
1554
+ background-color: #fff;
1555
+ border: 1px solid #e3e3e3;
1556
+ border-radius: 2px;
1557
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1558
+ width: 600px;
1559
+ height: auto;
1560
+ display: flex;
1561
+ }
1562
+
1563
+ .yasqe .yasqe_buttons .yasqe_sharePopup .inputWrapper {
1564
+ flex-grow: 100;
1565
+ }
1566
+
1567
+ .yasqe .yasqe_buttons .yasqe_sharePopup input {
1568
+ float: left;
1569
+ width: 100%;
1570
+ border: 0;
1571
+ -ms-box-sizing: border-box;
1572
+ -khtml-box-sizing: border-box;
1573
+ box-sizing: border-box;
1574
+ }
1575
+
1576
+ .yasqe .yasqe_buttons .yasqe_sharePopup button {
1577
+ float: right;
1578
+ margin-left: 5px;
1579
+ }
1580
+
1581
+ .yasqe .yasqe_buttons .yasqe_sharePopup textarea {
1582
+ width: 100%;
1583
+ }
1584
+
1585
+ .yasqe .yasqe_buttons .yasqe_queryButton {
1586
+ display: inline-block;
1587
+ position: relative;
1588
+ border: none;
1589
+ background: none;
1590
+ padding: 0;
1591
+ cursor: pointer;
1592
+ width: 40px;
1593
+ height: 40px;
1594
+ }
1595
+
1596
+ .yasqe .yasqe_buttons .yasqe_queryButton .queryIcon {
1597
+ display: block;
1598
+ }
1599
+
1600
+ .yasqe .yasqe_buttons .yasqe_queryButton .queryIcon svg {
1601
+ width: 40px;
1602
+ height: 40px;
1603
+ }
1604
+
1605
+ .yasqe .yasqe_buttons .yasqe_queryButton .svgImg {
1606
+ position: absolute;
1607
+ height: inherit;
1608
+ top: 0;
1609
+ }
1610
+
1611
+ .yasqe .yasqe_buttons .yasqe_queryButton.busy svg #loadingIcon {
1612
+ stroke-dasharray: 100;
1613
+ -webkit-animation: dash 1.5s linear infinite;
1614
+ animation: dash 1.5s linear infinite;
1615
+ stroke-width: 8px;
1616
+ stroke: #fff;
1617
+ }
1618
+
1619
+ @-webkit-keyframes dash {
1620
+ to {
1621
+ stroke-dashoffset: 200;
1622
+ }
1623
+ }
1624
+ @keyframes dash {
1625
+ to {
1626
+ stroke-dashoffset: 200;
1627
+ }
1628
+ }
1629
+ @-webkit-keyframes rotate {
1630
+ to {
1631
+ transform: rotate(1turn);
1632
+ }
1633
+ }
1634
+ @keyframes rotate {
1635
+ to {
1636
+ transform: rotate(1turn);
1637
+ }
1638
+ }
1639
+ .yasqe .yasqe_buttons .yasqe_queryButton .warningIcon {
1640
+ display: none;
1641
+ }
1642
+
1643
+ .yasqe .yasqe_buttons .yasqe_queryButton.query_error .warningIcon {
1644
+ display: block;
1645
+ top: 5px;
1646
+ right: 0;
1647
+ }
1648
+
1649
+ .yasqe .yasqe_buttons .yasqe_queryButton.query_error .warningIcon svg {
1650
+ width: 15px;
1651
+ height: 15px;
1652
+ }
1653
+
1654
+ .yasqe .yasqe_buttons .yasqe_queryButton.query_error .warningIcon svg g {
1655
+ fill: red;
1656
+ }
1657
+
1658
+ .yasqe .yasqe_buttons .yasqe_queryButton.query_disabled {
1659
+ cursor: not-allowed;
1660
+ }
1661
+
1662
+ .yasqe .yasqe_buttons .yasqe_queryButton.query_disabled .queryIcon {
1663
+ opacity: 0.5;
1664
+ filter: alpha(opacity=50);
1665
+ }
1666
+
1667
+ @-webkit-keyframes spin {
1668
+ to {
1669
+ transform: rotate(1turn);
1670
+ }
1671
+ }
1672
+ .CodeMirror-hints {
1673
+ position: absolute;
1674
+ z-index: 10;
1675
+ overflow: hidden;
1676
+ list-style: none;
1677
+ margin: 0;
1678
+ padding: 2px;
1679
+ box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
1680
+ border-radius: 3px;
1681
+ border: 1px solid silver;
1682
+ background: #fff;
1683
+ font-size: 90%;
1684
+ font-family: monospace;
1685
+ max-height: 20em;
1686
+ overflow-y: auto;
1687
+ }
1688
+
1689
+ .CodeMirror-hint {
1690
+ margin: 0;
1691
+ padding: 0 4px;
1692
+ border-radius: 2px;
1693
+ white-space: pre;
1694
+ color: #000;
1695
+ cursor: pointer;
1696
+ }
1697
+
1698
+ li.CodeMirror-hint-active {
1699
+ background: #08f;
1700
+ color: #fff;
1701
+ }
1702
+
1703
+ .CodeMirror-foldmarker {
1704
+ color: #00f;
1705
+ text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
1706
+ font-family: arial;
1707
+ line-height: 0.3;
1708
+ cursor: pointer;
1709
+ }
1710
+
1711
+ .CodeMirror-foldgutter {
1712
+ width: 0.7em;
1713
+ }
1714
+
1715
+ .CodeMirror-foldgutter-folded, .CodeMirror-foldgutter-open {
1716
+ cursor: pointer;
1717
+ }
1718
+
1719
+ .CodeMirror-foldgutter-open:after {
1720
+ content: "▾";
1721
+ }
1722
+
1723
+ .CodeMirror-foldgutter-folded:after {
1724
+ content: "▸";
1725
+ }
1726
+
1727
+ .yasqe .CodeMirror {
1728
+ line-height: 1.5em;
1729
+ font-size: 14px;
1730
+ border: 1px solid #d1d1d1;
1731
+ }
1732
+
1733
+ .yasqe span.cm-error {
1734
+ border-bottom: 2px dotted red;
1735
+ }
1736
+
1737
+ .yasqe .gutterErrorBar {
1738
+ width: 4px;
1739
+ }
1740
+
1741
+ .yasqe .CodeMirror-foldmarker {
1742
+ color: #6e2500;
1743
+ text-shadow: #ff935e 1px 1px 2px, #ff935e -1px -1px 2px, #ff935e 1px -1px 2px, #ff935e -1px 1px 2px;
1744
+ font-size: 19px;
1745
+ }
1746
+
1747
+ .yasqe .cm-matchhighlight {
1748
+ background-color: #dbdeed;
1749
+ }
1750
+
1751
+ .CodeMirror-hints.default {
1752
+ max-width: 1000px;
1753
+ }
1754
+
1755
+ .CodeMirror-hints.default li {
1756
+ text-overflow: ellipsis;
1757
+ overflow: hidden;
1758
+ }
1759
+
1760
+ @media only screen and (max-width: 1000px) {
1761
+ .CodeMirror-hints.default {
1762
+ max-width: 800px;
1763
+ }
1764
+ }
1765
+ .yasgui .tabMenu {
1766
+ background: #f5f5f5;
1767
+ z-index: 7;
1768
+ transition: all 0.5s;
1769
+ transform: translate3d(-100%, 0, 0) rotateY(90deg);
1770
+ transform-origin: 100% 50%;
1771
+ visibility: hidden;
1772
+ width: 600px;
1773
+ border: 1px solid #ccc;
1774
+ position: absolute;
1775
+ top: 35px;
1776
+ left: 0;
1777
+ perspective: 1500px;
1778
+ perspective-origin: 0 50%;
1779
+ transform-style: preserve-3d;
1780
+ }
1781
+
1782
+ .yasgui .tabMenu.open {
1783
+ visibility: visible;
1784
+ transform: translate3d(-100%, 0, 0) rotateY(0deg);
1785
+ transition: all 0.5s;
1786
+ left: 600px;
1787
+ }
1788
+
1789
+ @media (-ms-high-contrast: active), (-ms-high-contrast: none) {
1790
+ .yasgui .tabMenu.open {
1791
+ min-width: 600px;
1792
+ }
1793
+ }
1794
+ @media (-ms-high-contrast: active), (-ms-high-contrast: none) {
1795
+ .yasgui .tabMenu {
1796
+ height: 0;
1797
+ }
1798
+ }
1799
+ .yasgui .tabMenu .requestConfigWrapper {
1800
+ padding: 10px;
1801
+ overflow: hidden;
1802
+ display: flex;
1803
+ flex-wrap: nowrap;
1804
+ background: #f5f5f5;
1805
+ }
1806
+
1807
+ .yasgui .tabMenu .requestConfigWrapper .selectorButton {
1808
+ background-color: transparent;
1809
+ border: none;
1810
+ border-bottom: 1px solid #d1d1d1;
1811
+ height: 30px;
1812
+ color: #505050;
1813
+ cursor: pointer;
1814
+ }
1815
+
1816
+ .yasgui .tabMenu .requestConfigWrapper .selectorButton:hover {
1817
+ color: #000;
1818
+ border-color: #000;
1819
+ }
1820
+
1821
+ .yasgui .tabMenu .requestConfigWrapper .selectorButton.selected {
1822
+ color: #337ab7;
1823
+ border-bottom: 2px solid #337ab7;
1824
+ }
1825
+
1826
+ .yasgui .tabMenu .requestConfigWrapper .selectorButton:focus {
1827
+ outline: none;
1828
+ }
1829
+
1830
+ .yasgui .tabMenu .requestConfigWrapper .selectorButton:focus-visible {
1831
+ color: #000;
1832
+ border-color: #000;
1833
+ }
1834
+
1835
+ .yasgui .tabMenu .acceptWrapper {
1836
+ flex-direction: row;
1837
+ }
1838
+
1839
+ .yasgui .tabMenu .acceptWrapper .acceptLabel {
1840
+ justify-self: center;
1841
+ }
1842
+
1843
+ .yasgui .tabMenu .acceptWrapper .selector {
1844
+ flex-direction: column;
1845
+ display: flex;
1846
+ padding: 2.5px 5px;
1847
+ flex-grow: 1;
1848
+ width: 100%;
1849
+ }
1850
+
1851
+ .yasgui .tabMenu .acceptWrapper .selector .selectorLabel {
1852
+ align-self: center;
1853
+ font-weight: 700;
1854
+ font-size: small;
1855
+ }
1856
+
1857
+ .yasgui .tabMenu .textSetting {
1858
+ display: flex;
1859
+ flex-direction: column;
1860
+ }
1861
+
1862
+ .yasgui .tabMenu .textSetting .label {
1863
+ align-self: flex-start;
1864
+ }
1865
+
1866
+ .yasgui .tabMenu .textSetting .graphInput {
1867
+ white-space: nowrap;
1868
+ }
1869
+
1870
+ .yasgui .tabMenu .textSetting .textRow {
1871
+ flex-direction: row;
1872
+ flex-wrap: nowrap;
1873
+ white-space: nowrap;
1874
+ }
1875
+
1876
+ .yasgui .tabMenu .textSetting .removeButton {
1877
+ border: none;
1878
+ background: transparent;
1879
+ -webkit-user-select: none;
1880
+ -moz-user-select: none;
1881
+ -ms-user-select: none;
1882
+ user-select: none;
1883
+ }
1884
+
1885
+ .yasgui .tabMenu .textSetting .removeButton:hover {
1886
+ background: transparent;
1887
+ border-color: #000;
1888
+ color: #000;
1889
+ cursor: pointer;
1890
+ }
1891
+
1892
+ .yasgui .tabMenu .label {
1893
+ -webkit-text-decoration: #000;
1894
+ text-decoration: #000;
1895
+ font-weight: 700;
1896
+ white-space: nowrap;
1897
+ padding-right: 5px;
1898
+ align-self: center;
1899
+ }
1900
+
1901
+ .yasgui .autocomplete {
1902
+ padding: 3px 6px;
1903
+ margin: 4px 0;
1904
+ border: 2px solid #ccc;
1905
+ width: 100%;
1906
+ box-sizing: border-box;
1907
+ transition: border-color 0.2s ease-in;
1908
+ }
1909
+
1910
+ .yasgui .autocomplete:hover {
1911
+ border-color: #bbb;
1912
+ }
1913
+
1914
+ .yasgui .autocomplete:focus {
1915
+ border-color: #337ab7;
1916
+ background: none;
1917
+ outline: none;
1918
+ }
1919
+
1920
+ .yasgui .autocompleteWrapper {
1921
+ width: 100%;
1922
+ max-width: 700px;
1923
+ margin-left: 10px;
1924
+ position: relative;
1925
+ }
1926
+
1927
+ .yasgui .autocompleteList {
1928
+ position: absolute;
1929
+ max-height: 300px;
1930
+ overflow-y: auto;
1931
+ z-index: 6;
1932
+ margin: -4px 0 0;
1933
+ padding: 0;
1934
+ list-style: none;
1935
+ background: #fff;
1936
+ border: 1px solid #aaa;
1937
+ box-sizing: border-box;
1938
+ left: 0;
1939
+ right: 0;
1940
+ }
1941
+
1942
+ .yasgui .autocompleteList:hover .autoComplete_result.autoComplete_selected:not(:hover) {
1943
+ background: unset;
1944
+ }
1945
+
1946
+ .yasgui .autocompleteList:hover .autoComplete_result.autoComplete_selected:not(:hover) .removeItem {
1947
+ visibility: hidden;
1948
+ }
1949
+
1950
+ .yasgui .autocompleteList .autoComplete_result {
1951
+ cursor: pointer;
1952
+ padding: 5px 10px;
1953
+ margin: 0;
1954
+ overflow: hidden;
1955
+ display: flex;
1956
+ transition: background visibility 0.2s ease-in;
1957
+ }
1958
+
1959
+ .yasgui .autocompleteList .autoComplete_result b {
1960
+ color: #1f49a3;
1961
+ }
1962
+
1963
+ .yasgui .autocompleteList .autoComplete_result .autoComplete_highlighted {
1964
+ font-weight: 700;
1965
+ }
1966
+
1967
+ .yasgui .autocompleteList .autoComplete_result.autoComplete_selected {
1968
+ background: #ccc;
1969
+ }
1970
+
1971
+ .yasgui .autocompleteList .autoComplete_result.autoComplete_selected .removeItem {
1972
+ visibility: visible;
1973
+ }
1974
+
1975
+ .yasgui .autocompleteList .autoComplete_result:hover {
1976
+ background: #ccc;
1977
+ }
1978
+
1979
+ .yasgui .autocompleteList .autoComplete_result:hover .removeItem {
1980
+ visibility: visible;
1981
+ }
1982
+
1983
+ .yasgui .autocompleteList .noResults {
1984
+ padding: 5px 10px;
1985
+ margin: 0;
1986
+ }
1987
+
1988
+ .yasgui .autocompleteList .removeItem {
1989
+ color: #000;
1990
+ font-size: 15px;
1991
+ text-shadow: 0 1px 0 #fff;
1992
+ opacity: 0.5;
1993
+ font-weight: 700;
1994
+ text-align: end;
1995
+ margin-left: auto;
1996
+ visibility: hidden;
1997
+ background: none;
1998
+ border: none;
1999
+ cursor: pointer;
2000
+ margin-right: -10px;
2001
+ padding-right: 20px;
2002
+ }
2003
+
2004
+ .yasgui .autocompleteList .removeItem:hover {
2005
+ opacity: 0.8;
2006
+ color: #1f49a3;
2007
+ }
2008
+
2009
+ .yasgui .autocompleteList:empty {
2010
+ display: none;
2011
+ }
2012
+
2013
+ .yasgui .tabPanel {
2014
+ display: none;
2015
+ position: relative;
2016
+ }
2017
+
2018
+ .yasgui .tabPanel.active {
2019
+ display: block;
2020
+ }
2021
+
2022
+ .yasgui .yasr {
2023
+ margin-top: 5px;
2024
+ }
2025
+
2026
+ .yasgui .tabContextButton {
2027
+ border: none;
2028
+ background: none;
2029
+ align-self: center;
2030
+ padding-left: 10px;
2031
+ cursor: pointer;
2032
+ color: #505050;
2033
+ fill: #505050;
2034
+ }
2035
+
2036
+ .yasgui .tabContextButton .svgImg {
2037
+ width: 15px;
2038
+ height: 15px;
2039
+ font-family: initial;
2040
+ }
2041
+
2042
+ .yasgui .tabContextButton svg {
2043
+ max-width: 15px;
2044
+ max-height: 15px;
2045
+ }
2046
+
2047
+ .yasgui .tabContextButton:hover {
2048
+ color: #000;
2049
+ fill: #000;
2050
+ }
2051
+
2052
+ .yasgui .controlbar {
2053
+ display: flex;
2054
+ align-content: center;
2055
+ max-height: 35px;
2056
+ }
2057
+
2058
+ .yasgui.context-menu {
2059
+ position: absolute;
2060
+ z-index: 10;
2061
+ background: #fff;
2062
+ min-width: 160px;
2063
+ font-size: 14px;
2064
+ border: 1px solid rgba(0, 0, 0, 0.15);
2065
+ border-bottom-right-radius: 4px;
2066
+ border-bottom-left-radius: 4px;
2067
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2068
+ background-clip: padding-box;
2069
+ }
2070
+
2071
+ .yasgui.context-menu hr {
2072
+ margin: 8px auto;
2073
+ border: none;
2074
+ border-top: 1px solid #aaa;
2075
+ border-bottom: 1px solid #fff;
2076
+ }
2077
+
2078
+ .yasgui.context-menu .context-menu-list {
2079
+ padding: 0;
2080
+ }
2081
+
2082
+ .yasgui.context-menu .context-menu-item {
2083
+ display: block;
2084
+ padding: 3px 20px;
2085
+ clear: both;
2086
+ font-weight: 400;
2087
+ line-height: 1.42857;
2088
+ color: #333;
2089
+ white-space: nowrap;
2090
+ cursor: pointer;
2091
+ }
2092
+
2093
+ .yasgui.context-menu .context-menu-item:hover {
2094
+ text-decoration: none;
2095
+ color: #000;
2096
+ background-color: #f5f5f5;
2097
+ }
2098
+
2099
+ .yasgui.context-menu .context-menu-item.disabled {
2100
+ text-decoration: none;
2101
+ color: grey;
2102
+ background-color: #e5e5e5;
2103
+ cursor: not-allowed;
2104
+ }
2105
+
2106
+ .yasgui .tabsList {
2107
+ display: flex;
2108
+ flex-wrap: wrap;
2109
+ }
2110
+
2111
+ .yasgui .tabsList .sortable-placeholder {
2112
+ min-width: 100px;
2113
+ min-height: 35px;
2114
+ border: 2px dotted #888;
2115
+ }
2116
+
2117
+ .yasgui .tabsList a {
2118
+ cursor: pointer;
2119
+ display: flex;
2120
+ align-items: center;
2121
+ justify-content: center;
2122
+ min-height: 35px;
2123
+ border-bottom: 2px solid transparent;
2124
+ box-sizing: border-box;
2125
+ }
2126
+
2127
+ .yasgui .tabsList .addTab {
2128
+ cursor: pointer;
2129
+ height: 100%;
2130
+ font-size: 120%;
2131
+ font-weight: 800;
2132
+ margin-left: 15px;
2133
+ padding: 0 5px 2px;
2134
+ background: inherit;
2135
+ border: none;
2136
+ color: #337ab7;
2137
+ }
2138
+
2139
+ .yasgui .tabsList .addTab:focus-visible, .yasgui .tabsList .addTab:hover {
2140
+ transform: scale(1.1);
2141
+ }
2142
+
2143
+ .yasgui .tabsList .addTab:focus {
2144
+ color: #faa857;
2145
+ }
2146
+
2147
+ .yasgui .tabsList .tab {
2148
+ position: relative;
2149
+ }
2150
+
2151
+ .yasgui .tabsList .tab .loader {
2152
+ display: none;
2153
+ background-color: #d5d5d5;
2154
+ height: 2px;
2155
+ position: absolute;
2156
+ bottom: 0;
2157
+ left: 0;
2158
+ right: 100%;
2159
+ -webkit-animation-name: slide;
2160
+ animation-name: slide;
2161
+ -webkit-animation-duration: 2s;
2162
+ animation-duration: 2s;
2163
+ -webkit-animation-timing-function: ease;
2164
+ animation-timing-function: ease;
2165
+ -webkit-animation-iteration-count: infinite;
2166
+ animation-iteration-count: infinite;
2167
+ }
2168
+
2169
+ @-webkit-keyframes slide {
2170
+ 0% {
2171
+ left: 0;
2172
+ right: 100%;
2173
+ }
2174
+ 70% {
2175
+ left: 0;
2176
+ right: 0;
2177
+ }
2178
+ to {
2179
+ left: 100%;
2180
+ right: 0;
2181
+ }
2182
+ }
2183
+ @keyframes slide {
2184
+ 0% {
2185
+ left: 0;
2186
+ right: 100%;
2187
+ }
2188
+ 70% {
2189
+ left: 0;
2190
+ right: 0;
2191
+ }
2192
+ to {
2193
+ left: 100%;
2194
+ right: 0;
2195
+ }
2196
+ }
2197
+ .yasgui .tabsList .tab.active .loader {
2198
+ background-color: #9fc4e4;
2199
+ }
2200
+
2201
+ .yasgui .tabsList .tab:hover .loader {
2202
+ background-color: #337ab7;
2203
+ }
2204
+
2205
+ .yasgui .tabsList .tab.querying .loader {
2206
+ display: block;
2207
+ }
2208
+
2209
+ .yasgui .tabsList .tab.active a {
2210
+ border-bottom-color: #337ab7;
2211
+ color: #555;
2212
+ }
2213
+
2214
+ .yasgui .tabsList .tab input {
2215
+ display: none;
2216
+ outline: none;
2217
+ border: none;
2218
+ }
2219
+
2220
+ .yasgui .tabsList .tab.renaming .closeTab, .yasgui .tabsList .tab.renaming span {
2221
+ display: none;
2222
+ }
2223
+
2224
+ .yasgui .tabsList .tab.renaming input {
2225
+ display: block;
2226
+ }
2227
+
2228
+ .yasgui .tabsList .tab a {
2229
+ font-weight: 600;
2230
+ color: #888;
2231
+ font-size: 15px;
2232
+ line-height: 1.5rem;
2233
+ font-weight: 500;
2234
+ min-width: 120px;
2235
+ padding: 0 24px 0 30px;
2236
+ white-space: nowrap;
2237
+ overflow: hidden;
2238
+ }
2239
+
2240
+ .yasgui .tabsList .tab a:hover {
2241
+ border-bottom-color: #9fc4e4;
2242
+ color: #555;
2243
+ }
2244
+
2245
+ .yasgui .tabsList .tab a:focus {
2246
+ border-bottom-color: #faa857;
2247
+ color: #555;
2248
+ }
2249
+
2250
+ .yasgui .tabsList .tab a .closeTab {
2251
+ color: #000;
2252
+ margin-left: 7px;
2253
+ font-size: 15px;
2254
+ text-shadow: 0 1px 0 #fff;
2255
+ opacity: 0.2;
2256
+ font-weight: 700;
2257
+ padding: 2px;
2258
+ }
2259
+
2260
+ .yasgui .tabsList .tab a .closeTab:hover {
2261
+ opacity: 0.5;
2262
+ }
2263
+
2264
+ .yasgui a {
2265
+ color: #337ab7;
2266
+ text-decoration: none;
2267
+ }
2268
+
2269
+ .yasgui .yasgui_textfield {
2270
+ display: block;
2271
+ padding-top: 18.75px;
2272
+ position: relative;
2273
+ }
2274
+
2275
+ .yasgui .yasgui_textfield > label {
2276
+ position: absolute;
2277
+ top: 0;
2278
+ display: block;
2279
+ width: 100%;
2280
+ color: rgba(0, 0, 0, 0.54);
2281
+ font-size: 12px;
2282
+ font-weight: 400;
2283
+ line-height: 15px;
2284
+ overflow-x: hidden;
2285
+ text-overflow: ellipsis;
2286
+ white-space: nowrap;
2287
+ }
2288
+
2289
+ .yasgui .yasgui_textfield > input, .yasgui .yasgui_textfield > textarea {
2290
+ box-sizing: border-box;
2291
+ display: block;
2292
+ color: rgba(0, 0, 0, 0.87);
2293
+ border: none;
2294
+ border-bottom: 1px solid rgba(0, 0, 0, 0.26);
2295
+ outline: none;
2296
+ width: 100%;
2297
+ padding: 0;
2298
+ box-shadow: none;
2299
+ border-radius: 0;
2300
+ font-size: 15px;
2301
+ font-family: inherit;
2302
+ line-height: inherit;
2303
+ background-image: none;
2304
+ }
2305
+
2306
+ .yasgui .yasgui_textfield > input:focus, .yasgui .yasgui_textfield > textarea:focus {
2307
+ border-color: #337ab7;
2308
+ border-width: 2px;
2309
+ }
2310
+
2311
+ .yasgui .yasgui_textfield > input:focus ~ label, .yasgui .yasgui_textfield > textarea:focus ~ label {
2312
+ color: #337ab7;
2313
+ }
2314
+
2315
+ .modal-dialog.google-visualization-charteditor-dialog {
2316
+ z-index: 11;
2317
+ width: auto;
2318
+ margin: inherit;
2319
+ }
2320
+
2321
+ .modal-dialog.google-visualization-charteditor-dialog .charts-flat-menu-button {
2322
+ box-sizing: content-box;
2323
+ }
2324
+
2325
+ :host {
2326
+ display: block;
2327
+ }
2328
+
2329
+ .mode-yasqe .yasgui .yasr {
2330
+ display: none;
2331
+ }
2332
+
2333
+ .mode-yasr .yasgui .tabsList {
2334
+ display: none;
2335
+ }
2336
+ .mode-yasr .yasgui .yasqe {
2337
+ display: none;
2338
+ }
2339
+
2340
+ .orientation-horizontal .yasgui {
2341
+ display: grid;
2342
+ }
2343
+ .orientation-horizontal .yasgui .tabPanel > div {
2344
+ display: grid;
2345
+ grid-template-columns: 0 1fr 1fr;
2346
+ }
2347
+
2348
+ .yasgui .autocompleteWrapper {
2349
+ display: none !important;
2350
+ }
2351
+ .yasgui .tabContextButton {
2352
+ display: none;
2353
+ }
2354
+
2355
+ .hidden-editor-tabs .tabsList {
2356
+ display: none;
2357
+ }
2358
+
2359
+ .hidden-result-tabs .yasr_header {
2360
+ display: none;
2361
+ }