@carbon/charts 0.40.1 → 0.40.2
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/CHANGELOG.md +8 -0
- package/axis-chart.js +32 -5
- package/axis-chart.js.map +1 -1
- package/build/demo/data/toolbar.d.ts +12 -0
- package/build/src/components/axes/toolbar.d.ts +34 -0
- package/build/src/components/index.d.ts +1 -0
- package/build/src/configuration-non-customizable.d.ts +10 -0
- package/build/src/interfaces/a11y.d.ts +5 -1
- package/build/src/interfaces/components.d.ts +39 -1
- package/build/src/interfaces/enums.d.ts +8 -0
- package/build/src/interfaces/events.d.ts +7 -0
- package/build/src/services/zoom.d.ts +6 -0
- package/bundle.js +1 -1
- package/components/axes/toolbar.d.ts +34 -0
- package/components/axes/toolbar.js +388 -0
- package/components/axes/toolbar.js.map +1 -0
- package/components/axes/zoom-bar.js +5 -3
- package/components/axes/zoom-bar.js.map +1 -1
- package/components/essentials/title.js +3 -2
- package/components/essentials/title.js.map +1 -1
- package/components/index.d.ts +1 -0
- package/components/index.js +1 -0
- package/components/index.js.map +1 -1
- package/configuration-non-customizable.d.ts +10 -0
- package/configuration-non-customizable.js +11 -1
- package/configuration-non-customizable.js.map +1 -1
- package/configuration.js +6 -0
- package/configuration.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/data/index.js +18 -0
- package/demo/data/index.js.map +1 -1
- package/demo/data/toolbar.d.ts +12 -0
- package/demo/data/toolbar.js +56 -0
- package/demo/data/toolbar.js.map +1 -0
- package/demo/styles.css +1958 -690
- package/demo/styles.css.map +1 -1
- package/demo/styles.min.css +1 -1
- package/demo/styles.min.css.map +1 -1
- package/demo/tsconfig.tsbuildinfo +24 -9
- package/interfaces/a11y.d.ts +5 -1
- package/interfaces/a11y.js +4 -0
- package/interfaces/a11y.js.map +1 -1
- package/interfaces/components.d.ts +39 -1
- package/interfaces/components.js.map +1 -1
- package/interfaces/enums.d.ts +8 -0
- package/interfaces/enums.js +9 -0
- package/interfaces/enums.js.map +1 -1
- package/interfaces/events.d.ts +7 -0
- package/interfaces/events.js +8 -0
- package/interfaces/events.js.map +1 -1
- package/package.json +1 -1
- package/services/zoom.d.ts +6 -0
- package/services/zoom.js +104 -0
- package/services/zoom.js.map +1 -1
- package/styles/components/_toolbar.scss +67 -0
- package/styles/components/index.scss +1 -0
- package/styles-g10.css +664 -0
- package/styles-g10.css.map +1 -1
- package/styles-g10.min.css +1 -1
- package/styles-g10.min.css.map +1 -1
- package/styles-g100.css +664 -0
- package/styles-g100.css.map +1 -1
- package/styles-g100.min.css +1 -1
- package/styles-g100.min.css.map +1 -1
- package/styles-g90.css +664 -0
- package/styles-g90.css.map +1 -1
- package/styles-g90.min.css +1 -1
- package/styles-g90.min.css.map +1 -1
- package/styles.css +664 -0
- package/styles.css.map +1 -1
- package/styles.min.css +1 -1
- package/styles.min.css.map +1 -1
- package/tsconfig.tsbuildinfo +43 -18
package/demo/styles.css
CHANGED
|
@@ -21,7 +21,6 @@ body::-webkit-scrollbar-thumb:hover {
|
|
|
21
21
|
div.container {
|
|
22
22
|
font-family: "IBM Plex Sans", Arial, sans-serif;
|
|
23
23
|
padding: 30px;
|
|
24
|
-
/* HTML5 display-role reset for older browsers */
|
|
25
24
|
}
|
|
26
25
|
div.container.theme--white {
|
|
27
26
|
color: #161616;
|
|
@@ -167,6 +166,613 @@ div.container.theme--white .bx--cc--meter-title g.status-indicator.status--succe
|
|
|
167
166
|
div.container.theme--white .bx--cc--meter-title g.status-indicator path.innerFill {
|
|
168
167
|
fill: #ffffff;
|
|
169
168
|
}
|
|
169
|
+
@keyframes skeleton {
|
|
170
|
+
0% {
|
|
171
|
+
width: 0%;
|
|
172
|
+
left: 0;
|
|
173
|
+
right: auto;
|
|
174
|
+
opacity: 0.3;
|
|
175
|
+
}
|
|
176
|
+
20% {
|
|
177
|
+
width: 100%;
|
|
178
|
+
left: 0;
|
|
179
|
+
right: auto;
|
|
180
|
+
opacity: 1;
|
|
181
|
+
}
|
|
182
|
+
28% {
|
|
183
|
+
width: 100%;
|
|
184
|
+
left: auto;
|
|
185
|
+
right: 0;
|
|
186
|
+
}
|
|
187
|
+
51% {
|
|
188
|
+
width: 0%;
|
|
189
|
+
left: auto;
|
|
190
|
+
right: 0;
|
|
191
|
+
}
|
|
192
|
+
58% {
|
|
193
|
+
width: 0%;
|
|
194
|
+
left: auto;
|
|
195
|
+
right: 0;
|
|
196
|
+
}
|
|
197
|
+
82% {
|
|
198
|
+
width: 100%;
|
|
199
|
+
left: auto;
|
|
200
|
+
right: 0;
|
|
201
|
+
}
|
|
202
|
+
83% {
|
|
203
|
+
width: 100%;
|
|
204
|
+
left: 0;
|
|
205
|
+
right: auto;
|
|
206
|
+
}
|
|
207
|
+
96% {
|
|
208
|
+
width: 0%;
|
|
209
|
+
left: 0;
|
|
210
|
+
right: auto;
|
|
211
|
+
}
|
|
212
|
+
100% {
|
|
213
|
+
width: 0%;
|
|
214
|
+
left: 0;
|
|
215
|
+
right: auto;
|
|
216
|
+
opacity: 0.3;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
div.container.theme--white .bx--text-truncate--end {
|
|
220
|
+
width: 100%;
|
|
221
|
+
display: inline-block;
|
|
222
|
+
text-overflow: ellipsis;
|
|
223
|
+
white-space: nowrap;
|
|
224
|
+
overflow: hidden;
|
|
225
|
+
}
|
|
226
|
+
div.container.theme--white .bx--text-truncate--front {
|
|
227
|
+
width: 100%;
|
|
228
|
+
display: inline-block;
|
|
229
|
+
direction: rtl;
|
|
230
|
+
text-overflow: ellipsis;
|
|
231
|
+
white-space: nowrap;
|
|
232
|
+
overflow: hidden;
|
|
233
|
+
}
|
|
234
|
+
div.container.theme--white .bx--overflow-menu__trigger {
|
|
235
|
+
box-sizing: border-box;
|
|
236
|
+
margin: 0;
|
|
237
|
+
padding: 0;
|
|
238
|
+
border: 0;
|
|
239
|
+
font-size: 100%;
|
|
240
|
+
font-family: inherit;
|
|
241
|
+
vertical-align: baseline;
|
|
242
|
+
display: inline-block;
|
|
243
|
+
background: none;
|
|
244
|
+
appearance: none;
|
|
245
|
+
border: 0;
|
|
246
|
+
padding: 0;
|
|
247
|
+
cursor: pointer;
|
|
248
|
+
width: 100%;
|
|
249
|
+
}
|
|
250
|
+
div.container.theme--white .bx--overflow-menu__trigger > *, div.container.theme--white .bx--overflow-menu__trigger > *:before, div.container.theme--white .bx--overflow-menu__trigger > *:after {
|
|
251
|
+
box-sizing: inherit;
|
|
252
|
+
}
|
|
253
|
+
div.container.theme--white .bx--overflow-menu__trigger::-moz-focus-inner {
|
|
254
|
+
border: 0;
|
|
255
|
+
}
|
|
256
|
+
div.container.theme--white .bx--overflow-menu,
|
|
257
|
+
div.container.theme--white .bx--overflow-menu__trigger {
|
|
258
|
+
box-sizing: border-box;
|
|
259
|
+
margin: 0;
|
|
260
|
+
padding: 0;
|
|
261
|
+
border: 0;
|
|
262
|
+
font-size: 100%;
|
|
263
|
+
font-family: inherit;
|
|
264
|
+
vertical-align: baseline;
|
|
265
|
+
outline: 2px solid transparent;
|
|
266
|
+
outline-offset: -2px;
|
|
267
|
+
position: relative;
|
|
268
|
+
width: 2rem;
|
|
269
|
+
height: 2rem;
|
|
270
|
+
display: flex;
|
|
271
|
+
align-items: center;
|
|
272
|
+
justify-content: center;
|
|
273
|
+
cursor: pointer;
|
|
274
|
+
transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
275
|
+
}
|
|
276
|
+
div.container.theme--white .bx--overflow-menu > *, div.container.theme--white .bx--overflow-menu > *:before, div.container.theme--white .bx--overflow-menu > *:after,
|
|
277
|
+
div.container.theme--white .bx--overflow-menu__trigger > *,
|
|
278
|
+
div.container.theme--white .bx--overflow-menu__trigger > *:before,
|
|
279
|
+
div.container.theme--white .bx--overflow-menu__trigger > *:after {
|
|
280
|
+
box-sizing: inherit;
|
|
281
|
+
}
|
|
282
|
+
div.container.theme--white .bx--overflow-menu:focus,
|
|
283
|
+
div.container.theme--white .bx--overflow-menu__trigger:focus {
|
|
284
|
+
outline: 2px solid #0f62fe;
|
|
285
|
+
outline-offset: -2px;
|
|
286
|
+
}
|
|
287
|
+
div.container.theme--white .bx--overflow-menu:hover,
|
|
288
|
+
div.container.theme--white .bx--overflow-menu__trigger:hover {
|
|
289
|
+
background-color: #e5e5e5;
|
|
290
|
+
}
|
|
291
|
+
div.container.theme--white .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus {
|
|
292
|
+
outline: 2px solid #0f62fe;
|
|
293
|
+
outline-offset: -2px;
|
|
294
|
+
}
|
|
295
|
+
div.container.theme--white .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus svg {
|
|
296
|
+
outline: none;
|
|
297
|
+
}
|
|
298
|
+
div.container.theme--white .bx--overflow-menu.bx--overflow-menu--open,
|
|
299
|
+
div.container.theme--white .bx--overflow-menu.bx--overflow-menu--open .bx--overflow-menu__trigger {
|
|
300
|
+
background-color: #f4f4f4;
|
|
301
|
+
transition: none;
|
|
302
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
303
|
+
}
|
|
304
|
+
div.container.theme--white .bx--overflow-menu__icon {
|
|
305
|
+
height: 1rem;
|
|
306
|
+
width: 1rem;
|
|
307
|
+
fill: #161616;
|
|
308
|
+
}
|
|
309
|
+
div.container.theme--white .bx--overflow-menu-options {
|
|
310
|
+
box-sizing: border-box;
|
|
311
|
+
margin: 0;
|
|
312
|
+
padding: 0;
|
|
313
|
+
border: 0;
|
|
314
|
+
font-size: 100%;
|
|
315
|
+
font-family: inherit;
|
|
316
|
+
vertical-align: baseline;
|
|
317
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
318
|
+
display: none;
|
|
319
|
+
flex-direction: column;
|
|
320
|
+
align-items: flex-start;
|
|
321
|
+
position: absolute;
|
|
322
|
+
z-index: 10000;
|
|
323
|
+
background-color: #f4f4f4;
|
|
324
|
+
width: 10rem;
|
|
325
|
+
list-style: none;
|
|
326
|
+
top: 32px;
|
|
327
|
+
left: 0;
|
|
328
|
+
}
|
|
329
|
+
div.container.theme--white .bx--overflow-menu-options > *, div.container.theme--white .bx--overflow-menu-options > *:before, div.container.theme--white .bx--overflow-menu-options > *:after {
|
|
330
|
+
box-sizing: inherit;
|
|
331
|
+
}
|
|
332
|
+
div.container.theme--white .bx--overflow-menu-options::after {
|
|
333
|
+
content: "";
|
|
334
|
+
position: absolute;
|
|
335
|
+
display: block;
|
|
336
|
+
background-color: #f4f4f4;
|
|
337
|
+
transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
338
|
+
}
|
|
339
|
+
div.container.theme--white .bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
340
|
+
top: -0.1875rem;
|
|
341
|
+
left: 0;
|
|
342
|
+
width: 2rem;
|
|
343
|
+
height: 0.1875rem;
|
|
344
|
+
}
|
|
345
|
+
div.container.theme--white .bx--overflow-menu-options[data-floating-menu-direction=top]::after {
|
|
346
|
+
bottom: -0.375rem;
|
|
347
|
+
left: 0;
|
|
348
|
+
width: 2rem;
|
|
349
|
+
height: 0.375rem;
|
|
350
|
+
}
|
|
351
|
+
div.container.theme--white .bx--overflow-menu-options[data-floating-menu-direction=left]::after {
|
|
352
|
+
right: -0.375rem;
|
|
353
|
+
top: 0;
|
|
354
|
+
height: 2rem;
|
|
355
|
+
width: 0.375rem;
|
|
356
|
+
}
|
|
357
|
+
div.container.theme--white .bx--overflow-menu-options[data-floating-menu-direction=right]::after {
|
|
358
|
+
top: 0;
|
|
359
|
+
left: -0.375rem;
|
|
360
|
+
height: 2rem;
|
|
361
|
+
width: 0.375rem;
|
|
362
|
+
}
|
|
363
|
+
div.container.theme--white .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=top]::after,
|
|
364
|
+
div.container.theme--white .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
365
|
+
left: auto;
|
|
366
|
+
right: 0;
|
|
367
|
+
}
|
|
368
|
+
div.container.theme--white .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=left]::after,
|
|
369
|
+
div.container.theme--white .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=right]::after {
|
|
370
|
+
top: auto;
|
|
371
|
+
bottom: 0;
|
|
372
|
+
}
|
|
373
|
+
div.container.theme--white .bx--overflow-menu-options--open {
|
|
374
|
+
display: flex;
|
|
375
|
+
}
|
|
376
|
+
div.container.theme--white .bx--overflow-menu-options__option {
|
|
377
|
+
box-sizing: border-box;
|
|
378
|
+
margin: 0;
|
|
379
|
+
padding: 0;
|
|
380
|
+
border: 0;
|
|
381
|
+
font-size: 100%;
|
|
382
|
+
font-family: inherit;
|
|
383
|
+
vertical-align: baseline;
|
|
384
|
+
display: flex;
|
|
385
|
+
background-color: transparent;
|
|
386
|
+
align-items: center;
|
|
387
|
+
width: 100%;
|
|
388
|
+
height: 2.5rem;
|
|
389
|
+
padding: 0;
|
|
390
|
+
transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
391
|
+
}
|
|
392
|
+
div.container.theme--white .bx--overflow-menu-options__option > *, div.container.theme--white .bx--overflow-menu-options__option > *:before, div.container.theme--white .bx--overflow-menu-options__option > *:after {
|
|
393
|
+
box-sizing: inherit;
|
|
394
|
+
}
|
|
395
|
+
div.container.theme--white .bx--overflow-menu--divider {
|
|
396
|
+
border-top: 1px solid #e0e0e0;
|
|
397
|
+
}
|
|
398
|
+
div.container.theme--white a.bx--overflow-menu-options__btn::before {
|
|
399
|
+
content: "";
|
|
400
|
+
height: 100%;
|
|
401
|
+
vertical-align: middle;
|
|
402
|
+
display: inline-block;
|
|
403
|
+
}
|
|
404
|
+
div.container.theme--white .bx--overflow-menu-options__btn {
|
|
405
|
+
font-size: 0.875rem;
|
|
406
|
+
font-weight: 400;
|
|
407
|
+
line-height: 1.125rem;
|
|
408
|
+
letter-spacing: 0.16px;
|
|
409
|
+
outline: 2px solid transparent;
|
|
410
|
+
outline-offset: -2px;
|
|
411
|
+
font-weight: 400;
|
|
412
|
+
width: 100%;
|
|
413
|
+
height: 100%;
|
|
414
|
+
border: none;
|
|
415
|
+
display: inline-flex;
|
|
416
|
+
align-items: center;
|
|
417
|
+
background-color: transparent;
|
|
418
|
+
text-align: left;
|
|
419
|
+
padding: 0 1rem;
|
|
420
|
+
cursor: pointer;
|
|
421
|
+
color: #393939;
|
|
422
|
+
max-width: 11.25rem;
|
|
423
|
+
transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9), color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
424
|
+
}
|
|
425
|
+
div.container.theme--white .bx--overflow-menu-options__btn:hover {
|
|
426
|
+
color: #161616;
|
|
427
|
+
}
|
|
428
|
+
div.container.theme--white .bx--overflow-menu-options__btn:focus {
|
|
429
|
+
outline: 2px solid #0f62fe;
|
|
430
|
+
outline-offset: -2px;
|
|
431
|
+
}
|
|
432
|
+
div.container.theme--white .bx--overflow-menu-options__btn::-moz-focus-inner {
|
|
433
|
+
border: none;
|
|
434
|
+
}
|
|
435
|
+
div.container.theme--white .bx--overflow-menu-options__btn svg {
|
|
436
|
+
fill: #525252;
|
|
437
|
+
}
|
|
438
|
+
div.container.theme--white .bx--overflow-menu-options__btn:hover svg {
|
|
439
|
+
fill: #161616;
|
|
440
|
+
}
|
|
441
|
+
div.container.theme--white .bx--overflow-menu-options__option-content {
|
|
442
|
+
white-space: nowrap;
|
|
443
|
+
overflow: hidden;
|
|
444
|
+
text-overflow: ellipsis;
|
|
445
|
+
}
|
|
446
|
+
div.container.theme--white .bx--overflow-menu-options__option:hover {
|
|
447
|
+
background-color: #e5e5e5;
|
|
448
|
+
}
|
|
449
|
+
div.container.theme--white .bx--overflow-menu-options__option--danger {
|
|
450
|
+
border-top: 1px solid #e0e0e0;
|
|
451
|
+
}
|
|
452
|
+
div.container.theme--white .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover,
|
|
453
|
+
div.container.theme--white .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus {
|
|
454
|
+
color: #ffffff;
|
|
455
|
+
background-color: #da1e28;
|
|
456
|
+
}
|
|
457
|
+
div.container.theme--white .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover svg,
|
|
458
|
+
div.container.theme--white .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus svg {
|
|
459
|
+
fill: #ffffff;
|
|
460
|
+
}
|
|
461
|
+
div.container.theme--white .bx--overflow-menu-options__option--disabled:hover {
|
|
462
|
+
background-color: #f4f4f4;
|
|
463
|
+
cursor: not-allowed;
|
|
464
|
+
}
|
|
465
|
+
div.container.theme--white .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn {
|
|
466
|
+
color: #c6c6c6;
|
|
467
|
+
pointer-events: none;
|
|
468
|
+
}
|
|
469
|
+
div.container.theme--white .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:hover, div.container.theme--white .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:active, div.container.theme--white .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:focus {
|
|
470
|
+
outline: 2px solid transparent;
|
|
471
|
+
outline-offset: -2px;
|
|
472
|
+
background-color: #f4f4f4;
|
|
473
|
+
}
|
|
474
|
+
div.container.theme--white .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn svg {
|
|
475
|
+
fill: #c6c6c6;
|
|
476
|
+
}
|
|
477
|
+
div.container.theme--white .bx--overflow-menu--flip {
|
|
478
|
+
left: -140px;
|
|
479
|
+
}
|
|
480
|
+
div.container.theme--white .bx--overflow-menu--flip:before {
|
|
481
|
+
left: 145px;
|
|
482
|
+
}
|
|
483
|
+
div.container.theme--white g.bx--cc--toolbar {
|
|
484
|
+
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
485
|
+
}
|
|
486
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button {
|
|
487
|
+
fill: #ffffff;
|
|
488
|
+
cursor: pointer;
|
|
489
|
+
}
|
|
490
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button:hover .toolbar-button-background {
|
|
491
|
+
fill: #e5e5e5;
|
|
492
|
+
}
|
|
493
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button:hover .toolbar-button-background--disabled {
|
|
494
|
+
fill: #ffffff;
|
|
495
|
+
}
|
|
496
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button--focusable:focus .toolbar-button-background {
|
|
497
|
+
stroke: #525252;
|
|
498
|
+
stroke-width: 2;
|
|
499
|
+
stroke-dasharray: 2;
|
|
500
|
+
}
|
|
501
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon {
|
|
502
|
+
pointer-events: visible;
|
|
503
|
+
}
|
|
504
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon circle, div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon rect, div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon path, div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon polygon {
|
|
505
|
+
fill: #525252;
|
|
506
|
+
}
|
|
507
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon:hover {
|
|
508
|
+
cursor: pointer;
|
|
509
|
+
pointer-events: visible;
|
|
510
|
+
}
|
|
511
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled {
|
|
512
|
+
pointer-events: auto;
|
|
513
|
+
}
|
|
514
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled circle, div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled rect, div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled path, div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled polygon {
|
|
515
|
+
fill: #8d8d8d;
|
|
516
|
+
}
|
|
517
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled:hover {
|
|
518
|
+
cursor: auto;
|
|
519
|
+
pointer-events: auto;
|
|
520
|
+
}
|
|
521
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button--hovered {
|
|
522
|
+
fill: #e5e5e5;
|
|
523
|
+
}
|
|
524
|
+
div.container.theme--white g.bx--cc--toolbar .toolbar-container .toolbar-button--disabled {
|
|
525
|
+
cursor: auto;
|
|
526
|
+
}
|
|
527
|
+
div.container.theme--white .bx--overflow-menu__trigger {
|
|
528
|
+
box-sizing: border-box;
|
|
529
|
+
margin: 0;
|
|
530
|
+
padding: 0;
|
|
531
|
+
border: 0;
|
|
532
|
+
font-size: 100%;
|
|
533
|
+
font-family: inherit;
|
|
534
|
+
vertical-align: baseline;
|
|
535
|
+
display: inline-block;
|
|
536
|
+
background: none;
|
|
537
|
+
appearance: none;
|
|
538
|
+
border: 0;
|
|
539
|
+
padding: 0;
|
|
540
|
+
cursor: pointer;
|
|
541
|
+
width: 100%;
|
|
542
|
+
}
|
|
543
|
+
div.container.theme--white .bx--overflow-menu__trigger > *, div.container.theme--white .bx--overflow-menu__trigger > *:before, div.container.theme--white .bx--overflow-menu__trigger > *:after {
|
|
544
|
+
box-sizing: inherit;
|
|
545
|
+
}
|
|
546
|
+
div.container.theme--white .bx--overflow-menu__trigger::-moz-focus-inner {
|
|
547
|
+
border: 0;
|
|
548
|
+
}
|
|
549
|
+
div.container.theme--white .bx--overflow-menu,
|
|
550
|
+
div.container.theme--white .bx--overflow-menu__trigger {
|
|
551
|
+
box-sizing: border-box;
|
|
552
|
+
margin: 0;
|
|
553
|
+
padding: 0;
|
|
554
|
+
border: 0;
|
|
555
|
+
font-size: 100%;
|
|
556
|
+
font-family: inherit;
|
|
557
|
+
vertical-align: baseline;
|
|
558
|
+
outline: 2px solid transparent;
|
|
559
|
+
outline-offset: -2px;
|
|
560
|
+
position: relative;
|
|
561
|
+
width: 2rem;
|
|
562
|
+
height: 2rem;
|
|
563
|
+
display: flex;
|
|
564
|
+
align-items: center;
|
|
565
|
+
justify-content: center;
|
|
566
|
+
cursor: pointer;
|
|
567
|
+
transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
568
|
+
}
|
|
569
|
+
div.container.theme--white .bx--overflow-menu > *, div.container.theme--white .bx--overflow-menu > *:before, div.container.theme--white .bx--overflow-menu > *:after,
|
|
570
|
+
div.container.theme--white .bx--overflow-menu__trigger > *,
|
|
571
|
+
div.container.theme--white .bx--overflow-menu__trigger > *:before,
|
|
572
|
+
div.container.theme--white .bx--overflow-menu__trigger > *:after {
|
|
573
|
+
box-sizing: inherit;
|
|
574
|
+
}
|
|
575
|
+
div.container.theme--white .bx--overflow-menu:focus,
|
|
576
|
+
div.container.theme--white .bx--overflow-menu__trigger:focus {
|
|
577
|
+
outline: 2px solid #0f62fe;
|
|
578
|
+
outline-offset: -2px;
|
|
579
|
+
}
|
|
580
|
+
div.container.theme--white .bx--overflow-menu:hover,
|
|
581
|
+
div.container.theme--white .bx--overflow-menu__trigger:hover {
|
|
582
|
+
background-color: #e5e5e5;
|
|
583
|
+
}
|
|
584
|
+
div.container.theme--white .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus {
|
|
585
|
+
outline: 2px solid #0f62fe;
|
|
586
|
+
outline-offset: -2px;
|
|
587
|
+
}
|
|
588
|
+
div.container.theme--white .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus svg {
|
|
589
|
+
outline: none;
|
|
590
|
+
}
|
|
591
|
+
div.container.theme--white .bx--overflow-menu.bx--overflow-menu--open,
|
|
592
|
+
div.container.theme--white .bx--overflow-menu.bx--overflow-menu--open .bx--overflow-menu__trigger {
|
|
593
|
+
background-color: #f4f4f4;
|
|
594
|
+
transition: none;
|
|
595
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
596
|
+
}
|
|
597
|
+
div.container.theme--white .bx--overflow-menu__icon {
|
|
598
|
+
height: 1rem;
|
|
599
|
+
width: 1rem;
|
|
600
|
+
fill: #161616;
|
|
601
|
+
}
|
|
602
|
+
div.container.theme--white .bx--overflow-menu-options {
|
|
603
|
+
box-sizing: border-box;
|
|
604
|
+
margin: 0;
|
|
605
|
+
padding: 0;
|
|
606
|
+
border: 0;
|
|
607
|
+
font-size: 100%;
|
|
608
|
+
font-family: inherit;
|
|
609
|
+
vertical-align: baseline;
|
|
610
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
611
|
+
display: none;
|
|
612
|
+
flex-direction: column;
|
|
613
|
+
align-items: flex-start;
|
|
614
|
+
position: absolute;
|
|
615
|
+
z-index: 10000;
|
|
616
|
+
background-color: #f4f4f4;
|
|
617
|
+
width: 10rem;
|
|
618
|
+
list-style: none;
|
|
619
|
+
top: 32px;
|
|
620
|
+
left: 0;
|
|
621
|
+
}
|
|
622
|
+
div.container.theme--white .bx--overflow-menu-options > *, div.container.theme--white .bx--overflow-menu-options > *:before, div.container.theme--white .bx--overflow-menu-options > *:after {
|
|
623
|
+
box-sizing: inherit;
|
|
624
|
+
}
|
|
625
|
+
div.container.theme--white .bx--overflow-menu-options::after {
|
|
626
|
+
content: "";
|
|
627
|
+
position: absolute;
|
|
628
|
+
display: block;
|
|
629
|
+
background-color: #f4f4f4;
|
|
630
|
+
transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
631
|
+
}
|
|
632
|
+
div.container.theme--white .bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
633
|
+
top: -0.1875rem;
|
|
634
|
+
left: 0;
|
|
635
|
+
width: 2rem;
|
|
636
|
+
height: 0.1875rem;
|
|
637
|
+
}
|
|
638
|
+
div.container.theme--white .bx--overflow-menu-options[data-floating-menu-direction=top]::after {
|
|
639
|
+
bottom: -0.375rem;
|
|
640
|
+
left: 0;
|
|
641
|
+
width: 2rem;
|
|
642
|
+
height: 0.375rem;
|
|
643
|
+
}
|
|
644
|
+
div.container.theme--white .bx--overflow-menu-options[data-floating-menu-direction=left]::after {
|
|
645
|
+
right: -0.375rem;
|
|
646
|
+
top: 0;
|
|
647
|
+
height: 2rem;
|
|
648
|
+
width: 0.375rem;
|
|
649
|
+
}
|
|
650
|
+
div.container.theme--white .bx--overflow-menu-options[data-floating-menu-direction=right]::after {
|
|
651
|
+
top: 0;
|
|
652
|
+
left: -0.375rem;
|
|
653
|
+
height: 2rem;
|
|
654
|
+
width: 0.375rem;
|
|
655
|
+
}
|
|
656
|
+
div.container.theme--white .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=top]::after,
|
|
657
|
+
div.container.theme--white .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
658
|
+
left: auto;
|
|
659
|
+
right: 0;
|
|
660
|
+
}
|
|
661
|
+
div.container.theme--white .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=left]::after,
|
|
662
|
+
div.container.theme--white .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=right]::after {
|
|
663
|
+
top: auto;
|
|
664
|
+
bottom: 0;
|
|
665
|
+
}
|
|
666
|
+
div.container.theme--white .bx--overflow-menu-options--open {
|
|
667
|
+
display: flex;
|
|
668
|
+
}
|
|
669
|
+
div.container.theme--white .bx--overflow-menu-options__option {
|
|
670
|
+
box-sizing: border-box;
|
|
671
|
+
margin: 0;
|
|
672
|
+
padding: 0;
|
|
673
|
+
border: 0;
|
|
674
|
+
font-size: 100%;
|
|
675
|
+
font-family: inherit;
|
|
676
|
+
vertical-align: baseline;
|
|
677
|
+
display: flex;
|
|
678
|
+
background-color: transparent;
|
|
679
|
+
align-items: center;
|
|
680
|
+
width: 100%;
|
|
681
|
+
height: 2.5rem;
|
|
682
|
+
padding: 0;
|
|
683
|
+
transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
684
|
+
}
|
|
685
|
+
div.container.theme--white .bx--overflow-menu-options__option > *, div.container.theme--white .bx--overflow-menu-options__option > *:before, div.container.theme--white .bx--overflow-menu-options__option > *:after {
|
|
686
|
+
box-sizing: inherit;
|
|
687
|
+
}
|
|
688
|
+
div.container.theme--white .bx--overflow-menu--divider {
|
|
689
|
+
border-top: 1px solid #e0e0e0;
|
|
690
|
+
}
|
|
691
|
+
div.container.theme--white a.bx--overflow-menu-options__btn::before {
|
|
692
|
+
content: "";
|
|
693
|
+
height: 100%;
|
|
694
|
+
vertical-align: middle;
|
|
695
|
+
display: inline-block;
|
|
696
|
+
}
|
|
697
|
+
div.container.theme--white .bx--overflow-menu-options__btn {
|
|
698
|
+
font-size: 0.875rem;
|
|
699
|
+
font-weight: 400;
|
|
700
|
+
line-height: 1.125rem;
|
|
701
|
+
letter-spacing: 0.16px;
|
|
702
|
+
outline: 2px solid transparent;
|
|
703
|
+
outline-offset: -2px;
|
|
704
|
+
font-weight: 400;
|
|
705
|
+
width: 100%;
|
|
706
|
+
height: 100%;
|
|
707
|
+
border: none;
|
|
708
|
+
display: inline-flex;
|
|
709
|
+
align-items: center;
|
|
710
|
+
background-color: transparent;
|
|
711
|
+
text-align: left;
|
|
712
|
+
padding: 0 1rem;
|
|
713
|
+
cursor: pointer;
|
|
714
|
+
color: #393939;
|
|
715
|
+
max-width: 11.25rem;
|
|
716
|
+
transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9), color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
717
|
+
}
|
|
718
|
+
div.container.theme--white .bx--overflow-menu-options__btn:hover {
|
|
719
|
+
color: #161616;
|
|
720
|
+
}
|
|
721
|
+
div.container.theme--white .bx--overflow-menu-options__btn:focus {
|
|
722
|
+
outline: 2px solid #0f62fe;
|
|
723
|
+
outline-offset: -2px;
|
|
724
|
+
}
|
|
725
|
+
div.container.theme--white .bx--overflow-menu-options__btn::-moz-focus-inner {
|
|
726
|
+
border: none;
|
|
727
|
+
}
|
|
728
|
+
div.container.theme--white .bx--overflow-menu-options__btn svg {
|
|
729
|
+
fill: #525252;
|
|
730
|
+
}
|
|
731
|
+
div.container.theme--white .bx--overflow-menu-options__btn:hover svg {
|
|
732
|
+
fill: #161616;
|
|
733
|
+
}
|
|
734
|
+
div.container.theme--white .bx--overflow-menu-options__option-content {
|
|
735
|
+
white-space: nowrap;
|
|
736
|
+
overflow: hidden;
|
|
737
|
+
text-overflow: ellipsis;
|
|
738
|
+
}
|
|
739
|
+
div.container.theme--white .bx--overflow-menu-options__option:hover {
|
|
740
|
+
background-color: #e5e5e5;
|
|
741
|
+
}
|
|
742
|
+
div.container.theme--white .bx--overflow-menu-options__option--danger {
|
|
743
|
+
border-top: 1px solid #e0e0e0;
|
|
744
|
+
}
|
|
745
|
+
div.container.theme--white .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover,
|
|
746
|
+
div.container.theme--white .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus {
|
|
747
|
+
color: #ffffff;
|
|
748
|
+
background-color: #da1e28;
|
|
749
|
+
}
|
|
750
|
+
div.container.theme--white .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover svg,
|
|
751
|
+
div.container.theme--white .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus svg {
|
|
752
|
+
fill: #ffffff;
|
|
753
|
+
}
|
|
754
|
+
div.container.theme--white .bx--overflow-menu-options__option--disabled:hover {
|
|
755
|
+
background-color: #f4f4f4;
|
|
756
|
+
cursor: not-allowed;
|
|
757
|
+
}
|
|
758
|
+
div.container.theme--white .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn {
|
|
759
|
+
color: #c6c6c6;
|
|
760
|
+
pointer-events: none;
|
|
761
|
+
}
|
|
762
|
+
div.container.theme--white .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:hover, div.container.theme--white .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:active, div.container.theme--white .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:focus {
|
|
763
|
+
outline: 2px solid transparent;
|
|
764
|
+
outline-offset: -2px;
|
|
765
|
+
background-color: #f4f4f4;
|
|
766
|
+
}
|
|
767
|
+
div.container.theme--white .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn svg {
|
|
768
|
+
fill: #c6c6c6;
|
|
769
|
+
}
|
|
770
|
+
div.container.theme--white .bx--overflow-menu--flip {
|
|
771
|
+
left: -140px;
|
|
772
|
+
}
|
|
773
|
+
div.container.theme--white .bx--overflow-menu--flip:before {
|
|
774
|
+
left: 145px;
|
|
775
|
+
}
|
|
170
776
|
div.container.theme--white .bx--cc--tooltip {
|
|
171
777
|
background-color: #ffffff;
|
|
172
778
|
pointer-events: none;
|
|
@@ -179,400 +785,758 @@ div.container.theme--white .bx--cc--tooltip {
|
|
|
179
785
|
z-index: 1059;
|
|
180
786
|
font-family: 'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif;
|
|
181
787
|
}
|
|
182
|
-
div.container.theme--white .bx--cc--tooltip.hidden {
|
|
183
|
-
opacity: 0;
|
|
184
|
-
transition: opacity 0.1s;
|
|
185
|
-
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
788
|
+
div.container.theme--white .bx--cc--tooltip.hidden {
|
|
789
|
+
opacity: 0;
|
|
790
|
+
transition: opacity 0.1s;
|
|
791
|
+
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
792
|
+
}
|
|
793
|
+
div.container.theme--white .bx--cc--tooltip .content-box {
|
|
794
|
+
color: #161616;
|
|
795
|
+
}
|
|
796
|
+
div.container.theme--white .bx--cc--tooltip .content-box .title-tooltip {
|
|
797
|
+
width: auto;
|
|
798
|
+
padding: 4px;
|
|
799
|
+
min-width: 20px;
|
|
800
|
+
}
|
|
801
|
+
div.container.theme--white .bx--cc--tooltip .content-box .title-tooltip p {
|
|
802
|
+
line-height: 16px;
|
|
803
|
+
font-size: 12px;
|
|
804
|
+
}
|
|
805
|
+
div.container.theme--white .bx--cc--tooltip .content-box .datapoint-tooltip {
|
|
806
|
+
display: flex;
|
|
807
|
+
padding: 4px;
|
|
808
|
+
flex-flow: row nowrap;
|
|
809
|
+
width: auto;
|
|
810
|
+
min-width: 20px;
|
|
811
|
+
justify-content: flex-start;
|
|
812
|
+
align-items: center;
|
|
813
|
+
}
|
|
814
|
+
div.container.theme--white .bx--cc--tooltip .content-box .datapoint-tooltip p {
|
|
815
|
+
white-space: nowrap;
|
|
816
|
+
overflow: hidden;
|
|
817
|
+
text-overflow: ellipsis;
|
|
818
|
+
line-height: 16px;
|
|
819
|
+
font-size: 12px;
|
|
820
|
+
display: inline-block;
|
|
821
|
+
margin: 0;
|
|
822
|
+
padding: 0;
|
|
823
|
+
border: 0;
|
|
824
|
+
}
|
|
825
|
+
div.container.theme--white .bx--cc--tooltip .content-box .datapoint-tooltip p.label {
|
|
826
|
+
flex: 1;
|
|
827
|
+
margin-right: 8px;
|
|
828
|
+
}
|
|
829
|
+
div.container.theme--white .bx--cc--tooltip .content-box .datapoint-tooltip p.value {
|
|
830
|
+
width: auto;
|
|
831
|
+
}
|
|
832
|
+
div.container.theme--white .bx--cc--tooltip .content-box .datapoint-tooltip.bold {
|
|
833
|
+
font-weight: 600;
|
|
834
|
+
}
|
|
835
|
+
div.container.theme--white .bx--cc--tooltip .content-box ul.multi-tooltip {
|
|
836
|
+
margin: 0;
|
|
837
|
+
padding: 0;
|
|
838
|
+
}
|
|
839
|
+
div.container.theme--white .bx--cc--tooltip .content-box ul.multi-tooltip li {
|
|
840
|
+
list-style: none;
|
|
841
|
+
position: relative;
|
|
842
|
+
}
|
|
843
|
+
div.container.theme--white .bx--cc--tooltip .content-box ul.multi-tooltip li:not(:last-child) {
|
|
844
|
+
border-bottom: 1px solid #e0e0e0;
|
|
845
|
+
}
|
|
846
|
+
div.container.theme--white .bx--cc--tooltip .tooltip-color {
|
|
847
|
+
position: absolute;
|
|
848
|
+
left: 0;
|
|
849
|
+
top: 0;
|
|
850
|
+
width: 4px;
|
|
851
|
+
height: 100%;
|
|
852
|
+
}
|
|
853
|
+
div.container.theme--white .bx--cc--tooltip .tooltip-color + p.label {
|
|
854
|
+
margin-left: 4px;
|
|
855
|
+
}
|
|
856
|
+
div.container.theme--white .bx--cc--threshold line.threshold-line {
|
|
857
|
+
stroke: #fa4d56;
|
|
858
|
+
stroke-width: 1;
|
|
859
|
+
stroke-dasharray: 4;
|
|
860
|
+
cursor: pointer;
|
|
861
|
+
pointer-events: none;
|
|
862
|
+
}
|
|
863
|
+
div.container.theme--white .bx--cc--threshold.active line.threshold-line {
|
|
864
|
+
stroke-width: 2;
|
|
865
|
+
}
|
|
866
|
+
div.container.theme--white .bx--cc--threshold rect.threshold-hoverable-area {
|
|
867
|
+
height: 20px;
|
|
868
|
+
transform: translate(0, -10px);
|
|
869
|
+
cursor: pointer;
|
|
870
|
+
fill: transparent;
|
|
871
|
+
}
|
|
872
|
+
div.container.theme--white .bx--cc--threshold rect.threshold-hoverable-area.rotate {
|
|
873
|
+
transform: rotate(90deg) translate(0, -10px);
|
|
874
|
+
}
|
|
875
|
+
div.container.theme--white .bx--cc--threshold--label {
|
|
876
|
+
background-color: #fa4d56;
|
|
877
|
+
pointer-events: none;
|
|
878
|
+
transition: opacity 0.1s;
|
|
879
|
+
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
880
|
+
display: inline;
|
|
881
|
+
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
|
|
882
|
+
position: absolute;
|
|
883
|
+
word-wrap: break-word;
|
|
884
|
+
z-index: 1059;
|
|
885
|
+
font-family: 'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif;
|
|
886
|
+
color: #161616;
|
|
887
|
+
line-height: 16px;
|
|
888
|
+
font-size: 12px;
|
|
889
|
+
padding: 4px;
|
|
890
|
+
min-width: 20px;
|
|
891
|
+
}
|
|
892
|
+
div.container.theme--white .bx--cc--threshold--label.hidden {
|
|
893
|
+
opacity: 0;
|
|
894
|
+
transition: opacity 0.1s;
|
|
895
|
+
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
896
|
+
}
|
|
897
|
+
div.container.theme--white g.bx--cc--zoom-bar rect.zoom-bg {
|
|
898
|
+
fill: #ffffff;
|
|
899
|
+
stroke: #f4f4f4;
|
|
900
|
+
}
|
|
901
|
+
div.container.theme--white g.bx--cc--zoom-bar rect.zoom-slider-bg {
|
|
902
|
+
fill: #f4f4f4;
|
|
903
|
+
}
|
|
904
|
+
div.container.theme--white g.bx--cc--zoom-bar rect.zoom-slider-selected-area {
|
|
905
|
+
fill: #525252;
|
|
906
|
+
}
|
|
907
|
+
div.container.theme--white g.bx--cc--zoom-bar path.zoom-bg-baseline {
|
|
908
|
+
stroke: #8d8d8d;
|
|
909
|
+
stroke-width: 2;
|
|
910
|
+
}
|
|
911
|
+
div.container.theme--white g.bx--cc--zoom-bar path.zoom-graph-area {
|
|
912
|
+
fill: #e0e0e0;
|
|
913
|
+
stroke: #8d8d8d;
|
|
914
|
+
stroke-width: 1;
|
|
915
|
+
}
|
|
916
|
+
div.container.theme--white g.bx--cc--zoom-bar path.zoom-graph-area-unselected {
|
|
917
|
+
fill: #f4f4f4;
|
|
918
|
+
stroke: none;
|
|
919
|
+
}
|
|
920
|
+
div.container.theme--white g.bx--cc--zoom-bar g.zoom-bar-brush rect.handle {
|
|
921
|
+
fill: #525252;
|
|
922
|
+
}
|
|
923
|
+
div.container.theme--white g.bx--cc--zoom-bar g.zoom-bar-brush rect.handle-bar {
|
|
924
|
+
fill: #ffffff;
|
|
925
|
+
}
|
|
926
|
+
div.container.theme--white g.bx--cc--zoom-bar g.zoom-bar-brush rect.selection {
|
|
927
|
+
fill: none;
|
|
928
|
+
stroke: none;
|
|
929
|
+
}
|
|
930
|
+
div.container.theme--white .bx--cc--area path.area,
|
|
931
|
+
div.container.theme--white .bx--cc--area-stacked path.area {
|
|
932
|
+
pointer-events: none;
|
|
933
|
+
}
|
|
934
|
+
div.container.theme--white g.bx--cc--bubble circle.dot.hovered {
|
|
935
|
+
fill-opacity: 1;
|
|
936
|
+
transition: all 0.1s;
|
|
937
|
+
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
938
|
+
}
|
|
939
|
+
div.container.theme--white g.bx--cc--bubble circle.dot.unfilled {
|
|
940
|
+
fill: #f4f4f4;
|
|
941
|
+
}
|
|
942
|
+
div.container.theme--white g.bx--cc--bubble g.lines path.line {
|
|
943
|
+
mix-blend-mode: multiply;
|
|
944
|
+
}
|
|
945
|
+
div.container.theme--white .bx--cc--line path.line {
|
|
946
|
+
pointer-events: none;
|
|
947
|
+
fill: none;
|
|
948
|
+
stroke-width: 1.5;
|
|
949
|
+
}
|
|
950
|
+
div.container.theme--white g.bx--cc--scatter circle.dot.hovered {
|
|
951
|
+
fill-opacity: 1;
|
|
952
|
+
transition: all 0.1s;
|
|
953
|
+
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
954
|
+
}
|
|
955
|
+
div.container.theme--white g.bx--cc--scatter circle.dot.unfilled {
|
|
956
|
+
fill: #f4f4f4;
|
|
957
|
+
stroke-width: 1.5;
|
|
958
|
+
}
|
|
959
|
+
div.container.theme--white g.bx--cc--scatter circle.dot.threshold-anomaly {
|
|
960
|
+
stroke-width: 3;
|
|
961
|
+
}
|
|
962
|
+
div.container.theme--white g.bx--cc--scatter g.lines path.line {
|
|
963
|
+
mix-blend-mode: multiply;
|
|
964
|
+
}
|
|
965
|
+
div.container.theme--white .bx--cc--meter rect.container {
|
|
966
|
+
fill: #f4f4f4;
|
|
967
|
+
}
|
|
968
|
+
div.container.theme--white .bx--cc--meter rect.value.status--danger {
|
|
969
|
+
fill: #da1e28;
|
|
970
|
+
}
|
|
971
|
+
div.container.theme--white .bx--cc--meter rect.value.status--warning {
|
|
972
|
+
fill: #f1c21b;
|
|
973
|
+
stroke-width: 1px;
|
|
974
|
+
stroke: #b28600;
|
|
975
|
+
}
|
|
976
|
+
div.container.theme--white .bx--cc--meter rect.value.status--success {
|
|
977
|
+
fill: #24a148;
|
|
978
|
+
}
|
|
979
|
+
div.container.theme--white .bx--cc--meter line.peak {
|
|
980
|
+
stroke: #161616;
|
|
981
|
+
stroke-width: 2px;
|
|
982
|
+
}
|
|
983
|
+
div.container.theme--white g.bx--cc--scatter-stacked circle.dot.unfilled {
|
|
984
|
+
fill: #f4f4f4;
|
|
985
|
+
stroke-width: 1.5;
|
|
986
|
+
}
|
|
987
|
+
div.container.theme--white g.bx--cc--scatter-stacked circle.dot.threshold-anomaly {
|
|
988
|
+
stroke-width: 3;
|
|
989
|
+
}
|
|
990
|
+
div.container.theme--white .bx--cc--radar .blobs path {
|
|
991
|
+
stroke-width: 1.5px;
|
|
992
|
+
}
|
|
993
|
+
div.container.theme--white .bx--cc--radar .y-axes path,
|
|
994
|
+
div.container.theme--white .bx--cc--radar .x-axes line {
|
|
995
|
+
stroke-width: 1px;
|
|
996
|
+
stroke: #e0e0e0;
|
|
997
|
+
}
|
|
998
|
+
div.container.theme--white .bx--cc--radar .x-axes line.hovered {
|
|
999
|
+
stroke: #000000;
|
|
1000
|
+
}
|
|
1001
|
+
div.container.theme--white .bx--cc--gauge path.arc-background {
|
|
1002
|
+
fill: #f4f4f4;
|
|
1003
|
+
}
|
|
1004
|
+
div.container.theme--white .bx--cc--gauge .gauge-delta-arrow.status--danger {
|
|
1005
|
+
fill: #da1e28;
|
|
1006
|
+
}
|
|
1007
|
+
div.container.theme--white .bx--cc--gauge .gauge-delta-arrow.status--warning {
|
|
1008
|
+
fill: #f1c21b;
|
|
1009
|
+
}
|
|
1010
|
+
div.container.theme--white .bx--cc--gauge .gauge-delta-arrow.status--success {
|
|
1011
|
+
fill: #24a148;
|
|
1012
|
+
}
|
|
1013
|
+
div.container.theme--white svg.bx--cc--chart-svg {
|
|
1014
|
+
font-family: 'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif;
|
|
1015
|
+
}
|
|
1016
|
+
div.container.theme--white svg.bx--cc--chart-svg text {
|
|
1017
|
+
font-size: 12px;
|
|
1018
|
+
font-weight: 400;
|
|
1019
|
+
fill: #393939;
|
|
1020
|
+
}
|
|
1021
|
+
div.container.theme--white svg.bx--cc--chart-svg text.meter-title,
|
|
1022
|
+
div.container.theme--white svg.bx--cc--chart-svg text.percent-value {
|
|
1023
|
+
font-size: 16px;
|
|
1024
|
+
font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
1025
|
+
}
|
|
1026
|
+
div.container.theme--white svg.bx--cc--chart-svg text.meter-title {
|
|
1027
|
+
font-weight: 600;
|
|
1028
|
+
}
|
|
1029
|
+
div.container.theme--white .bx--chart-holder {
|
|
1030
|
+
position: relative;
|
|
1031
|
+
display: block;
|
|
1032
|
+
width: 100%;
|
|
1033
|
+
height: 100%;
|
|
1034
|
+
background-color: #ffffff;
|
|
1035
|
+
}
|
|
1036
|
+
div.container.theme--white svg.bx--cc--chart-svg {
|
|
1037
|
+
overflow: visible;
|
|
1038
|
+
}
|
|
1039
|
+
div.container.theme--g10 {
|
|
1040
|
+
color: #161616;
|
|
1041
|
+
background-color: #f4f4f4;
|
|
1042
|
+
line-height: 1;
|
|
1043
|
+
}
|
|
1044
|
+
div.container.theme--g10 .bx--cc--axes g.axis g.ticks.invisible {
|
|
1045
|
+
visibility: hidden;
|
|
1046
|
+
}
|
|
1047
|
+
div.container.theme--g10 .bx--cc--axes g.axis g.tick text {
|
|
1048
|
+
fill: #393939;
|
|
1049
|
+
font-family: 'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif;
|
|
1050
|
+
}
|
|
1051
|
+
div.container.theme--g10 .bx--cc--axes g.axis g.tick line {
|
|
1052
|
+
display: none;
|
|
1053
|
+
}
|
|
1054
|
+
div.container.theme--g10 .bx--cc--axes g.axis path.domain {
|
|
1055
|
+
stroke: #8d8d8d;
|
|
1056
|
+
}
|
|
1057
|
+
div.container.theme--g10 .bx--cc--chart-svg g.callouts {
|
|
1058
|
+
stroke: #393939;
|
|
186
1059
|
}
|
|
187
|
-
div.container.theme--
|
|
188
|
-
|
|
1060
|
+
div.container.theme--g10 .bx--cc--grid-brush g.grid-brush rect.selection {
|
|
1061
|
+
fill: none;
|
|
1062
|
+
fill-opacity: 0;
|
|
1063
|
+
stroke: none;
|
|
189
1064
|
}
|
|
190
|
-
div.container.theme--
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
1065
|
+
div.container.theme--g10 g.bx--cc--grid-brush rect.frontSelection {
|
|
1066
|
+
fill: #e0e0e0;
|
|
1067
|
+
fill-opacity: 0.3;
|
|
1068
|
+
stroke: #0f62fe;
|
|
194
1069
|
}
|
|
195
|
-
div.container.theme--
|
|
196
|
-
|
|
197
|
-
font-size: 12px;
|
|
1070
|
+
div.container.theme--g10 .bx--cc--grid rect.chart-grid-backdrop {
|
|
1071
|
+
fill: #ffffff;
|
|
198
1072
|
}
|
|
199
|
-
div.container.theme--
|
|
200
|
-
|
|
201
|
-
padding: 4px;
|
|
202
|
-
flex-flow: row nowrap;
|
|
203
|
-
width: auto;
|
|
204
|
-
min-width: 20px;
|
|
205
|
-
justify-content: flex-start;
|
|
206
|
-
align-items: center;
|
|
1073
|
+
div.container.theme--g10 .bx--cc--grid rect.chart-grid-backdrop.stroked {
|
|
1074
|
+
stroke: #e0e0e0;
|
|
207
1075
|
}
|
|
208
|
-
div.container.theme--
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
font-size: 12px;
|
|
214
|
-
display: inline-block;
|
|
215
|
-
margin: 0;
|
|
216
|
-
padding: 0;
|
|
217
|
-
border: 0;
|
|
1076
|
+
div.container.theme--g10 .bx--cc--grid g.x.grid g.tick line,
|
|
1077
|
+
div.container.theme--g10 .bx--cc--grid g.y.grid g.tick line {
|
|
1078
|
+
pointer-events: none;
|
|
1079
|
+
stroke-width: 1px;
|
|
1080
|
+
stroke: #e0e0e0;
|
|
218
1081
|
}
|
|
219
|
-
div.container.theme--
|
|
220
|
-
|
|
221
|
-
|
|
1082
|
+
div.container.theme--g10 .bx--cc--grid g.x.grid g.tick.active line,
|
|
1083
|
+
div.container.theme--g10 .bx--cc--grid g.y.grid g.tick.active line {
|
|
1084
|
+
stroke-dasharray: 2px;
|
|
1085
|
+
stroke: #0f62fe;
|
|
222
1086
|
}
|
|
223
|
-
div.container.theme--
|
|
224
|
-
|
|
1087
|
+
div.container.theme--g10 .bx--cc--ruler line.ruler-line {
|
|
1088
|
+
stroke: #000000;
|
|
1089
|
+
stroke-width: 1px;
|
|
1090
|
+
stroke-dasharray: 2;
|
|
1091
|
+
pointer-events: none;
|
|
225
1092
|
}
|
|
226
|
-
div.container.theme--
|
|
227
|
-
|
|
1093
|
+
div.container.theme--g10 .bx--cc--skeleton rect.chart-skeleton-backdrop {
|
|
1094
|
+
fill: #ffffff;
|
|
228
1095
|
}
|
|
229
|
-
div.container.theme--
|
|
230
|
-
|
|
231
|
-
|
|
1096
|
+
div.container.theme--g10 .bx--cc--skeleton .shimmer-effect-lines {
|
|
1097
|
+
stroke-width: 1px;
|
|
1098
|
+
stroke: url(#shimmer-lines);
|
|
232
1099
|
}
|
|
233
|
-
div.container.theme--
|
|
234
|
-
|
|
235
|
-
|
|
1100
|
+
div.container.theme--g10 .bx--cc--skeleton .empty-state-lines {
|
|
1101
|
+
stroke-width: 1px;
|
|
1102
|
+
stroke: #e0e0e0;
|
|
236
1103
|
}
|
|
237
|
-
div.container.theme--
|
|
238
|
-
|
|
1104
|
+
div.container.theme--g10 .bx--cc--skeleton #shimmer-lines .stop-bg-shimmer {
|
|
1105
|
+
stop-color: #e0e0e0;
|
|
239
1106
|
}
|
|
240
|
-
div.container.theme--
|
|
241
|
-
|
|
242
|
-
left: 0;
|
|
243
|
-
top: 0;
|
|
244
|
-
width: 4px;
|
|
245
|
-
height: 100%;
|
|
1107
|
+
div.container.theme--g10 .bx--cc--skeleton #shimmer-lines .stop-shimmer {
|
|
1108
|
+
stop-color: #ffffff;
|
|
246
1109
|
}
|
|
247
|
-
div.container.theme--
|
|
248
|
-
|
|
1110
|
+
div.container.theme--g10 .bx--cc--skeleton .shimmer-effect-areas {
|
|
1111
|
+
fill: url(#shimmer-areas);
|
|
249
1112
|
}
|
|
250
|
-
div.container.theme--
|
|
251
|
-
|
|
252
|
-
stroke-width: 1;
|
|
253
|
-
stroke-dasharray: 4;
|
|
254
|
-
cursor: pointer;
|
|
255
|
-
pointer-events: none;
|
|
1113
|
+
div.container.theme--g10 .bx--cc--skeleton .empty-state-areas {
|
|
1114
|
+
fill: rgba(127, 127, 127, 0.1);
|
|
256
1115
|
}
|
|
257
|
-
div.container.theme--
|
|
258
|
-
|
|
1116
|
+
div.container.theme--g10 .bx--cc--skeleton #shimmer-areas .stop-bg-shimmer {
|
|
1117
|
+
stop-color: rgba(127, 127, 127, 0.1);
|
|
259
1118
|
}
|
|
260
|
-
div.container.theme--
|
|
261
|
-
|
|
262
|
-
transform: translate(0, -10px);
|
|
263
|
-
cursor: pointer;
|
|
264
|
-
fill: transparent;
|
|
1119
|
+
div.container.theme--g10 .bx--cc--skeleton #shimmer-areas .stop-shimmer {
|
|
1120
|
+
stop-color: rgba(255, 255, 255, 0.15);
|
|
265
1121
|
}
|
|
266
|
-
div.container.theme--
|
|
267
|
-
|
|
1122
|
+
div.container.theme--g10 .bx--cc--zero-line line.domain {
|
|
1123
|
+
stroke: #8d8d8d;
|
|
268
1124
|
}
|
|
269
|
-
div.container.theme--
|
|
270
|
-
|
|
271
|
-
pointer-events: none;
|
|
272
|
-
transition: opacity 0.1s;
|
|
273
|
-
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
274
|
-
display: inline;
|
|
275
|
-
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
|
|
276
|
-
position: absolute;
|
|
277
|
-
word-wrap: break-word;
|
|
278
|
-
z-index: 1059;
|
|
279
|
-
font-family: 'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif;
|
|
280
|
-
color: #161616;
|
|
281
|
-
line-height: 16px;
|
|
282
|
-
font-size: 12px;
|
|
283
|
-
padding: 4px;
|
|
284
|
-
min-width: 20px;
|
|
1125
|
+
div.container.theme--g10 .bx--cc--chart-svg svg.layout-child {
|
|
1126
|
+
overflow: visible;
|
|
285
1127
|
}
|
|
286
|
-
div.container.theme--
|
|
287
|
-
|
|
288
|
-
transition: opacity 0.1s;
|
|
289
|
-
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
1128
|
+
div.container.theme--g10 g.bx--cc--legend {
|
|
1129
|
+
user-select: none;
|
|
290
1130
|
}
|
|
291
|
-
div.container.theme--
|
|
292
|
-
|
|
293
|
-
stroke:
|
|
1131
|
+
div.container.theme--g10 g.bx--cc--legend g.legend-item rect.checkbox {
|
|
1132
|
+
stroke-width: 1px;
|
|
1133
|
+
stroke-opacity: 1;
|
|
294
1134
|
}
|
|
295
|
-
div.container.theme--
|
|
1135
|
+
div.container.theme--g10 g.bx--cc--legend g.legend-item rect.checkbox:not(.active) {
|
|
1136
|
+
stroke: #393939;
|
|
296
1137
|
fill: #f4f4f4;
|
|
297
1138
|
}
|
|
298
|
-
div.container.theme--
|
|
299
|
-
|
|
1139
|
+
div.container.theme--g10 g.bx--cc--legend g.legend-item rect.checkbox:not(.active) ~ g.check {
|
|
1140
|
+
display: none;
|
|
300
1141
|
}
|
|
301
|
-
div.container.theme--
|
|
302
|
-
|
|
1142
|
+
div.container.theme--g10 g.bx--cc--legend g.legend-item rect.hover-stroke {
|
|
1143
|
+
fill: none;
|
|
1144
|
+
stroke: #0f62fe;
|
|
303
1145
|
stroke-width: 2;
|
|
304
1146
|
}
|
|
305
|
-
div.container.theme--
|
|
306
|
-
fill: #e0e0e0;
|
|
307
|
-
stroke: #8d8d8d;
|
|
308
|
-
stroke-width: 1;
|
|
309
|
-
}
|
|
310
|
-
div.container.theme--white g.bx--cc--zoom-bar path.zoom-graph-area-unselected {
|
|
1147
|
+
div.container.theme--g10 g.bx--cc--legend g.legend-item g.check > svg path {
|
|
311
1148
|
fill: #f4f4f4;
|
|
312
|
-
stroke:
|
|
1149
|
+
stroke: #f4f4f4;
|
|
313
1150
|
}
|
|
314
|
-
div.container.theme--
|
|
315
|
-
|
|
1151
|
+
div.container.theme--g10 g.bx--cc--legend g.legend-item text {
|
|
1152
|
+
font-size: 12px;
|
|
1153
|
+
fill: #393939;
|
|
316
1154
|
}
|
|
317
|
-
div.container.theme--
|
|
318
|
-
|
|
1155
|
+
div.container.theme--g10 g.bx--cc--legend.clickable g.legend-item:hover {
|
|
1156
|
+
cursor: pointer;
|
|
319
1157
|
}
|
|
320
|
-
div.container.theme--
|
|
321
|
-
fill:
|
|
322
|
-
|
|
1158
|
+
div.container.theme--g10 .bx--cc--title text.title {
|
|
1159
|
+
fill: #161616;
|
|
1160
|
+
font-size: 16px;
|
|
1161
|
+
font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
1162
|
+
font-weight: 600;
|
|
323
1163
|
}
|
|
324
|
-
div.container.theme--
|
|
325
|
-
div.container.theme--
|
|
326
|
-
|
|
1164
|
+
div.container.theme--g10 .bx--cc--meter-title text.meter-title,
|
|
1165
|
+
div.container.theme--g10 .bx--cc--meter-title text.percent-value {
|
|
1166
|
+
fill: #161616;
|
|
327
1167
|
}
|
|
328
|
-
div.container.theme--
|
|
329
|
-
fill
|
|
330
|
-
transition: all 0.1s;
|
|
331
|
-
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
1168
|
+
div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--danger circle.status {
|
|
1169
|
+
fill: #da1e28;
|
|
332
1170
|
}
|
|
333
|
-
div.container.theme--
|
|
334
|
-
fill: #
|
|
1171
|
+
div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--warning circle.status {
|
|
1172
|
+
fill: #f1c21b;
|
|
1173
|
+
}
|
|
1174
|
+
div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--warning path.innerFill {
|
|
1175
|
+
fill: #000000;
|
|
1176
|
+
}
|
|
1177
|
+
div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--success circle.status {
|
|
1178
|
+
fill: #24a148;
|
|
1179
|
+
}
|
|
1180
|
+
div.container.theme--g10 .bx--cc--meter-title g.status-indicator path.innerFill {
|
|
1181
|
+
fill: #ffffff;
|
|
1182
|
+
}
|
|
1183
|
+
@keyframes skeleton {
|
|
1184
|
+
0% {
|
|
1185
|
+
width: 0%;
|
|
1186
|
+
left: 0;
|
|
1187
|
+
right: auto;
|
|
1188
|
+
opacity: 0.3;
|
|
1189
|
+
}
|
|
1190
|
+
20% {
|
|
1191
|
+
width: 100%;
|
|
1192
|
+
left: 0;
|
|
1193
|
+
right: auto;
|
|
1194
|
+
opacity: 1;
|
|
1195
|
+
}
|
|
1196
|
+
28% {
|
|
1197
|
+
width: 100%;
|
|
1198
|
+
left: auto;
|
|
1199
|
+
right: 0;
|
|
1200
|
+
}
|
|
1201
|
+
51% {
|
|
1202
|
+
width: 0%;
|
|
1203
|
+
left: auto;
|
|
1204
|
+
right: 0;
|
|
1205
|
+
}
|
|
1206
|
+
58% {
|
|
1207
|
+
width: 0%;
|
|
1208
|
+
left: auto;
|
|
1209
|
+
right: 0;
|
|
1210
|
+
}
|
|
1211
|
+
82% {
|
|
1212
|
+
width: 100%;
|
|
1213
|
+
left: auto;
|
|
1214
|
+
right: 0;
|
|
1215
|
+
}
|
|
1216
|
+
83% {
|
|
1217
|
+
width: 100%;
|
|
1218
|
+
left: 0;
|
|
1219
|
+
right: auto;
|
|
1220
|
+
}
|
|
1221
|
+
96% {
|
|
1222
|
+
width: 0%;
|
|
1223
|
+
left: 0;
|
|
1224
|
+
right: auto;
|
|
1225
|
+
}
|
|
1226
|
+
100% {
|
|
1227
|
+
width: 0%;
|
|
1228
|
+
left: 0;
|
|
1229
|
+
right: auto;
|
|
1230
|
+
opacity: 0.3;
|
|
1231
|
+
}
|
|
335
1232
|
}
|
|
336
|
-
div.container.theme--
|
|
337
|
-
|
|
1233
|
+
div.container.theme--g10 .bx--text-truncate--end {
|
|
1234
|
+
width: 100%;
|
|
1235
|
+
display: inline-block;
|
|
1236
|
+
text-overflow: ellipsis;
|
|
1237
|
+
white-space: nowrap;
|
|
1238
|
+
overflow: hidden;
|
|
338
1239
|
}
|
|
339
|
-
div.container.theme--
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
1240
|
+
div.container.theme--g10 .bx--text-truncate--front {
|
|
1241
|
+
width: 100%;
|
|
1242
|
+
display: inline-block;
|
|
1243
|
+
direction: rtl;
|
|
1244
|
+
text-overflow: ellipsis;
|
|
1245
|
+
white-space: nowrap;
|
|
1246
|
+
overflow: hidden;
|
|
343
1247
|
}
|
|
344
|
-
div.container.theme--
|
|
345
|
-
fill-opacity: 1;
|
|
346
|
-
transition: all 0.1s;
|
|
1248
|
+
div.container.theme--g10 g.bx--cc--toolbar {
|
|
347
1249
|
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
348
1250
|
}
|
|
349
|
-
div.container.theme--
|
|
350
|
-
fill: #f4f4f4;
|
|
351
|
-
stroke-width: 1.5;
|
|
352
|
-
}
|
|
353
|
-
div.container.theme--white g.bx--cc--scatter circle.dot.threshold-anomaly {
|
|
354
|
-
stroke-width: 3;
|
|
355
|
-
}
|
|
356
|
-
div.container.theme--white g.bx--cc--scatter g.lines path.line {
|
|
357
|
-
mix-blend-mode: multiply;
|
|
358
|
-
}
|
|
359
|
-
div.container.theme--white .bx--cc--meter rect.container {
|
|
1251
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button {
|
|
360
1252
|
fill: #f4f4f4;
|
|
1253
|
+
cursor: pointer;
|
|
361
1254
|
}
|
|
362
|
-
div.container.theme--
|
|
363
|
-
fill: #
|
|
364
|
-
}
|
|
365
|
-
div.container.theme--white .bx--cc--meter rect.value.status--warning {
|
|
366
|
-
fill: #f1c21b;
|
|
367
|
-
stroke-width: 1px;
|
|
368
|
-
stroke: #b28600;
|
|
369
|
-
}
|
|
370
|
-
div.container.theme--white .bx--cc--meter rect.value.status--success {
|
|
371
|
-
fill: #24a148;
|
|
372
|
-
}
|
|
373
|
-
div.container.theme--white .bx--cc--meter line.peak {
|
|
374
|
-
stroke: #161616;
|
|
375
|
-
stroke-width: 2px;
|
|
1255
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button:hover .toolbar-button-background {
|
|
1256
|
+
fill: #e5e5e5;
|
|
376
1257
|
}
|
|
377
|
-
div.container.theme--
|
|
1258
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button:hover .toolbar-button-background--disabled {
|
|
378
1259
|
fill: #f4f4f4;
|
|
379
|
-
stroke-width: 1.5;
|
|
380
1260
|
}
|
|
381
|
-
div.container.theme--
|
|
382
|
-
stroke
|
|
1261
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button--focusable:focus .toolbar-button-background {
|
|
1262
|
+
stroke: #525252;
|
|
1263
|
+
stroke-width: 2;
|
|
1264
|
+
stroke-dasharray: 2;
|
|
383
1265
|
}
|
|
384
|
-
div.container.theme--
|
|
385
|
-
|
|
1266
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon {
|
|
1267
|
+
pointer-events: visible;
|
|
386
1268
|
}
|
|
387
|
-
div.container.theme--
|
|
388
|
-
|
|
389
|
-
stroke-width: 1px;
|
|
390
|
-
stroke: #e0e0e0;
|
|
1269
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon circle, div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon rect, div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon path, div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon polygon {
|
|
1270
|
+
fill: #525252;
|
|
391
1271
|
}
|
|
392
|
-
div.container.theme--
|
|
393
|
-
|
|
1272
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon:hover {
|
|
1273
|
+
cursor: pointer;
|
|
1274
|
+
pointer-events: visible;
|
|
394
1275
|
}
|
|
395
|
-
div.container.theme--
|
|
396
|
-
|
|
1276
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled {
|
|
1277
|
+
pointer-events: auto;
|
|
397
1278
|
}
|
|
398
|
-
div.container.theme--
|
|
399
|
-
fill: #
|
|
1279
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled circle, div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled rect, div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled path, div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled polygon {
|
|
1280
|
+
fill: #8d8d8d;
|
|
400
1281
|
}
|
|
401
|
-
div.container.theme--
|
|
402
|
-
|
|
1282
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled:hover {
|
|
1283
|
+
cursor: auto;
|
|
1284
|
+
pointer-events: auto;
|
|
403
1285
|
}
|
|
404
|
-
div.container.theme--
|
|
405
|
-
fill: #
|
|
1286
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button--hovered {
|
|
1287
|
+
fill: #e5e5e5;
|
|
406
1288
|
}
|
|
407
|
-
div.container.theme--
|
|
408
|
-
|
|
1289
|
+
div.container.theme--g10 g.bx--cc--toolbar .toolbar-container .toolbar-button--disabled {
|
|
1290
|
+
cursor: auto;
|
|
409
1291
|
}
|
|
410
|
-
div.container.theme--
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
1292
|
+
div.container.theme--g10 .bx--overflow-menu__trigger {
|
|
1293
|
+
box-sizing: border-box;
|
|
1294
|
+
margin: 0;
|
|
1295
|
+
padding: 0;
|
|
1296
|
+
border: 0;
|
|
1297
|
+
font-size: 100%;
|
|
1298
|
+
font-family: inherit;
|
|
1299
|
+
vertical-align: baseline;
|
|
1300
|
+
display: inline-block;
|
|
1301
|
+
background: none;
|
|
1302
|
+
appearance: none;
|
|
1303
|
+
border: 0;
|
|
1304
|
+
padding: 0;
|
|
1305
|
+
cursor: pointer;
|
|
1306
|
+
width: 100%;
|
|
414
1307
|
}
|
|
415
|
-
div.container.theme--
|
|
416
|
-
|
|
417
|
-
font-size: 16px;
|
|
418
|
-
font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
1308
|
+
div.container.theme--g10 .bx--overflow-menu__trigger > *, div.container.theme--g10 .bx--overflow-menu__trigger > *:before, div.container.theme--g10 .bx--overflow-menu__trigger > *:after {
|
|
1309
|
+
box-sizing: inherit;
|
|
419
1310
|
}
|
|
420
|
-
div.container.theme--
|
|
421
|
-
|
|
1311
|
+
div.container.theme--g10 .bx--overflow-menu__trigger::-moz-focus-inner {
|
|
1312
|
+
border: 0;
|
|
422
1313
|
}
|
|
423
|
-
div.container.theme--
|
|
1314
|
+
div.container.theme--g10 .bx--overflow-menu,
|
|
1315
|
+
div.container.theme--g10 .bx--overflow-menu__trigger {
|
|
1316
|
+
box-sizing: border-box;
|
|
1317
|
+
margin: 0;
|
|
1318
|
+
padding: 0;
|
|
1319
|
+
border: 0;
|
|
1320
|
+
font-size: 100%;
|
|
1321
|
+
font-family: inherit;
|
|
1322
|
+
vertical-align: baseline;
|
|
1323
|
+
outline: 2px solid transparent;
|
|
1324
|
+
outline-offset: -2px;
|
|
424
1325
|
position: relative;
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
}
|
|
433
|
-
div.container.theme--g10 {
|
|
434
|
-
color: #161616;
|
|
435
|
-
background-color: #f4f4f4;
|
|
436
|
-
line-height: 1;
|
|
1326
|
+
width: 2rem;
|
|
1327
|
+
height: 2rem;
|
|
1328
|
+
display: flex;
|
|
1329
|
+
align-items: center;
|
|
1330
|
+
justify-content: center;
|
|
1331
|
+
cursor: pointer;
|
|
1332
|
+
transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
437
1333
|
}
|
|
438
|
-
div.container.theme--g10 .bx--
|
|
439
|
-
|
|
1334
|
+
div.container.theme--g10 .bx--overflow-menu > *, div.container.theme--g10 .bx--overflow-menu > *:before, div.container.theme--g10 .bx--overflow-menu > *:after,
|
|
1335
|
+
div.container.theme--g10 .bx--overflow-menu__trigger > *,
|
|
1336
|
+
div.container.theme--g10 .bx--overflow-menu__trigger > *:before,
|
|
1337
|
+
div.container.theme--g10 .bx--overflow-menu__trigger > *:after {
|
|
1338
|
+
box-sizing: inherit;
|
|
440
1339
|
}
|
|
441
|
-
div.container.theme--g10 .bx--
|
|
442
|
-
|
|
443
|
-
|
|
1340
|
+
div.container.theme--g10 .bx--overflow-menu:focus,
|
|
1341
|
+
div.container.theme--g10 .bx--overflow-menu__trigger:focus {
|
|
1342
|
+
outline: 2px solid #0f62fe;
|
|
1343
|
+
outline-offset: -2px;
|
|
444
1344
|
}
|
|
445
|
-
div.container.theme--g10 .bx--
|
|
446
|
-
|
|
1345
|
+
div.container.theme--g10 .bx--overflow-menu:hover,
|
|
1346
|
+
div.container.theme--g10 .bx--overflow-menu__trigger:hover {
|
|
1347
|
+
background-color: #e5e5e5;
|
|
447
1348
|
}
|
|
448
|
-
div.container.theme--g10 .bx--
|
|
449
|
-
|
|
1349
|
+
div.container.theme--g10 .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus {
|
|
1350
|
+
outline: 2px solid #0f62fe;
|
|
1351
|
+
outline-offset: -2px;
|
|
450
1352
|
}
|
|
451
|
-
div.container.theme--g10 .bx--
|
|
452
|
-
|
|
1353
|
+
div.container.theme--g10 .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus svg {
|
|
1354
|
+
outline: none;
|
|
453
1355
|
}
|
|
454
|
-
div.container.theme--g10 .bx--
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
1356
|
+
div.container.theme--g10 .bx--overflow-menu.bx--overflow-menu--open,
|
|
1357
|
+
div.container.theme--g10 .bx--overflow-menu.bx--overflow-menu--open .bx--overflow-menu__trigger {
|
|
1358
|
+
background-color: #ffffff;
|
|
1359
|
+
transition: none;
|
|
1360
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
458
1361
|
}
|
|
459
|
-
div.container.theme--g10
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
1362
|
+
div.container.theme--g10 .bx--overflow-menu__icon {
|
|
1363
|
+
height: 1rem;
|
|
1364
|
+
width: 1rem;
|
|
1365
|
+
fill: #161616;
|
|
463
1366
|
}
|
|
464
|
-
div.container.theme--g10 .bx--
|
|
465
|
-
|
|
1367
|
+
div.container.theme--g10 .bx--overflow-menu-options {
|
|
1368
|
+
box-sizing: border-box;
|
|
1369
|
+
margin: 0;
|
|
1370
|
+
padding: 0;
|
|
1371
|
+
border: 0;
|
|
1372
|
+
font-size: 100%;
|
|
1373
|
+
font-family: inherit;
|
|
1374
|
+
vertical-align: baseline;
|
|
1375
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
1376
|
+
display: none;
|
|
1377
|
+
flex-direction: column;
|
|
1378
|
+
align-items: flex-start;
|
|
1379
|
+
position: absolute;
|
|
1380
|
+
z-index: 10000;
|
|
1381
|
+
background-color: #ffffff;
|
|
1382
|
+
width: 10rem;
|
|
1383
|
+
list-style: none;
|
|
1384
|
+
top: 32px;
|
|
1385
|
+
left: 0;
|
|
466
1386
|
}
|
|
467
|
-
div.container.theme--g10 .bx--
|
|
468
|
-
|
|
1387
|
+
div.container.theme--g10 .bx--overflow-menu-options > *, div.container.theme--g10 .bx--overflow-menu-options > *:before, div.container.theme--g10 .bx--overflow-menu-options > *:after {
|
|
1388
|
+
box-sizing: inherit;
|
|
469
1389
|
}
|
|
470
|
-
div.container.theme--g10 .bx--
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
1390
|
+
div.container.theme--g10 .bx--overflow-menu-options::after {
|
|
1391
|
+
content: "";
|
|
1392
|
+
position: absolute;
|
|
1393
|
+
display: block;
|
|
1394
|
+
background-color: #ffffff;
|
|
1395
|
+
transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
475
1396
|
}
|
|
476
|
-
div.container.theme--g10 .bx--
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
1397
|
+
div.container.theme--g10 .bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
1398
|
+
top: -0.1875rem;
|
|
1399
|
+
left: 0;
|
|
1400
|
+
width: 2rem;
|
|
1401
|
+
height: 0.1875rem;
|
|
480
1402
|
}
|
|
481
|
-
div.container.theme--g10 .bx--
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
1403
|
+
div.container.theme--g10 .bx--overflow-menu-options[data-floating-menu-direction=top]::after {
|
|
1404
|
+
bottom: -0.375rem;
|
|
1405
|
+
left: 0;
|
|
1406
|
+
width: 2rem;
|
|
1407
|
+
height: 0.375rem;
|
|
486
1408
|
}
|
|
487
|
-
div.container.theme--g10 .bx--
|
|
488
|
-
|
|
1409
|
+
div.container.theme--g10 .bx--overflow-menu-options[data-floating-menu-direction=left]::after {
|
|
1410
|
+
right: -0.375rem;
|
|
1411
|
+
top: 0;
|
|
1412
|
+
height: 2rem;
|
|
1413
|
+
width: 0.375rem;
|
|
489
1414
|
}
|
|
490
|
-
div.container.theme--g10 .bx--
|
|
491
|
-
|
|
492
|
-
|
|
1415
|
+
div.container.theme--g10 .bx--overflow-menu-options[data-floating-menu-direction=right]::after {
|
|
1416
|
+
top: 0;
|
|
1417
|
+
left: -0.375rem;
|
|
1418
|
+
height: 2rem;
|
|
1419
|
+
width: 0.375rem;
|
|
493
1420
|
}
|
|
494
|
-
div.container.theme--g10 .bx--
|
|
495
|
-
|
|
496
|
-
|
|
1421
|
+
div.container.theme--g10 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=top]::after,
|
|
1422
|
+
div.container.theme--g10 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
1423
|
+
left: auto;
|
|
1424
|
+
right: 0;
|
|
497
1425
|
}
|
|
498
|
-
div.container.theme--g10 .bx--
|
|
499
|
-
|
|
1426
|
+
div.container.theme--g10 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=left]::after,
|
|
1427
|
+
div.container.theme--g10 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=right]::after {
|
|
1428
|
+
top: auto;
|
|
1429
|
+
bottom: 0;
|
|
500
1430
|
}
|
|
501
|
-
div.container.theme--g10 .bx--
|
|
502
|
-
|
|
1431
|
+
div.container.theme--g10 .bx--overflow-menu-options--open {
|
|
1432
|
+
display: flex;
|
|
503
1433
|
}
|
|
504
|
-
div.container.theme--g10 .bx--
|
|
505
|
-
|
|
1434
|
+
div.container.theme--g10 .bx--overflow-menu-options__option {
|
|
1435
|
+
box-sizing: border-box;
|
|
1436
|
+
margin: 0;
|
|
1437
|
+
padding: 0;
|
|
1438
|
+
border: 0;
|
|
1439
|
+
font-size: 100%;
|
|
1440
|
+
font-family: inherit;
|
|
1441
|
+
vertical-align: baseline;
|
|
1442
|
+
display: flex;
|
|
1443
|
+
background-color: transparent;
|
|
1444
|
+
align-items: center;
|
|
1445
|
+
width: 100%;
|
|
1446
|
+
height: 2.5rem;
|
|
1447
|
+
padding: 0;
|
|
1448
|
+
transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
506
1449
|
}
|
|
507
|
-
div.container.theme--g10 .bx--
|
|
508
|
-
|
|
1450
|
+
div.container.theme--g10 .bx--overflow-menu-options__option > *, div.container.theme--g10 .bx--overflow-menu-options__option > *:before, div.container.theme--g10 .bx--overflow-menu-options__option > *:after {
|
|
1451
|
+
box-sizing: inherit;
|
|
509
1452
|
}
|
|
510
|
-
div.container.theme--g10 .bx--
|
|
511
|
-
|
|
1453
|
+
div.container.theme--g10 .bx--overflow-menu--divider {
|
|
1454
|
+
border-top: 1px solid #e0e0e0;
|
|
512
1455
|
}
|
|
513
|
-
div.container.theme--g10 .bx--
|
|
514
|
-
|
|
1456
|
+
div.container.theme--g10 a.bx--overflow-menu-options__btn::before {
|
|
1457
|
+
content: "";
|
|
1458
|
+
height: 100%;
|
|
1459
|
+
vertical-align: middle;
|
|
1460
|
+
display: inline-block;
|
|
515
1461
|
}
|
|
516
|
-
div.container.theme--g10 .bx--
|
|
517
|
-
|
|
1462
|
+
div.container.theme--g10 .bx--overflow-menu-options__btn {
|
|
1463
|
+
font-size: 0.875rem;
|
|
1464
|
+
font-weight: 400;
|
|
1465
|
+
line-height: 1.125rem;
|
|
1466
|
+
letter-spacing: 0.16px;
|
|
1467
|
+
outline: 2px solid transparent;
|
|
1468
|
+
outline-offset: -2px;
|
|
1469
|
+
font-weight: 400;
|
|
1470
|
+
width: 100%;
|
|
1471
|
+
height: 100%;
|
|
1472
|
+
border: none;
|
|
1473
|
+
display: inline-flex;
|
|
1474
|
+
align-items: center;
|
|
1475
|
+
background-color: transparent;
|
|
1476
|
+
text-align: left;
|
|
1477
|
+
padding: 0 1rem;
|
|
1478
|
+
cursor: pointer;
|
|
1479
|
+
color: #393939;
|
|
1480
|
+
max-width: 11.25rem;
|
|
1481
|
+
transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9), color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
518
1482
|
}
|
|
519
|
-
div.container.theme--g10 .bx--
|
|
520
|
-
|
|
1483
|
+
div.container.theme--g10 .bx--overflow-menu-options__btn:hover {
|
|
1484
|
+
color: #161616;
|
|
521
1485
|
}
|
|
522
|
-
div.container.theme--g10
|
|
523
|
-
|
|
1486
|
+
div.container.theme--g10 .bx--overflow-menu-options__btn:focus {
|
|
1487
|
+
outline: 2px solid #0f62fe;
|
|
1488
|
+
outline-offset: -2px;
|
|
524
1489
|
}
|
|
525
|
-
div.container.theme--g10
|
|
526
|
-
|
|
527
|
-
stroke-opacity: 1;
|
|
1490
|
+
div.container.theme--g10 .bx--overflow-menu-options__btn::-moz-focus-inner {
|
|
1491
|
+
border: none;
|
|
528
1492
|
}
|
|
529
|
-
div.container.theme--g10
|
|
530
|
-
|
|
531
|
-
fill: #f4f4f4;
|
|
1493
|
+
div.container.theme--g10 .bx--overflow-menu-options__btn svg {
|
|
1494
|
+
fill: #525252;
|
|
532
1495
|
}
|
|
533
|
-
div.container.theme--g10
|
|
534
|
-
|
|
1496
|
+
div.container.theme--g10 .bx--overflow-menu-options__btn:hover svg {
|
|
1497
|
+
fill: #161616;
|
|
535
1498
|
}
|
|
536
|
-
div.container.theme--g10
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
1499
|
+
div.container.theme--g10 .bx--overflow-menu-options__option-content {
|
|
1500
|
+
white-space: nowrap;
|
|
1501
|
+
overflow: hidden;
|
|
1502
|
+
text-overflow: ellipsis;
|
|
540
1503
|
}
|
|
541
|
-
div.container.theme--g10
|
|
542
|
-
|
|
543
|
-
stroke: #f4f4f4;
|
|
1504
|
+
div.container.theme--g10 .bx--overflow-menu-options__option:hover {
|
|
1505
|
+
background-color: #e5e5e5;
|
|
544
1506
|
}
|
|
545
|
-
div.container.theme--g10
|
|
546
|
-
|
|
547
|
-
fill: #393939;
|
|
1507
|
+
div.container.theme--g10 .bx--overflow-menu-options__option--danger {
|
|
1508
|
+
border-top: 1px solid #e0e0e0;
|
|
548
1509
|
}
|
|
549
|
-
div.container.theme--g10
|
|
550
|
-
|
|
1510
|
+
div.container.theme--g10 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover,
|
|
1511
|
+
div.container.theme--g10 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus {
|
|
1512
|
+
color: #ffffff;
|
|
1513
|
+
background-color: #da1e28;
|
|
551
1514
|
}
|
|
552
|
-
div.container.theme--g10 .bx--
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
556
|
-
font-weight: 600;
|
|
1515
|
+
div.container.theme--g10 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover svg,
|
|
1516
|
+
div.container.theme--g10 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus svg {
|
|
1517
|
+
fill: #ffffff;
|
|
557
1518
|
}
|
|
558
|
-
div.container.theme--g10 .bx--
|
|
559
|
-
|
|
560
|
-
|
|
1519
|
+
div.container.theme--g10 .bx--overflow-menu-options__option--disabled:hover {
|
|
1520
|
+
background-color: #ffffff;
|
|
1521
|
+
cursor: not-allowed;
|
|
561
1522
|
}
|
|
562
|
-
div.container.theme--g10 .bx--
|
|
563
|
-
|
|
1523
|
+
div.container.theme--g10 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn {
|
|
1524
|
+
color: #c6c6c6;
|
|
1525
|
+
pointer-events: none;
|
|
564
1526
|
}
|
|
565
|
-
div.container.theme--g10 .bx--
|
|
566
|
-
|
|
1527
|
+
div.container.theme--g10 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:hover, div.container.theme--g10 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:active, div.container.theme--g10 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:focus {
|
|
1528
|
+
outline: 2px solid transparent;
|
|
1529
|
+
outline-offset: -2px;
|
|
1530
|
+
background-color: #ffffff;
|
|
567
1531
|
}
|
|
568
|
-
div.container.theme--g10 .bx--
|
|
569
|
-
fill: #
|
|
1532
|
+
div.container.theme--g10 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn svg {
|
|
1533
|
+
fill: #c6c6c6;
|
|
570
1534
|
}
|
|
571
|
-
div.container.theme--g10 .bx--
|
|
572
|
-
|
|
1535
|
+
div.container.theme--g10 .bx--overflow-menu--flip {
|
|
1536
|
+
left: -140px;
|
|
573
1537
|
}
|
|
574
|
-
div.container.theme--g10 .bx--
|
|
575
|
-
|
|
1538
|
+
div.container.theme--g10 .bx--overflow-menu--flip:before {
|
|
1539
|
+
left: 145px;
|
|
576
1540
|
}
|
|
577
1541
|
div.container.theme--g10 .bx--cc--tooltip {
|
|
578
1542
|
background-color: #f4f4f4;
|
|
@@ -920,66 +1884,359 @@ div.container.theme--g90 .bx--cc--skeleton #shimmer-areas .stop-bg-shimmer {
|
|
|
920
1884
|
div.container.theme--g90 .bx--cc--skeleton #shimmer-areas .stop-shimmer {
|
|
921
1885
|
stop-color: rgba(255, 255, 255, 0.15);
|
|
922
1886
|
}
|
|
923
|
-
div.container.theme--g90 .bx--cc--zero-line line.domain {
|
|
924
|
-
stroke: #8d8d8d;
|
|
1887
|
+
div.container.theme--g90 .bx--cc--zero-line line.domain {
|
|
1888
|
+
stroke: #8d8d8d;
|
|
1889
|
+
}
|
|
1890
|
+
div.container.theme--g90 .bx--cc--chart-svg svg.layout-child {
|
|
1891
|
+
overflow: visible;
|
|
1892
|
+
}
|
|
1893
|
+
div.container.theme--g90 g.bx--cc--legend {
|
|
1894
|
+
user-select: none;
|
|
1895
|
+
}
|
|
1896
|
+
div.container.theme--g90 g.bx--cc--legend g.legend-item rect.checkbox {
|
|
1897
|
+
stroke-width: 1px;
|
|
1898
|
+
stroke-opacity: 1;
|
|
1899
|
+
}
|
|
1900
|
+
div.container.theme--g90 g.bx--cc--legend g.legend-item rect.checkbox:not(.active) {
|
|
1901
|
+
stroke: #c6c6c6;
|
|
1902
|
+
fill: #262626;
|
|
1903
|
+
}
|
|
1904
|
+
div.container.theme--g90 g.bx--cc--legend g.legend-item rect.checkbox:not(.active) ~ g.check {
|
|
1905
|
+
display: none;
|
|
1906
|
+
}
|
|
1907
|
+
div.container.theme--g90 g.bx--cc--legend g.legend-item rect.hover-stroke {
|
|
1908
|
+
fill: none;
|
|
1909
|
+
stroke: #0f62fe;
|
|
1910
|
+
stroke-width: 2;
|
|
1911
|
+
}
|
|
1912
|
+
div.container.theme--g90 g.bx--cc--legend g.legend-item g.check > svg path {
|
|
1913
|
+
fill: #262626;
|
|
1914
|
+
stroke: #262626;
|
|
1915
|
+
}
|
|
1916
|
+
div.container.theme--g90 g.bx--cc--legend g.legend-item text {
|
|
1917
|
+
font-size: 12px;
|
|
1918
|
+
fill: #c6c6c6;
|
|
1919
|
+
}
|
|
1920
|
+
div.container.theme--g90 g.bx--cc--legend.clickable g.legend-item:hover {
|
|
1921
|
+
cursor: pointer;
|
|
1922
|
+
}
|
|
1923
|
+
div.container.theme--g90 .bx--cc--title text.title {
|
|
1924
|
+
fill: #f4f4f4;
|
|
1925
|
+
font-size: 16px;
|
|
1926
|
+
font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
1927
|
+
font-weight: 600;
|
|
1928
|
+
}
|
|
1929
|
+
div.container.theme--g90 .bx--cc--meter-title text.meter-title,
|
|
1930
|
+
div.container.theme--g90 .bx--cc--meter-title text.percent-value {
|
|
1931
|
+
fill: #f4f4f4;
|
|
1932
|
+
}
|
|
1933
|
+
div.container.theme--g90 .bx--cc--meter-title g.status-indicator.status--danger circle.status {
|
|
1934
|
+
fill: #ff8389;
|
|
1935
|
+
}
|
|
1936
|
+
div.container.theme--g90 .bx--cc--meter-title g.status-indicator.status--warning circle.status {
|
|
1937
|
+
fill: #f1c21b;
|
|
1938
|
+
}
|
|
1939
|
+
div.container.theme--g90 .bx--cc--meter-title g.status-indicator.status--warning path.innerFill {
|
|
1940
|
+
fill: #000000;
|
|
1941
|
+
}
|
|
1942
|
+
div.container.theme--g90 .bx--cc--meter-title g.status-indicator.status--success circle.status {
|
|
1943
|
+
fill: #42be65;
|
|
1944
|
+
}
|
|
1945
|
+
div.container.theme--g90 .bx--cc--meter-title g.status-indicator path.innerFill {
|
|
1946
|
+
fill: #000000;
|
|
1947
|
+
}
|
|
1948
|
+
div.container.theme--g90 g.bx--cc--toolbar {
|
|
1949
|
+
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
1950
|
+
}
|
|
1951
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button {
|
|
1952
|
+
fill: #262626;
|
|
1953
|
+
cursor: pointer;
|
|
1954
|
+
}
|
|
1955
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button:hover .toolbar-button-background {
|
|
1956
|
+
fill: #4c4c4c;
|
|
1957
|
+
}
|
|
1958
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button:hover .toolbar-button-background--disabled {
|
|
1959
|
+
fill: #262626;
|
|
1960
|
+
}
|
|
1961
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button--focusable:focus .toolbar-button-background {
|
|
1962
|
+
stroke: #c6c6c6;
|
|
1963
|
+
stroke-width: 2;
|
|
1964
|
+
stroke-dasharray: 2;
|
|
1965
|
+
}
|
|
1966
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon {
|
|
1967
|
+
pointer-events: visible;
|
|
1968
|
+
}
|
|
1969
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon circle, div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon rect, div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon path, div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon polygon {
|
|
1970
|
+
fill: #c6c6c6;
|
|
1971
|
+
}
|
|
1972
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon:hover {
|
|
1973
|
+
cursor: pointer;
|
|
1974
|
+
pointer-events: visible;
|
|
1975
|
+
}
|
|
1976
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled {
|
|
1977
|
+
pointer-events: auto;
|
|
1978
|
+
}
|
|
1979
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled circle, div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled rect, div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled path, div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled polygon {
|
|
1980
|
+
fill: #a8a8a8;
|
|
1981
|
+
}
|
|
1982
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled:hover {
|
|
1983
|
+
cursor: auto;
|
|
1984
|
+
pointer-events: auto;
|
|
1985
|
+
}
|
|
1986
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button--hovered {
|
|
1987
|
+
fill: #4c4c4c;
|
|
1988
|
+
}
|
|
1989
|
+
div.container.theme--g90 g.bx--cc--toolbar .toolbar-container .toolbar-button--disabled {
|
|
1990
|
+
cursor: auto;
|
|
1991
|
+
}
|
|
1992
|
+
div.container.theme--g90 .bx--overflow-menu__trigger {
|
|
1993
|
+
box-sizing: border-box;
|
|
1994
|
+
margin: 0;
|
|
1995
|
+
padding: 0;
|
|
1996
|
+
border: 0;
|
|
1997
|
+
font-size: 100%;
|
|
1998
|
+
font-family: inherit;
|
|
1999
|
+
vertical-align: baseline;
|
|
2000
|
+
display: inline-block;
|
|
2001
|
+
background: none;
|
|
2002
|
+
appearance: none;
|
|
2003
|
+
border: 0;
|
|
2004
|
+
padding: 0;
|
|
2005
|
+
cursor: pointer;
|
|
2006
|
+
width: 100%;
|
|
2007
|
+
}
|
|
2008
|
+
div.container.theme--g90 .bx--overflow-menu__trigger > *, div.container.theme--g90 .bx--overflow-menu__trigger > *:before, div.container.theme--g90 .bx--overflow-menu__trigger > *:after {
|
|
2009
|
+
box-sizing: inherit;
|
|
2010
|
+
}
|
|
2011
|
+
div.container.theme--g90 .bx--overflow-menu__trigger::-moz-focus-inner {
|
|
2012
|
+
border: 0;
|
|
2013
|
+
}
|
|
2014
|
+
div.container.theme--g90 .bx--overflow-menu,
|
|
2015
|
+
div.container.theme--g90 .bx--overflow-menu__trigger {
|
|
2016
|
+
box-sizing: border-box;
|
|
2017
|
+
margin: 0;
|
|
2018
|
+
padding: 0;
|
|
2019
|
+
border: 0;
|
|
2020
|
+
font-size: 100%;
|
|
2021
|
+
font-family: inherit;
|
|
2022
|
+
vertical-align: baseline;
|
|
2023
|
+
outline: 2px solid transparent;
|
|
2024
|
+
outline-offset: -2px;
|
|
2025
|
+
position: relative;
|
|
2026
|
+
width: 2rem;
|
|
2027
|
+
height: 2rem;
|
|
2028
|
+
display: flex;
|
|
2029
|
+
align-items: center;
|
|
2030
|
+
justify-content: center;
|
|
2031
|
+
cursor: pointer;
|
|
2032
|
+
transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
2033
|
+
}
|
|
2034
|
+
div.container.theme--g90 .bx--overflow-menu > *, div.container.theme--g90 .bx--overflow-menu > *:before, div.container.theme--g90 .bx--overflow-menu > *:after,
|
|
2035
|
+
div.container.theme--g90 .bx--overflow-menu__trigger > *,
|
|
2036
|
+
div.container.theme--g90 .bx--overflow-menu__trigger > *:before,
|
|
2037
|
+
div.container.theme--g90 .bx--overflow-menu__trigger > *:after {
|
|
2038
|
+
box-sizing: inherit;
|
|
2039
|
+
}
|
|
2040
|
+
div.container.theme--g90 .bx--overflow-menu:focus,
|
|
2041
|
+
div.container.theme--g90 .bx--overflow-menu__trigger:focus {
|
|
2042
|
+
outline: 2px solid #ffffff;
|
|
2043
|
+
outline-offset: -2px;
|
|
2044
|
+
}
|
|
2045
|
+
div.container.theme--g90 .bx--overflow-menu:hover,
|
|
2046
|
+
div.container.theme--g90 .bx--overflow-menu__trigger:hover {
|
|
2047
|
+
background-color: #4c4c4c;
|
|
2048
|
+
}
|
|
2049
|
+
div.container.theme--g90 .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus {
|
|
2050
|
+
outline: 2px solid #ffffff;
|
|
2051
|
+
outline-offset: -2px;
|
|
2052
|
+
}
|
|
2053
|
+
div.container.theme--g90 .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus svg {
|
|
2054
|
+
outline: none;
|
|
2055
|
+
}
|
|
2056
|
+
div.container.theme--g90 .bx--overflow-menu.bx--overflow-menu--open,
|
|
2057
|
+
div.container.theme--g90 .bx--overflow-menu.bx--overflow-menu--open .bx--overflow-menu__trigger {
|
|
2058
|
+
background-color: #393939;
|
|
2059
|
+
transition: none;
|
|
2060
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
2061
|
+
}
|
|
2062
|
+
div.container.theme--g90 .bx--overflow-menu__icon {
|
|
2063
|
+
height: 1rem;
|
|
2064
|
+
width: 1rem;
|
|
2065
|
+
fill: #f4f4f4;
|
|
2066
|
+
}
|
|
2067
|
+
div.container.theme--g90 .bx--overflow-menu-options {
|
|
2068
|
+
box-sizing: border-box;
|
|
2069
|
+
margin: 0;
|
|
2070
|
+
padding: 0;
|
|
2071
|
+
border: 0;
|
|
2072
|
+
font-size: 100%;
|
|
2073
|
+
font-family: inherit;
|
|
2074
|
+
vertical-align: baseline;
|
|
2075
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
2076
|
+
display: none;
|
|
2077
|
+
flex-direction: column;
|
|
2078
|
+
align-items: flex-start;
|
|
2079
|
+
position: absolute;
|
|
2080
|
+
z-index: 10000;
|
|
2081
|
+
background-color: #393939;
|
|
2082
|
+
width: 10rem;
|
|
2083
|
+
list-style: none;
|
|
2084
|
+
top: 32px;
|
|
2085
|
+
left: 0;
|
|
2086
|
+
}
|
|
2087
|
+
div.container.theme--g90 .bx--overflow-menu-options > *, div.container.theme--g90 .bx--overflow-menu-options > *:before, div.container.theme--g90 .bx--overflow-menu-options > *:after {
|
|
2088
|
+
box-sizing: inherit;
|
|
2089
|
+
}
|
|
2090
|
+
div.container.theme--g90 .bx--overflow-menu-options::after {
|
|
2091
|
+
content: "";
|
|
2092
|
+
position: absolute;
|
|
2093
|
+
display: block;
|
|
2094
|
+
background-color: #393939;
|
|
2095
|
+
transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
2096
|
+
}
|
|
2097
|
+
div.container.theme--g90 .bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
2098
|
+
top: -0.1875rem;
|
|
2099
|
+
left: 0;
|
|
2100
|
+
width: 2rem;
|
|
2101
|
+
height: 0.1875rem;
|
|
2102
|
+
}
|
|
2103
|
+
div.container.theme--g90 .bx--overflow-menu-options[data-floating-menu-direction=top]::after {
|
|
2104
|
+
bottom: -0.375rem;
|
|
2105
|
+
left: 0;
|
|
2106
|
+
width: 2rem;
|
|
2107
|
+
height: 0.375rem;
|
|
2108
|
+
}
|
|
2109
|
+
div.container.theme--g90 .bx--overflow-menu-options[data-floating-menu-direction=left]::after {
|
|
2110
|
+
right: -0.375rem;
|
|
2111
|
+
top: 0;
|
|
2112
|
+
height: 2rem;
|
|
2113
|
+
width: 0.375rem;
|
|
2114
|
+
}
|
|
2115
|
+
div.container.theme--g90 .bx--overflow-menu-options[data-floating-menu-direction=right]::after {
|
|
2116
|
+
top: 0;
|
|
2117
|
+
left: -0.375rem;
|
|
2118
|
+
height: 2rem;
|
|
2119
|
+
width: 0.375rem;
|
|
2120
|
+
}
|
|
2121
|
+
div.container.theme--g90 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=top]::after,
|
|
2122
|
+
div.container.theme--g90 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
2123
|
+
left: auto;
|
|
2124
|
+
right: 0;
|
|
2125
|
+
}
|
|
2126
|
+
div.container.theme--g90 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=left]::after,
|
|
2127
|
+
div.container.theme--g90 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=right]::after {
|
|
2128
|
+
top: auto;
|
|
2129
|
+
bottom: 0;
|
|
2130
|
+
}
|
|
2131
|
+
div.container.theme--g90 .bx--overflow-menu-options--open {
|
|
2132
|
+
display: flex;
|
|
2133
|
+
}
|
|
2134
|
+
div.container.theme--g90 .bx--overflow-menu-options__option {
|
|
2135
|
+
box-sizing: border-box;
|
|
2136
|
+
margin: 0;
|
|
2137
|
+
padding: 0;
|
|
2138
|
+
border: 0;
|
|
2139
|
+
font-size: 100%;
|
|
2140
|
+
font-family: inherit;
|
|
2141
|
+
vertical-align: baseline;
|
|
2142
|
+
display: flex;
|
|
2143
|
+
background-color: transparent;
|
|
2144
|
+
align-items: center;
|
|
2145
|
+
width: 100%;
|
|
2146
|
+
height: 2.5rem;
|
|
2147
|
+
padding: 0;
|
|
2148
|
+
transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
2149
|
+
}
|
|
2150
|
+
div.container.theme--g90 .bx--overflow-menu-options__option > *, div.container.theme--g90 .bx--overflow-menu-options__option > *:before, div.container.theme--g90 .bx--overflow-menu-options__option > *:after {
|
|
2151
|
+
box-sizing: inherit;
|
|
2152
|
+
}
|
|
2153
|
+
div.container.theme--g90 .bx--overflow-menu--divider {
|
|
2154
|
+
border-top: 1px solid #525252;
|
|
2155
|
+
}
|
|
2156
|
+
div.container.theme--g90 a.bx--overflow-menu-options__btn::before {
|
|
2157
|
+
content: "";
|
|
2158
|
+
height: 100%;
|
|
2159
|
+
vertical-align: middle;
|
|
2160
|
+
display: inline-block;
|
|
2161
|
+
}
|
|
2162
|
+
div.container.theme--g90 .bx--overflow-menu-options__btn {
|
|
2163
|
+
font-size: 0.875rem;
|
|
2164
|
+
font-weight: 400;
|
|
2165
|
+
line-height: 1.125rem;
|
|
2166
|
+
letter-spacing: 0.16px;
|
|
2167
|
+
outline: 2px solid transparent;
|
|
2168
|
+
outline-offset: -2px;
|
|
2169
|
+
font-weight: 400;
|
|
2170
|
+
width: 100%;
|
|
2171
|
+
height: 100%;
|
|
2172
|
+
border: none;
|
|
2173
|
+
display: inline-flex;
|
|
2174
|
+
align-items: center;
|
|
2175
|
+
background-color: transparent;
|
|
2176
|
+
text-align: left;
|
|
2177
|
+
padding: 0 1rem;
|
|
2178
|
+
cursor: pointer;
|
|
2179
|
+
color: #c6c6c6;
|
|
2180
|
+
max-width: 11.25rem;
|
|
2181
|
+
transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9), color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
925
2182
|
}
|
|
926
|
-
div.container.theme--g90 .bx--
|
|
927
|
-
|
|
2183
|
+
div.container.theme--g90 .bx--overflow-menu-options__btn:hover {
|
|
2184
|
+
color: #f4f4f4;
|
|
928
2185
|
}
|
|
929
|
-
div.container.theme--g90
|
|
930
|
-
|
|
2186
|
+
div.container.theme--g90 .bx--overflow-menu-options__btn:focus {
|
|
2187
|
+
outline: 2px solid #ffffff;
|
|
2188
|
+
outline-offset: -2px;
|
|
931
2189
|
}
|
|
932
|
-
div.container.theme--g90
|
|
933
|
-
|
|
934
|
-
stroke-opacity: 1;
|
|
2190
|
+
div.container.theme--g90 .bx--overflow-menu-options__btn::-moz-focus-inner {
|
|
2191
|
+
border: none;
|
|
935
2192
|
}
|
|
936
|
-
div.container.theme--g90
|
|
937
|
-
|
|
938
|
-
fill: #262626;
|
|
2193
|
+
div.container.theme--g90 .bx--overflow-menu-options__btn svg {
|
|
2194
|
+
fill: #c6c6c6;
|
|
939
2195
|
}
|
|
940
|
-
div.container.theme--g90
|
|
941
|
-
|
|
2196
|
+
div.container.theme--g90 .bx--overflow-menu-options__btn:hover svg {
|
|
2197
|
+
fill: #f4f4f4;
|
|
942
2198
|
}
|
|
943
|
-
div.container.theme--g90
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
2199
|
+
div.container.theme--g90 .bx--overflow-menu-options__option-content {
|
|
2200
|
+
white-space: nowrap;
|
|
2201
|
+
overflow: hidden;
|
|
2202
|
+
text-overflow: ellipsis;
|
|
947
2203
|
}
|
|
948
|
-
div.container.theme--g90
|
|
949
|
-
|
|
950
|
-
stroke: #262626;
|
|
2204
|
+
div.container.theme--g90 .bx--overflow-menu-options__option:hover {
|
|
2205
|
+
background-color: #4c4c4c;
|
|
951
2206
|
}
|
|
952
|
-
div.container.theme--g90
|
|
953
|
-
|
|
954
|
-
fill: #c6c6c6;
|
|
2207
|
+
div.container.theme--g90 .bx--overflow-menu-options__option--danger {
|
|
2208
|
+
border-top: 1px solid #525252;
|
|
955
2209
|
}
|
|
956
|
-
div.container.theme--g90
|
|
957
|
-
|
|
2210
|
+
div.container.theme--g90 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover,
|
|
2211
|
+
div.container.theme--g90 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus {
|
|
2212
|
+
color: #ffffff;
|
|
2213
|
+
background-color: #ff8389;
|
|
958
2214
|
}
|
|
959
|
-
div.container.theme--g90 .bx--
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
963
|
-
font-weight: 600;
|
|
2215
|
+
div.container.theme--g90 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover svg,
|
|
2216
|
+
div.container.theme--g90 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus svg {
|
|
2217
|
+
fill: #ffffff;
|
|
964
2218
|
}
|
|
965
|
-
div.container.theme--g90 .bx--
|
|
966
|
-
|
|
967
|
-
|
|
2219
|
+
div.container.theme--g90 .bx--overflow-menu-options__option--disabled:hover {
|
|
2220
|
+
background-color: #393939;
|
|
2221
|
+
cursor: not-allowed;
|
|
968
2222
|
}
|
|
969
|
-
div.container.theme--g90 .bx--
|
|
970
|
-
|
|
2223
|
+
div.container.theme--g90 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn {
|
|
2224
|
+
color: #6f6f6f;
|
|
2225
|
+
pointer-events: none;
|
|
971
2226
|
}
|
|
972
|
-
div.container.theme--g90 .bx--
|
|
973
|
-
|
|
2227
|
+
div.container.theme--g90 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:hover, div.container.theme--g90 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:active, div.container.theme--g90 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:focus {
|
|
2228
|
+
outline: 2px solid transparent;
|
|
2229
|
+
outline-offset: -2px;
|
|
2230
|
+
background-color: #393939;
|
|
974
2231
|
}
|
|
975
|
-
div.container.theme--g90 .bx--
|
|
976
|
-
fill: #
|
|
2232
|
+
div.container.theme--g90 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn svg {
|
|
2233
|
+
fill: #6f6f6f;
|
|
977
2234
|
}
|
|
978
|
-
div.container.theme--g90 .bx--
|
|
979
|
-
|
|
2235
|
+
div.container.theme--g90 .bx--overflow-menu--flip {
|
|
2236
|
+
left: -140px;
|
|
980
2237
|
}
|
|
981
|
-
div.container.theme--g90 .bx--
|
|
982
|
-
|
|
2238
|
+
div.container.theme--g90 .bx--overflow-menu--flip:before {
|
|
2239
|
+
left: 145px;
|
|
983
2240
|
}
|
|
984
2241
|
div.container.theme--g90 .bx--cc--tooltip {
|
|
985
2242
|
background-color: #525252;
|
|
@@ -1314,95 +2571,388 @@ div.container.theme--g100 .bx--cc--ruler line.ruler-line {
|
|
|
1314
2571
|
stroke-dasharray: 2;
|
|
1315
2572
|
pointer-events: none;
|
|
1316
2573
|
}
|
|
1317
|
-
div.container.theme--g100 .bx--cc--skeleton rect.chart-skeleton-backdrop {
|
|
1318
|
-
fill: #161616;
|
|
2574
|
+
div.container.theme--g100 .bx--cc--skeleton rect.chart-skeleton-backdrop {
|
|
2575
|
+
fill: #161616;
|
|
2576
|
+
}
|
|
2577
|
+
div.container.theme--g100 .bx--cc--skeleton .shimmer-effect-lines {
|
|
2578
|
+
stroke-width: 1px;
|
|
2579
|
+
stroke: url(#shimmer-lines);
|
|
2580
|
+
}
|
|
2581
|
+
div.container.theme--g100 .bx--cc--skeleton .empty-state-lines {
|
|
2582
|
+
stroke-width: 1px;
|
|
2583
|
+
stroke: #393939;
|
|
2584
|
+
}
|
|
2585
|
+
div.container.theme--g100 .bx--cc--skeleton #shimmer-lines .stop-bg-shimmer {
|
|
2586
|
+
stop-color: #393939;
|
|
2587
|
+
}
|
|
2588
|
+
div.container.theme--g100 .bx--cc--skeleton #shimmer-lines .stop-shimmer {
|
|
2589
|
+
stop-color: #ffffff;
|
|
2590
|
+
}
|
|
2591
|
+
div.container.theme--g100 .bx--cc--skeleton .shimmer-effect-areas {
|
|
2592
|
+
fill: url(#shimmer-areas);
|
|
2593
|
+
}
|
|
2594
|
+
div.container.theme--g100 .bx--cc--skeleton .empty-state-areas {
|
|
2595
|
+
fill: rgba(127, 127, 127, 0.1);
|
|
2596
|
+
}
|
|
2597
|
+
div.container.theme--g100 .bx--cc--skeleton #shimmer-areas .stop-bg-shimmer {
|
|
2598
|
+
stop-color: rgba(127, 127, 127, 0.1);
|
|
2599
|
+
}
|
|
2600
|
+
div.container.theme--g100 .bx--cc--skeleton #shimmer-areas .stop-shimmer {
|
|
2601
|
+
stop-color: rgba(255, 255, 255, 0.15);
|
|
2602
|
+
}
|
|
2603
|
+
div.container.theme--g100 .bx--cc--zero-line line.domain {
|
|
2604
|
+
stroke: #6f6f6f;
|
|
2605
|
+
}
|
|
2606
|
+
div.container.theme--g100 .bx--cc--chart-svg svg.layout-child {
|
|
2607
|
+
overflow: visible;
|
|
2608
|
+
}
|
|
2609
|
+
div.container.theme--g100 g.bx--cc--legend {
|
|
2610
|
+
user-select: none;
|
|
2611
|
+
}
|
|
2612
|
+
div.container.theme--g100 g.bx--cc--legend g.legend-item rect.checkbox {
|
|
2613
|
+
stroke-width: 1px;
|
|
2614
|
+
stroke-opacity: 1;
|
|
2615
|
+
}
|
|
2616
|
+
div.container.theme--g100 g.bx--cc--legend g.legend-item rect.checkbox:not(.active) {
|
|
2617
|
+
stroke: #c6c6c6;
|
|
2618
|
+
fill: #161616;
|
|
2619
|
+
}
|
|
2620
|
+
div.container.theme--g100 g.bx--cc--legend g.legend-item rect.checkbox:not(.active) ~ g.check {
|
|
2621
|
+
display: none;
|
|
2622
|
+
}
|
|
2623
|
+
div.container.theme--g100 g.bx--cc--legend g.legend-item rect.hover-stroke {
|
|
2624
|
+
fill: none;
|
|
2625
|
+
stroke: #0f62fe;
|
|
2626
|
+
stroke-width: 2;
|
|
2627
|
+
}
|
|
2628
|
+
div.container.theme--g100 g.bx--cc--legend g.legend-item g.check > svg path {
|
|
2629
|
+
fill: #161616;
|
|
2630
|
+
stroke: #161616;
|
|
2631
|
+
}
|
|
2632
|
+
div.container.theme--g100 g.bx--cc--legend g.legend-item text {
|
|
2633
|
+
font-size: 12px;
|
|
2634
|
+
fill: #c6c6c6;
|
|
2635
|
+
}
|
|
2636
|
+
div.container.theme--g100 g.bx--cc--legend.clickable g.legend-item:hover {
|
|
2637
|
+
cursor: pointer;
|
|
2638
|
+
}
|
|
2639
|
+
div.container.theme--g100 .bx--cc--title text.title {
|
|
2640
|
+
fill: #f4f4f4;
|
|
2641
|
+
font-size: 16px;
|
|
2642
|
+
font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
2643
|
+
font-weight: 600;
|
|
2644
|
+
}
|
|
2645
|
+
div.container.theme--g100 .bx--cc--meter-title text.meter-title,
|
|
2646
|
+
div.container.theme--g100 .bx--cc--meter-title text.percent-value {
|
|
2647
|
+
fill: #f4f4f4;
|
|
2648
|
+
}
|
|
2649
|
+
div.container.theme--g100 .bx--cc--meter-title g.status-indicator.status--danger circle.status {
|
|
2650
|
+
fill: #fa4d56;
|
|
2651
|
+
}
|
|
2652
|
+
div.container.theme--g100 .bx--cc--meter-title g.status-indicator.status--warning circle.status {
|
|
2653
|
+
fill: #f1c21b;
|
|
2654
|
+
}
|
|
2655
|
+
div.container.theme--g100 .bx--cc--meter-title g.status-indicator.status--warning path.innerFill {
|
|
2656
|
+
fill: #000000;
|
|
2657
|
+
}
|
|
2658
|
+
div.container.theme--g100 .bx--cc--meter-title g.status-indicator.status--success circle.status {
|
|
2659
|
+
fill: #42be65;
|
|
2660
|
+
}
|
|
2661
|
+
div.container.theme--g100 .bx--cc--meter-title g.status-indicator path.innerFill {
|
|
2662
|
+
fill: #000000;
|
|
2663
|
+
}
|
|
2664
|
+
div.container.theme--g100 g.bx--cc--toolbar {
|
|
2665
|
+
transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
2666
|
+
}
|
|
2667
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button {
|
|
2668
|
+
fill: #161616;
|
|
2669
|
+
cursor: pointer;
|
|
2670
|
+
}
|
|
2671
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button:hover .toolbar-button-background {
|
|
2672
|
+
fill: #353535;
|
|
2673
|
+
}
|
|
2674
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button:hover .toolbar-button-background--disabled {
|
|
2675
|
+
fill: #161616;
|
|
2676
|
+
}
|
|
2677
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button--focusable:focus .toolbar-button-background {
|
|
2678
|
+
stroke: #c6c6c6;
|
|
2679
|
+
stroke-width: 2;
|
|
2680
|
+
stroke-dasharray: 2;
|
|
2681
|
+
}
|
|
2682
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon {
|
|
2683
|
+
pointer-events: visible;
|
|
2684
|
+
}
|
|
2685
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon circle, div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon rect, div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon path, div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon polygon {
|
|
2686
|
+
fill: #c6c6c6;
|
|
2687
|
+
}
|
|
2688
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon:hover {
|
|
2689
|
+
cursor: pointer;
|
|
2690
|
+
pointer-events: visible;
|
|
2691
|
+
}
|
|
2692
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled {
|
|
2693
|
+
pointer-events: auto;
|
|
2694
|
+
}
|
|
2695
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled circle, div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled rect, div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled path, div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled polygon {
|
|
2696
|
+
fill: #8d8d8d;
|
|
2697
|
+
}
|
|
2698
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button-icon--disabled:hover {
|
|
2699
|
+
cursor: auto;
|
|
2700
|
+
pointer-events: auto;
|
|
2701
|
+
}
|
|
2702
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button--hovered {
|
|
2703
|
+
fill: #353535;
|
|
2704
|
+
}
|
|
2705
|
+
div.container.theme--g100 g.bx--cc--toolbar .toolbar-container .toolbar-button--disabled {
|
|
2706
|
+
cursor: auto;
|
|
2707
|
+
}
|
|
2708
|
+
div.container.theme--g100 .bx--overflow-menu__trigger {
|
|
2709
|
+
box-sizing: border-box;
|
|
2710
|
+
margin: 0;
|
|
2711
|
+
padding: 0;
|
|
2712
|
+
border: 0;
|
|
2713
|
+
font-size: 100%;
|
|
2714
|
+
font-family: inherit;
|
|
2715
|
+
vertical-align: baseline;
|
|
2716
|
+
display: inline-block;
|
|
2717
|
+
background: none;
|
|
2718
|
+
appearance: none;
|
|
2719
|
+
border: 0;
|
|
2720
|
+
padding: 0;
|
|
2721
|
+
cursor: pointer;
|
|
2722
|
+
width: 100%;
|
|
2723
|
+
}
|
|
2724
|
+
div.container.theme--g100 .bx--overflow-menu__trigger > *, div.container.theme--g100 .bx--overflow-menu__trigger > *:before, div.container.theme--g100 .bx--overflow-menu__trigger > *:after {
|
|
2725
|
+
box-sizing: inherit;
|
|
2726
|
+
}
|
|
2727
|
+
div.container.theme--g100 .bx--overflow-menu__trigger::-moz-focus-inner {
|
|
2728
|
+
border: 0;
|
|
2729
|
+
}
|
|
2730
|
+
div.container.theme--g100 .bx--overflow-menu,
|
|
2731
|
+
div.container.theme--g100 .bx--overflow-menu__trigger {
|
|
2732
|
+
box-sizing: border-box;
|
|
2733
|
+
margin: 0;
|
|
2734
|
+
padding: 0;
|
|
2735
|
+
border: 0;
|
|
2736
|
+
font-size: 100%;
|
|
2737
|
+
font-family: inherit;
|
|
2738
|
+
vertical-align: baseline;
|
|
2739
|
+
outline: 2px solid transparent;
|
|
2740
|
+
outline-offset: -2px;
|
|
2741
|
+
position: relative;
|
|
2742
|
+
width: 2rem;
|
|
2743
|
+
height: 2rem;
|
|
2744
|
+
display: flex;
|
|
2745
|
+
align-items: center;
|
|
2746
|
+
justify-content: center;
|
|
2747
|
+
cursor: pointer;
|
|
2748
|
+
transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
2749
|
+
}
|
|
2750
|
+
div.container.theme--g100 .bx--overflow-menu > *, div.container.theme--g100 .bx--overflow-menu > *:before, div.container.theme--g100 .bx--overflow-menu > *:after,
|
|
2751
|
+
div.container.theme--g100 .bx--overflow-menu__trigger > *,
|
|
2752
|
+
div.container.theme--g100 .bx--overflow-menu__trigger > *:before,
|
|
2753
|
+
div.container.theme--g100 .bx--overflow-menu__trigger > *:after {
|
|
2754
|
+
box-sizing: inherit;
|
|
2755
|
+
}
|
|
2756
|
+
div.container.theme--g100 .bx--overflow-menu:focus,
|
|
2757
|
+
div.container.theme--g100 .bx--overflow-menu__trigger:focus {
|
|
2758
|
+
outline: 2px solid #ffffff;
|
|
2759
|
+
outline-offset: -2px;
|
|
2760
|
+
}
|
|
2761
|
+
div.container.theme--g100 .bx--overflow-menu:hover,
|
|
2762
|
+
div.container.theme--g100 .bx--overflow-menu__trigger:hover {
|
|
2763
|
+
background-color: #353535;
|
|
2764
|
+
}
|
|
2765
|
+
div.container.theme--g100 .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus {
|
|
2766
|
+
outline: 2px solid #ffffff;
|
|
2767
|
+
outline-offset: -2px;
|
|
2768
|
+
}
|
|
2769
|
+
div.container.theme--g100 .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus svg {
|
|
2770
|
+
outline: none;
|
|
2771
|
+
}
|
|
2772
|
+
div.container.theme--g100 .bx--overflow-menu.bx--overflow-menu--open,
|
|
2773
|
+
div.container.theme--g100 .bx--overflow-menu.bx--overflow-menu--open .bx--overflow-menu__trigger {
|
|
2774
|
+
background-color: #262626;
|
|
2775
|
+
transition: none;
|
|
2776
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
2777
|
+
}
|
|
2778
|
+
div.container.theme--g100 .bx--overflow-menu__icon {
|
|
2779
|
+
height: 1rem;
|
|
2780
|
+
width: 1rem;
|
|
2781
|
+
fill: #f4f4f4;
|
|
2782
|
+
}
|
|
2783
|
+
div.container.theme--g100 .bx--overflow-menu-options {
|
|
2784
|
+
box-sizing: border-box;
|
|
2785
|
+
margin: 0;
|
|
2786
|
+
padding: 0;
|
|
2787
|
+
border: 0;
|
|
2788
|
+
font-size: 100%;
|
|
2789
|
+
font-family: inherit;
|
|
2790
|
+
vertical-align: baseline;
|
|
2791
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
2792
|
+
display: none;
|
|
2793
|
+
flex-direction: column;
|
|
2794
|
+
align-items: flex-start;
|
|
2795
|
+
position: absolute;
|
|
2796
|
+
z-index: 10000;
|
|
2797
|
+
background-color: #262626;
|
|
2798
|
+
width: 10rem;
|
|
2799
|
+
list-style: none;
|
|
2800
|
+
top: 32px;
|
|
2801
|
+
left: 0;
|
|
2802
|
+
}
|
|
2803
|
+
div.container.theme--g100 .bx--overflow-menu-options > *, div.container.theme--g100 .bx--overflow-menu-options > *:before, div.container.theme--g100 .bx--overflow-menu-options > *:after {
|
|
2804
|
+
box-sizing: inherit;
|
|
1319
2805
|
}
|
|
1320
|
-
div.container.theme--g100 .bx--
|
|
1321
|
-
|
|
1322
|
-
|
|
2806
|
+
div.container.theme--g100 .bx--overflow-menu-options::after {
|
|
2807
|
+
content: "";
|
|
2808
|
+
position: absolute;
|
|
2809
|
+
display: block;
|
|
2810
|
+
background-color: #262626;
|
|
2811
|
+
transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
1323
2812
|
}
|
|
1324
|
-
div.container.theme--g100 .bx--
|
|
1325
|
-
|
|
1326
|
-
|
|
2813
|
+
div.container.theme--g100 .bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
2814
|
+
top: -0.1875rem;
|
|
2815
|
+
left: 0;
|
|
2816
|
+
width: 2rem;
|
|
2817
|
+
height: 0.1875rem;
|
|
1327
2818
|
}
|
|
1328
|
-
div.container.theme--g100 .bx--
|
|
1329
|
-
|
|
2819
|
+
div.container.theme--g100 .bx--overflow-menu-options[data-floating-menu-direction=top]::after {
|
|
2820
|
+
bottom: -0.375rem;
|
|
2821
|
+
left: 0;
|
|
2822
|
+
width: 2rem;
|
|
2823
|
+
height: 0.375rem;
|
|
1330
2824
|
}
|
|
1331
|
-
div.container.theme--g100 .bx--
|
|
1332
|
-
|
|
2825
|
+
div.container.theme--g100 .bx--overflow-menu-options[data-floating-menu-direction=left]::after {
|
|
2826
|
+
right: -0.375rem;
|
|
2827
|
+
top: 0;
|
|
2828
|
+
height: 2rem;
|
|
2829
|
+
width: 0.375rem;
|
|
1333
2830
|
}
|
|
1334
|
-
div.container.theme--g100 .bx--
|
|
1335
|
-
|
|
2831
|
+
div.container.theme--g100 .bx--overflow-menu-options[data-floating-menu-direction=right]::after {
|
|
2832
|
+
top: 0;
|
|
2833
|
+
left: -0.375rem;
|
|
2834
|
+
height: 2rem;
|
|
2835
|
+
width: 0.375rem;
|
|
1336
2836
|
}
|
|
1337
|
-
div.container.theme--g100 .bx--
|
|
1338
|
-
|
|
2837
|
+
div.container.theme--g100 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=top]::after,
|
|
2838
|
+
div.container.theme--g100 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
2839
|
+
left: auto;
|
|
2840
|
+
right: 0;
|
|
1339
2841
|
}
|
|
1340
|
-
div.container.theme--g100 .bx--
|
|
1341
|
-
|
|
2842
|
+
div.container.theme--g100 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=left]::after,
|
|
2843
|
+
div.container.theme--g100 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=right]::after {
|
|
2844
|
+
top: auto;
|
|
2845
|
+
bottom: 0;
|
|
1342
2846
|
}
|
|
1343
|
-
div.container.theme--g100 .bx--
|
|
1344
|
-
|
|
2847
|
+
div.container.theme--g100 .bx--overflow-menu-options--open {
|
|
2848
|
+
display: flex;
|
|
1345
2849
|
}
|
|
1346
|
-
div.container.theme--g100 .bx--
|
|
1347
|
-
|
|
2850
|
+
div.container.theme--g100 .bx--overflow-menu-options__option {
|
|
2851
|
+
box-sizing: border-box;
|
|
2852
|
+
margin: 0;
|
|
2853
|
+
padding: 0;
|
|
2854
|
+
border: 0;
|
|
2855
|
+
font-size: 100%;
|
|
2856
|
+
font-family: inherit;
|
|
2857
|
+
vertical-align: baseline;
|
|
2858
|
+
display: flex;
|
|
2859
|
+
background-color: transparent;
|
|
2860
|
+
align-items: center;
|
|
2861
|
+
width: 100%;
|
|
2862
|
+
height: 2.5rem;
|
|
2863
|
+
padding: 0;
|
|
2864
|
+
transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
1348
2865
|
}
|
|
1349
|
-
div.container.theme--g100 .bx--
|
|
1350
|
-
|
|
2866
|
+
div.container.theme--g100 .bx--overflow-menu-options__option > *, div.container.theme--g100 .bx--overflow-menu-options__option > *:before, div.container.theme--g100 .bx--overflow-menu-options__option > *:after {
|
|
2867
|
+
box-sizing: inherit;
|
|
1351
2868
|
}
|
|
1352
|
-
div.container.theme--g100
|
|
1353
|
-
|
|
2869
|
+
div.container.theme--g100 .bx--overflow-menu--divider {
|
|
2870
|
+
border-top: 1px solid #393939;
|
|
1354
2871
|
}
|
|
1355
|
-
div.container.theme--g100
|
|
1356
|
-
|
|
1357
|
-
|
|
2872
|
+
div.container.theme--g100 a.bx--overflow-menu-options__btn::before {
|
|
2873
|
+
content: "";
|
|
2874
|
+
height: 100%;
|
|
2875
|
+
vertical-align: middle;
|
|
2876
|
+
display: inline-block;
|
|
1358
2877
|
}
|
|
1359
|
-
div.container.theme--g100
|
|
1360
|
-
|
|
1361
|
-
|
|
2878
|
+
div.container.theme--g100 .bx--overflow-menu-options__btn {
|
|
2879
|
+
font-size: 0.875rem;
|
|
2880
|
+
font-weight: 400;
|
|
2881
|
+
line-height: 1.125rem;
|
|
2882
|
+
letter-spacing: 0.16px;
|
|
2883
|
+
outline: 2px solid transparent;
|
|
2884
|
+
outline-offset: -2px;
|
|
2885
|
+
font-weight: 400;
|
|
2886
|
+
width: 100%;
|
|
2887
|
+
height: 100%;
|
|
2888
|
+
border: none;
|
|
2889
|
+
display: inline-flex;
|
|
2890
|
+
align-items: center;
|
|
2891
|
+
background-color: transparent;
|
|
2892
|
+
text-align: left;
|
|
2893
|
+
padding: 0 1rem;
|
|
2894
|
+
cursor: pointer;
|
|
2895
|
+
color: #c6c6c6;
|
|
2896
|
+
max-width: 11.25rem;
|
|
2897
|
+
transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9), color 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
1362
2898
|
}
|
|
1363
|
-
div.container.theme--g100
|
|
1364
|
-
|
|
2899
|
+
div.container.theme--g100 .bx--overflow-menu-options__btn:hover {
|
|
2900
|
+
color: #f4f4f4;
|
|
1365
2901
|
}
|
|
1366
|
-
div.container.theme--g100
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
stroke-width: 2;
|
|
2902
|
+
div.container.theme--g100 .bx--overflow-menu-options__btn:focus {
|
|
2903
|
+
outline: 2px solid #ffffff;
|
|
2904
|
+
outline-offset: -2px;
|
|
1370
2905
|
}
|
|
1371
|
-
div.container.theme--g100
|
|
1372
|
-
|
|
1373
|
-
stroke: #161616;
|
|
2906
|
+
div.container.theme--g100 .bx--overflow-menu-options__btn::-moz-focus-inner {
|
|
2907
|
+
border: none;
|
|
1374
2908
|
}
|
|
1375
|
-
div.container.theme--g100
|
|
1376
|
-
font-size: 12px;
|
|
2909
|
+
div.container.theme--g100 .bx--overflow-menu-options__btn svg {
|
|
1377
2910
|
fill: #c6c6c6;
|
|
1378
2911
|
}
|
|
1379
|
-
div.container.theme--g100
|
|
1380
|
-
cursor: pointer;
|
|
1381
|
-
}
|
|
1382
|
-
div.container.theme--g100 .bx--cc--title text.title {
|
|
2912
|
+
div.container.theme--g100 .bx--overflow-menu-options__btn:hover svg {
|
|
1383
2913
|
fill: #f4f4f4;
|
|
1384
|
-
font-size: 16px;
|
|
1385
|
-
font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
1386
|
-
font-weight: 600;
|
|
1387
2914
|
}
|
|
1388
|
-
div.container.theme--g100 .bx--
|
|
1389
|
-
|
|
1390
|
-
|
|
2915
|
+
div.container.theme--g100 .bx--overflow-menu-options__option-content {
|
|
2916
|
+
white-space: nowrap;
|
|
2917
|
+
overflow: hidden;
|
|
2918
|
+
text-overflow: ellipsis;
|
|
1391
2919
|
}
|
|
1392
|
-
div.container.theme--g100 .bx--
|
|
1393
|
-
|
|
2920
|
+
div.container.theme--g100 .bx--overflow-menu-options__option:hover {
|
|
2921
|
+
background-color: #353535;
|
|
1394
2922
|
}
|
|
1395
|
-
div.container.theme--g100 .bx--
|
|
1396
|
-
|
|
2923
|
+
div.container.theme--g100 .bx--overflow-menu-options__option--danger {
|
|
2924
|
+
border-top: 1px solid #393939;
|
|
1397
2925
|
}
|
|
1398
|
-
div.container.theme--g100 .bx--
|
|
1399
|
-
|
|
2926
|
+
div.container.theme--g100 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover,
|
|
2927
|
+
div.container.theme--g100 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus {
|
|
2928
|
+
color: #ffffff;
|
|
2929
|
+
background-color: #fa4d56;
|
|
1400
2930
|
}
|
|
1401
|
-
div.container.theme--g100 .bx--
|
|
1402
|
-
|
|
2931
|
+
div.container.theme--g100 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover svg,
|
|
2932
|
+
div.container.theme--g100 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus svg {
|
|
2933
|
+
fill: #ffffff;
|
|
1403
2934
|
}
|
|
1404
|
-
div.container.theme--g100 .bx--
|
|
1405
|
-
|
|
2935
|
+
div.container.theme--g100 .bx--overflow-menu-options__option--disabled:hover {
|
|
2936
|
+
background-color: #262626;
|
|
2937
|
+
cursor: not-allowed;
|
|
2938
|
+
}
|
|
2939
|
+
div.container.theme--g100 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn {
|
|
2940
|
+
color: #525252;
|
|
2941
|
+
pointer-events: none;
|
|
2942
|
+
}
|
|
2943
|
+
div.container.theme--g100 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:hover, div.container.theme--g100 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:active, div.container.theme--g100 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:focus {
|
|
2944
|
+
outline: 2px solid transparent;
|
|
2945
|
+
outline-offset: -2px;
|
|
2946
|
+
background-color: #262626;
|
|
2947
|
+
}
|
|
2948
|
+
div.container.theme--g100 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn svg {
|
|
2949
|
+
fill: #525252;
|
|
2950
|
+
}
|
|
2951
|
+
div.container.theme--g100 .bx--overflow-menu--flip {
|
|
2952
|
+
left: -140px;
|
|
2953
|
+
}
|
|
2954
|
+
div.container.theme--g100 .bx--overflow-menu--flip:before {
|
|
2955
|
+
left: 145px;
|
|
1406
2956
|
}
|
|
1407
2957
|
div.container.theme--g100 .bx--cc--tooltip {
|
|
1408
2958
|
background-color: #393939;
|
|
@@ -1683,273 +3233,6 @@ div.container.theme--g100 .bx--radio-button:checked + .bx--radio-button__label .
|
|
|
1683
3233
|
background-color: windowText;
|
|
1684
3234
|
}
|
|
1685
3235
|
}
|
|
1686
|
-
div.container html,
|
|
1687
|
-
div.container body,
|
|
1688
|
-
div.container div,
|
|
1689
|
-
div.container span,
|
|
1690
|
-
div.container applet,
|
|
1691
|
-
div.container object,
|
|
1692
|
-
div.container iframe,
|
|
1693
|
-
div.container h1,
|
|
1694
|
-
div.container h2,
|
|
1695
|
-
div.container h3,
|
|
1696
|
-
div.container h4,
|
|
1697
|
-
div.container h5,
|
|
1698
|
-
div.container h6,
|
|
1699
|
-
div.container p,
|
|
1700
|
-
div.container blockquote,
|
|
1701
|
-
div.container pre,
|
|
1702
|
-
div.container a,
|
|
1703
|
-
div.container abbr,
|
|
1704
|
-
div.container acronym,
|
|
1705
|
-
div.container address,
|
|
1706
|
-
div.container big,
|
|
1707
|
-
div.container cite,
|
|
1708
|
-
div.container code,
|
|
1709
|
-
div.container del,
|
|
1710
|
-
div.container dfn,
|
|
1711
|
-
div.container em,
|
|
1712
|
-
div.container img,
|
|
1713
|
-
div.container ins,
|
|
1714
|
-
div.container kbd,
|
|
1715
|
-
div.container q,
|
|
1716
|
-
div.container s,
|
|
1717
|
-
div.container samp,
|
|
1718
|
-
div.container small,
|
|
1719
|
-
div.container strike,
|
|
1720
|
-
div.container strong,
|
|
1721
|
-
div.container sub,
|
|
1722
|
-
div.container sup,
|
|
1723
|
-
div.container tt,
|
|
1724
|
-
div.container var,
|
|
1725
|
-
div.container b,
|
|
1726
|
-
div.container u,
|
|
1727
|
-
div.container i,
|
|
1728
|
-
div.container center,
|
|
1729
|
-
div.container dl,
|
|
1730
|
-
div.container dt,
|
|
1731
|
-
div.container dd,
|
|
1732
|
-
div.container ol,
|
|
1733
|
-
div.container ul,
|
|
1734
|
-
div.container li,
|
|
1735
|
-
div.container fieldset,
|
|
1736
|
-
div.container form,
|
|
1737
|
-
div.container label,
|
|
1738
|
-
div.container legend,
|
|
1739
|
-
div.container table,
|
|
1740
|
-
div.container caption,
|
|
1741
|
-
div.container tbody,
|
|
1742
|
-
div.container tfoot,
|
|
1743
|
-
div.container thead,
|
|
1744
|
-
div.container tr,
|
|
1745
|
-
div.container th,
|
|
1746
|
-
div.container td,
|
|
1747
|
-
div.container article,
|
|
1748
|
-
div.container aside,
|
|
1749
|
-
div.container canvas,
|
|
1750
|
-
div.container details,
|
|
1751
|
-
div.container embed,
|
|
1752
|
-
div.container figure,
|
|
1753
|
-
div.container figcaption,
|
|
1754
|
-
div.container footer,
|
|
1755
|
-
div.container header,
|
|
1756
|
-
div.container hgroup,
|
|
1757
|
-
div.container menu,
|
|
1758
|
-
div.container nav,
|
|
1759
|
-
div.container output,
|
|
1760
|
-
div.container ruby,
|
|
1761
|
-
div.container section,
|
|
1762
|
-
div.container summary,
|
|
1763
|
-
div.container time,
|
|
1764
|
-
div.container mark,
|
|
1765
|
-
div.container audio,
|
|
1766
|
-
div.container video {
|
|
1767
|
-
margin: 0;
|
|
1768
|
-
padding: 0;
|
|
1769
|
-
border: 0;
|
|
1770
|
-
font-size: 100%;
|
|
1771
|
-
font: inherit;
|
|
1772
|
-
vertical-align: baseline;
|
|
1773
|
-
}
|
|
1774
|
-
div.container button,
|
|
1775
|
-
div.container select,
|
|
1776
|
-
div.container input[type=button],
|
|
1777
|
-
div.container input[type=submit],
|
|
1778
|
-
div.container input[type=reset],
|
|
1779
|
-
div.container input[type=file],
|
|
1780
|
-
div.container input[type=text],
|
|
1781
|
-
div.container input[type=password],
|
|
1782
|
-
div.container textarea {
|
|
1783
|
-
border-radius: 0;
|
|
1784
|
-
font-family: inherit;
|
|
1785
|
-
}
|
|
1786
|
-
div.container input[type=text]::-ms-clear {
|
|
1787
|
-
display: none;
|
|
1788
|
-
}
|
|
1789
|
-
div.container article,
|
|
1790
|
-
div.container aside,
|
|
1791
|
-
div.container details,
|
|
1792
|
-
div.container figcaption,
|
|
1793
|
-
div.container figure,
|
|
1794
|
-
div.container footer,
|
|
1795
|
-
div.container header,
|
|
1796
|
-
div.container hgroup,
|
|
1797
|
-
div.container main,
|
|
1798
|
-
div.container menu,
|
|
1799
|
-
div.container nav,
|
|
1800
|
-
div.container section {
|
|
1801
|
-
display: block;
|
|
1802
|
-
}
|
|
1803
|
-
div.container body {
|
|
1804
|
-
line-height: 1;
|
|
1805
|
-
}
|
|
1806
|
-
div.container sup {
|
|
1807
|
-
vertical-align: super;
|
|
1808
|
-
}
|
|
1809
|
-
div.container sub {
|
|
1810
|
-
vertical-align: sub;
|
|
1811
|
-
}
|
|
1812
|
-
div.container ol,
|
|
1813
|
-
div.container ul {
|
|
1814
|
-
list-style: none;
|
|
1815
|
-
}
|
|
1816
|
-
div.container blockquote,
|
|
1817
|
-
div.container q {
|
|
1818
|
-
quotes: none;
|
|
1819
|
-
}
|
|
1820
|
-
div.container blockquote:before,
|
|
1821
|
-
div.container blockquote:after,
|
|
1822
|
-
div.container q:before,
|
|
1823
|
-
div.container q:after {
|
|
1824
|
-
content: "";
|
|
1825
|
-
content: none;
|
|
1826
|
-
}
|
|
1827
|
-
div.container table {
|
|
1828
|
-
border-collapse: collapse;
|
|
1829
|
-
border-spacing: 0;
|
|
1830
|
-
}
|
|
1831
|
-
div.container * {
|
|
1832
|
-
box-sizing: border-box;
|
|
1833
|
-
}
|
|
1834
|
-
div.container html {
|
|
1835
|
-
font-size: 16px;
|
|
1836
|
-
}
|
|
1837
|
-
div.container body {
|
|
1838
|
-
font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
1839
|
-
font-weight: 400;
|
|
1840
|
-
text-rendering: optimizeLegibility;
|
|
1841
|
-
-webkit-font-smoothing: antialiased;
|
|
1842
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1843
|
-
}
|
|
1844
|
-
div.container code {
|
|
1845
|
-
font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
|
|
1846
|
-
}
|
|
1847
|
-
div.container h1 {
|
|
1848
|
-
font-size: 2rem;
|
|
1849
|
-
font-weight: 300;
|
|
1850
|
-
line-height: 3.125rem;
|
|
1851
|
-
letter-spacing: 0;
|
|
1852
|
-
}
|
|
1853
|
-
div.container h2 {
|
|
1854
|
-
font-size: 2rem;
|
|
1855
|
-
font-weight: 400;
|
|
1856
|
-
line-height: 2.5rem;
|
|
1857
|
-
letter-spacing: 0;
|
|
1858
|
-
}
|
|
1859
|
-
div.container h3 {
|
|
1860
|
-
font-size: 1.75rem;
|
|
1861
|
-
font-weight: 400;
|
|
1862
|
-
line-height: 2.25rem;
|
|
1863
|
-
letter-spacing: 0;
|
|
1864
|
-
}
|
|
1865
|
-
div.container h4 {
|
|
1866
|
-
font-size: 1.25rem;
|
|
1867
|
-
font-weight: 400;
|
|
1868
|
-
line-height: 1.625rem;
|
|
1869
|
-
letter-spacing: 0;
|
|
1870
|
-
}
|
|
1871
|
-
div.container h5 {
|
|
1872
|
-
font-size: 1rem;
|
|
1873
|
-
font-weight: 600;
|
|
1874
|
-
line-height: 1.375rem;
|
|
1875
|
-
letter-spacing: 0;
|
|
1876
|
-
}
|
|
1877
|
-
div.container h6 {
|
|
1878
|
-
font-size: 0.875rem;
|
|
1879
|
-
font-weight: 600;
|
|
1880
|
-
line-height: 1.125rem;
|
|
1881
|
-
letter-spacing: 0.16px;
|
|
1882
|
-
}
|
|
1883
|
-
div.container p {
|
|
1884
|
-
font-size: 1rem;
|
|
1885
|
-
font-weight: 400;
|
|
1886
|
-
line-height: 1.5rem;
|
|
1887
|
-
letter-spacing: 0;
|
|
1888
|
-
}
|
|
1889
|
-
div.container a {
|
|
1890
|
-
color: #0062ff;
|
|
1891
|
-
}
|
|
1892
|
-
div.container em {
|
|
1893
|
-
font-style: italic;
|
|
1894
|
-
}
|
|
1895
|
-
div.container strong {
|
|
1896
|
-
font-weight: 600;
|
|
1897
|
-
}
|
|
1898
|
-
@media screen and (-ms-high-contrast: active) {
|
|
1899
|
-
div.container svg {
|
|
1900
|
-
fill: ButtonText;
|
|
1901
|
-
}
|
|
1902
|
-
}
|
|
1903
|
-
@keyframes skeleton {
|
|
1904
|
-
0% {
|
|
1905
|
-
width: 0%;
|
|
1906
|
-
left: 0;
|
|
1907
|
-
right: auto;
|
|
1908
|
-
opacity: 0.3;
|
|
1909
|
-
}
|
|
1910
|
-
20% {
|
|
1911
|
-
width: 100%;
|
|
1912
|
-
left: 0;
|
|
1913
|
-
right: auto;
|
|
1914
|
-
opacity: 1;
|
|
1915
|
-
}
|
|
1916
|
-
28% {
|
|
1917
|
-
width: 100%;
|
|
1918
|
-
left: auto;
|
|
1919
|
-
right: 0;
|
|
1920
|
-
}
|
|
1921
|
-
51% {
|
|
1922
|
-
width: 0%;
|
|
1923
|
-
left: auto;
|
|
1924
|
-
right: 0;
|
|
1925
|
-
}
|
|
1926
|
-
58% {
|
|
1927
|
-
width: 0%;
|
|
1928
|
-
left: auto;
|
|
1929
|
-
right: 0;
|
|
1930
|
-
}
|
|
1931
|
-
82% {
|
|
1932
|
-
width: 100%;
|
|
1933
|
-
left: auto;
|
|
1934
|
-
right: 0;
|
|
1935
|
-
}
|
|
1936
|
-
83% {
|
|
1937
|
-
width: 100%;
|
|
1938
|
-
left: 0;
|
|
1939
|
-
right: auto;
|
|
1940
|
-
}
|
|
1941
|
-
96% {
|
|
1942
|
-
width: 0%;
|
|
1943
|
-
left: 0;
|
|
1944
|
-
right: auto;
|
|
1945
|
-
}
|
|
1946
|
-
100% {
|
|
1947
|
-
width: 0%;
|
|
1948
|
-
left: 0;
|
|
1949
|
-
right: auto;
|
|
1950
|
-
opacity: 0.3;
|
|
1951
|
-
}
|
|
1952
|
-
}
|
|
1953
3236
|
div.container .bx--grid {
|
|
1954
3237
|
margin-right: auto;
|
|
1955
3238
|
margin-left: auto;
|
|
@@ -3878,21 +5161,6 @@ div.container .bx--radio-button-wrapper.bx--radio-button-wrapper--label-left .bx
|
|
|
3878
5161
|
margin-right: 0;
|
|
3879
5162
|
margin-left: 0.5rem;
|
|
3880
5163
|
}
|
|
3881
|
-
div.container .bx--text-truncate--end {
|
|
3882
|
-
width: 100%;
|
|
3883
|
-
display: inline-block;
|
|
3884
|
-
text-overflow: ellipsis;
|
|
3885
|
-
white-space: nowrap;
|
|
3886
|
-
overflow: hidden;
|
|
3887
|
-
}
|
|
3888
|
-
div.container .bx--text-truncate--front {
|
|
3889
|
-
width: 100%;
|
|
3890
|
-
display: inline-block;
|
|
3891
|
-
direction: rtl;
|
|
3892
|
-
text-overflow: ellipsis;
|
|
3893
|
-
white-space: nowrap;
|
|
3894
|
-
overflow: hidden;
|
|
3895
|
-
}
|
|
3896
5164
|
div.container .bx--inline-notification {
|
|
3897
5165
|
box-sizing: border-box;
|
|
3898
5166
|
margin: 0;
|