@oliasoft-open-source/react-ui-library 4.14.0 → 4.14.1-beta-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/dist/global.css +114 -105
- package/dist/index.js +1245 -838
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/global.css
CHANGED
|
@@ -2442,123 +2442,135 @@ html[data-theme='dark'] {
|
|
|
2442
2442
|
border-top-left-radius: 0 !important;
|
|
2443
2443
|
border-bottom-left-radius: 0 !important;
|
|
2444
2444
|
}
|
|
2445
|
-
.
|
|
2445
|
+
._inputInTable_7fzf8_1 {
|
|
2446
2446
|
background-color: transparent;
|
|
2447
2447
|
border-radius: inherit !important;
|
|
2448
2448
|
height: var(--size);
|
|
2449
2449
|
min-height: 100%;
|
|
2450
2450
|
}
|
|
2451
|
-
.
|
|
2451
|
+
._inputInTable_7fzf8_1:not(:hover):not([data-error]):not([data-warning]) {
|
|
2452
2452
|
border-color: transparent;
|
|
2453
2453
|
}
|
|
2454
|
-
.
|
|
2454
|
+
._inputInTable_7fzf8_1:not(:focus) {
|
|
2455
2455
|
box-shadow: none;
|
|
2456
2456
|
}
|
|
2457
|
-
.
|
|
2457
|
+
._inputHover_7fzf8_13 {
|
|
2458
2458
|
position: relative;
|
|
2459
2459
|
border-color: var(--color-border-hover);
|
|
2460
2460
|
z-index: 2;
|
|
2461
2461
|
}
|
|
2462
|
-
.
|
|
2462
|
+
._inputFocus_7fzf8_18 {
|
|
2463
2463
|
position: relative;
|
|
2464
2464
|
outline: none !important;
|
|
2465
2465
|
border-color: var(--color-border-focus) !important;
|
|
2466
2466
|
box-shadow: var(--shadow-focus);
|
|
2467
2467
|
z-index: 3;
|
|
2468
2468
|
}
|
|
2469
|
-
.
|
|
2470
|
-
.
|
|
2469
|
+
._inputError_7fzf8_25,
|
|
2470
|
+
._inputWarning_7fzf8_26 {
|
|
2471
2471
|
position: relative;
|
|
2472
2472
|
}
|
|
2473
|
-
.
|
|
2473
|
+
._inputError_7fzf8_25 {
|
|
2474
2474
|
z-index: 2;
|
|
2475
2475
|
border-color: var(--color-border-error);
|
|
2476
2476
|
color: var(--color-text-error) !important;
|
|
2477
2477
|
background-color: var(--color-background-error-muted);
|
|
2478
2478
|
}
|
|
2479
|
-
.
|
|
2479
|
+
._inputError_7fzf8_25:hover {
|
|
2480
2480
|
border-color: var(--color-border-error-hover) !important;
|
|
2481
2481
|
}
|
|
2482
|
-
.
|
|
2482
|
+
._inputError_7fzf8_25:focus {
|
|
2483
2483
|
position: relative;
|
|
2484
2484
|
outline: none !important;
|
|
2485
2485
|
border-color: var(--color-border-focus) !important;
|
|
2486
2486
|
box-shadow: var(--shadow-focus);
|
|
2487
2487
|
z-index: 3;
|
|
2488
2488
|
}
|
|
2489
|
-
.
|
|
2489
|
+
._inputWarning_7fzf8_26 {
|
|
2490
2490
|
z-index: 1;
|
|
2491
2491
|
border-color: var(--color-border-warning);
|
|
2492
2492
|
color: var(--color-text-warning) !important;
|
|
2493
2493
|
background-color: var(--color-background-warning-muted);
|
|
2494
2494
|
}
|
|
2495
|
-
.
|
|
2495
|
+
._inputWarning_7fzf8_26:hover {
|
|
2496
2496
|
border-color: var(--color-border-warning-hover) !important;
|
|
2497
2497
|
}
|
|
2498
|
-
.
|
|
2498
|
+
._inputWarning_7fzf8_26:focus {
|
|
2499
2499
|
position: relative;
|
|
2500
2500
|
outline: none !important;
|
|
2501
2501
|
border-color: var(--color-border-focus) !important;
|
|
2502
2502
|
box-shadow: var(--shadow-focus);
|
|
2503
2503
|
z-index: 3;
|
|
2504
2504
|
}
|
|
2505
|
-
.
|
|
2505
|
+
._inputDisabled_7fzf8_61 {
|
|
2506
2506
|
pointer-events: none;
|
|
2507
2507
|
background-color: var(--color-background-disabled);
|
|
2508
2508
|
color: var(--color-text-muted);
|
|
2509
2509
|
box-shadow: none;
|
|
2510
2510
|
}
|
|
2511
|
-
.
|
|
2511
|
+
._hideScrollbars_7fzf8_67 {
|
|
2512
2512
|
/* Firefox */
|
|
2513
2513
|
scrollbar-width: none;
|
|
2514
2514
|
/* IE 10+ */
|
|
2515
2515
|
-ms-overflow-style: none;
|
|
2516
2516
|
/* Chrome, Safari and Opera */
|
|
2517
2517
|
}
|
|
2518
|
-
.
|
|
2518
|
+
._hideScrollbars_7fzf8_67::-webkit-scrollbar {
|
|
2519
2519
|
display: none;
|
|
2520
2520
|
}
|
|
2521
|
-
.
|
|
2522
|
-
|
|
2521
|
+
._listWrapper_7fzf8_77 {
|
|
2522
|
+
max-height: 100%;
|
|
2523
|
+
display: flex;
|
|
2524
|
+
flex-direction: column;
|
|
2525
|
+
}
|
|
2526
|
+
._listWrapperBordered_7fzf8_82 {
|
|
2527
|
+
background: var(--color-background-raised);
|
|
2528
|
+
border: 1px solid var(--color-border);
|
|
2529
|
+
box-shadow: var(--shadow-card);
|
|
2530
|
+
border-radius: var(--border-radius);
|
|
2531
|
+
overflow: hidden;
|
|
2532
|
+
}
|
|
2533
|
+
._header_7fzf8_89 ._headerTitle_7fzf8_89,
|
|
2534
|
+
._heading_7fzf8_90 ._itemHeader_7fzf8_90 {
|
|
2523
2535
|
transition: opacity 0.3s;
|
|
2524
2536
|
}
|
|
2525
|
-
.
|
|
2526
|
-
.
|
|
2537
|
+
._narrow_7fzf8_93 ._header_7fzf8_89 ._headerTitle_7fzf8_89,
|
|
2538
|
+
._narrow_7fzf8_93 ._heading_7fzf8_90 ._itemHeader_7fzf8_90 {
|
|
2527
2539
|
opacity: 0;
|
|
2528
2540
|
}
|
|
2529
|
-
.
|
|
2541
|
+
._stickyHeader_7fzf8_97 {
|
|
2530
2542
|
position: sticky;
|
|
2531
2543
|
top: 0;
|
|
2532
2544
|
background-color: var(--color-background);
|
|
2533
2545
|
z-index: 10;
|
|
2534
2546
|
}
|
|
2535
|
-
.
|
|
2547
|
+
._itemHeader_7fzf8_90 {
|
|
2536
2548
|
padding: var(--padding-xs) var(--padding);
|
|
2537
2549
|
display: flex;
|
|
2538
2550
|
align-items: flex-start;
|
|
2539
2551
|
}
|
|
2540
|
-
.
|
|
2552
|
+
._itemHeader_7fzf8_90 ._title_7fzf8_108 {
|
|
2541
2553
|
margin: 0;
|
|
2542
2554
|
padding: 0;
|
|
2543
2555
|
flex-grow: 1;
|
|
2544
2556
|
min-width: 0;
|
|
2545
2557
|
}
|
|
2546
|
-
.
|
|
2558
|
+
._itemHeader_7fzf8_90 ._name_7fzf8_114 {
|
|
2547
2559
|
font-weight: 400;
|
|
2548
2560
|
}
|
|
2549
|
-
.
|
|
2561
|
+
._itemHeader_7fzf8_90 ._iconTooltipMargin_7fzf8_117 {
|
|
2550
2562
|
margin-left: var(--padding-xs);
|
|
2551
2563
|
}
|
|
2552
|
-
.
|
|
2564
|
+
._itemHeader_7fzf8_90 ._bold_7fzf8_120 {
|
|
2553
2565
|
font-weight: bold;
|
|
2554
2566
|
}
|
|
2555
|
-
.
|
|
2567
|
+
._header_7fzf8_89 {
|
|
2556
2568
|
padding: var(--padding);
|
|
2557
2569
|
display: flex;
|
|
2558
2570
|
align-items: center;
|
|
2559
2571
|
border-bottom: 1px solid var(--color-border);
|
|
2560
2572
|
}
|
|
2561
|
-
.
|
|
2573
|
+
._toggleNarrow_7fzf8_129 {
|
|
2562
2574
|
margin-right: 16px;
|
|
2563
2575
|
margin-left: -5px;
|
|
2564
2576
|
color: #c8c8c8;
|
|
@@ -2567,16 +2579,16 @@ html[data-theme='dark'] {
|
|
|
2567
2579
|
width: 22px;
|
|
2568
2580
|
justify-content: center;
|
|
2569
2581
|
}
|
|
2570
|
-
.
|
|
2582
|
+
._toggleNarrow_7fzf8_129:hover {
|
|
2571
2583
|
color: var(--color-text-primary-hover);
|
|
2572
2584
|
}
|
|
2573
|
-
.
|
|
2585
|
+
._toggleNarrow_7fzf8_129:active {
|
|
2574
2586
|
color: var(--color-text-primary-active);
|
|
2575
2587
|
}
|
|
2576
|
-
.
|
|
2588
|
+
._narrow_7fzf8_93 ._toggleNarrow_7fzf8_129 {
|
|
2577
2589
|
transform: scaleX(-1);
|
|
2578
2590
|
}
|
|
2579
|
-
.
|
|
2591
|
+
._drag_7fzf8_147 {
|
|
2580
2592
|
color: var(--color-text-faint);
|
|
2581
2593
|
display: flex;
|
|
2582
2594
|
align-items: center;
|
|
@@ -2590,28 +2602,29 @@ html[data-theme='dark'] {
|
|
|
2590
2602
|
width: var(--size-sm);
|
|
2591
2603
|
flex-shrink: 0;
|
|
2592
2604
|
}
|
|
2593
|
-
.
|
|
2605
|
+
._drag_7fzf8_147:hover {
|
|
2594
2606
|
color: var(--color-text-primary-hover);
|
|
2595
2607
|
}
|
|
2596
|
-
.
|
|
2608
|
+
._drag_7fzf8_147:active {
|
|
2597
2609
|
color: var(--color-text-primary-active);
|
|
2598
2610
|
}
|
|
2599
|
-
.
|
|
2611
|
+
._list_7fzf8_77 {
|
|
2600
2612
|
flex-shrink: 0;
|
|
2601
2613
|
background: var(--color-background);
|
|
2614
|
+
position: relative;
|
|
2602
2615
|
}
|
|
2603
|
-
.
|
|
2604
|
-
.
|
|
2616
|
+
._list_7fzf8_77._bordered_7fzf8_172:first-child,
|
|
2617
|
+
._list_7fzf8_77._bordered_7fzf8_172:first-child > :first-child {
|
|
2605
2618
|
border-top-left-radius: inherit;
|
|
2606
2619
|
border-top-right-radius: inherit;
|
|
2607
2620
|
}
|
|
2608
|
-
.
|
|
2609
|
-
.
|
|
2621
|
+
._list_7fzf8_77._bordered_7fzf8_172:last-child,
|
|
2622
|
+
._list_7fzf8_77._bordered_7fzf8_172:last-child > :last-child {
|
|
2610
2623
|
border-bottom-left-radius: inherit;
|
|
2611
2624
|
border-bottom-right-radius: inherit;
|
|
2612
2625
|
border-bottom: 0;
|
|
2613
2626
|
}
|
|
2614
|
-
.
|
|
2627
|
+
._item_7fzf8_90 {
|
|
2615
2628
|
color: inherit;
|
|
2616
2629
|
display: block;
|
|
2617
2630
|
transition: background-color 0.2s;
|
|
@@ -2622,7 +2635,7 @@ html[data-theme='dark'] {
|
|
|
2622
2635
|
overflow-wrap: break-word;
|
|
2623
2636
|
hyphens: auto;
|
|
2624
2637
|
}
|
|
2625
|
-
.
|
|
2638
|
+
._item_7fzf8_90:not(._heading_7fzf8_90):after {
|
|
2626
2639
|
content: '';
|
|
2627
2640
|
position: absolute;
|
|
2628
2641
|
left: 0;
|
|
@@ -2633,41 +2646,41 @@ html[data-theme='dark'] {
|
|
|
2633
2646
|
border-bottom-left-radius: inherit;
|
|
2634
2647
|
transition: background 0.3s, width 0.3s;
|
|
2635
2648
|
}
|
|
2636
|
-
.
|
|
2649
|
+
._item_7fzf8_90._action_7fzf8_205 {
|
|
2637
2650
|
cursor: pointer;
|
|
2638
2651
|
}
|
|
2639
|
-
.
|
|
2652
|
+
._item_7fzf8_90._action_7fzf8_205:not(._active_7fzf8_208):hover {
|
|
2640
2653
|
background: var(--color-background-listitem-hover);
|
|
2641
2654
|
}
|
|
2642
|
-
.
|
|
2655
|
+
._item_7fzf8_90._action_7fzf8_205:not(._active_7fzf8_208):hover:after {
|
|
2643
2656
|
width: 5px;
|
|
2644
2657
|
background: rgba(0, 0, 0, 0.1);
|
|
2645
2658
|
}
|
|
2646
|
-
.
|
|
2659
|
+
._item_7fzf8_90._indented_7fzf8_215:after {
|
|
2647
2660
|
width: 3px;
|
|
2648
2661
|
background: rgba(0, 0, 0, 0.1);
|
|
2649
2662
|
}
|
|
2650
|
-
.
|
|
2663
|
+
._item_7fzf8_90._active_7fzf8_208 {
|
|
2651
2664
|
cursor: default;
|
|
2652
2665
|
position: relative;
|
|
2653
2666
|
z-index: 1;
|
|
2654
2667
|
background: var(--color-background-listitem-active);
|
|
2655
2668
|
}
|
|
2656
|
-
.
|
|
2669
|
+
._item_7fzf8_90._active_7fzf8_208:after {
|
|
2657
2670
|
background: var(--color-background-primary) !important;
|
|
2658
2671
|
}
|
|
2659
|
-
.
|
|
2672
|
+
._item_7fzf8_90._disabled_7fzf8_228 {
|
|
2660
2673
|
color: var(--color-text-faint);
|
|
2661
2674
|
pointer-events: none;
|
|
2662
2675
|
}
|
|
2663
|
-
.
|
|
2676
|
+
._item_7fzf8_90._heading_7fzf8_90 {
|
|
2664
2677
|
color: var(--color-text-muted);
|
|
2665
2678
|
background-color: var(--color-background-cardheader);
|
|
2666
2679
|
}
|
|
2667
|
-
.
|
|
2680
|
+
._item_7fzf8_90._heading_7fzf8_90._action_7fzf8_205:hover {
|
|
2668
2681
|
color: var(--color-text-primary-hover);
|
|
2669
2682
|
}
|
|
2670
|
-
.
|
|
2683
|
+
._item_7fzf8_90 ._label_7fzf8_239 {
|
|
2671
2684
|
margin-right: var(--padding-xs);
|
|
2672
2685
|
flex-shrink: 0;
|
|
2673
2686
|
width: var(--size-sm);
|
|
@@ -2678,38 +2691,38 @@ html[data-theme='dark'] {
|
|
|
2678
2691
|
align-items: center;
|
|
2679
2692
|
justify-content: center;
|
|
2680
2693
|
}
|
|
2681
|
-
.
|
|
2682
|
-
.
|
|
2694
|
+
._item_7fzf8_90 ._details_7fzf8_250,
|
|
2695
|
+
._item_7fzf8_90 ._metadata_7fzf8_251 {
|
|
2683
2696
|
display: block;
|
|
2684
2697
|
width: 100%;
|
|
2685
2698
|
font-weight: normal;
|
|
2686
2699
|
}
|
|
2687
|
-
.
|
|
2700
|
+
._item_7fzf8_90 ._metadata_7fzf8_251 {
|
|
2688
2701
|
color: var(--color-text-muted);
|
|
2689
2702
|
}
|
|
2690
|
-
.
|
|
2703
|
+
._item_7fzf8_90 ._itemContent_7fzf8_259 {
|
|
2691
2704
|
padding: 0 var(--padding) var(--padding-sm);
|
|
2692
2705
|
cursor: auto;
|
|
2693
2706
|
}
|
|
2694
|
-
.
|
|
2707
|
+
._item_7fzf8_90 ._itemContent_7fzf8_259:empty {
|
|
2695
2708
|
padding: inherit;
|
|
2696
2709
|
}
|
|
2697
|
-
.
|
|
2710
|
+
._indentIcon_7fzf8_266 {
|
|
2698
2711
|
color: var(--color-text-faint);
|
|
2699
2712
|
flex-shrink: 0;
|
|
2700
2713
|
margin-right: var(--padding-xxs);
|
|
2701
2714
|
}
|
|
2702
|
-
.
|
|
2715
|
+
._expandIcon_7fzf8_271 {
|
|
2703
2716
|
flex-shrink: 0;
|
|
2704
2717
|
position: relative;
|
|
2705
2718
|
display: flex;
|
|
2706
2719
|
height: var(--line-height);
|
|
2707
2720
|
margin-right: var(--padding-xs);
|
|
2708
2721
|
}
|
|
2709
|
-
.
|
|
2722
|
+
._expandIcon_7fzf8_271._expanded_7fzf8_278 svg {
|
|
2710
2723
|
transform: rotate(90deg);
|
|
2711
2724
|
}
|
|
2712
|
-
.
|
|
2725
|
+
._right_7fzf8_281 {
|
|
2713
2726
|
margin-left: auto;
|
|
2714
2727
|
display: flex;
|
|
2715
2728
|
align-items: center;
|
|
@@ -2717,34 +2730,32 @@ html[data-theme='dark'] {
|
|
|
2717
2730
|
margin-bottom: calc((var(--line-height) - var(--size-sm)) / 2);
|
|
2718
2731
|
min-height: var(--size-sm);
|
|
2719
2732
|
}
|
|
2720
|
-
.
|
|
2733
|
+
._actions_7fzf8_289 {
|
|
2721
2734
|
margin-left: var(--padding-xs);
|
|
2722
2735
|
display: flex;
|
|
2723
2736
|
align-items: center;
|
|
2724
2737
|
}
|
|
2725
|
-
.
|
|
2738
|
+
._scrollableList_7fzf8_294 {
|
|
2726
2739
|
height: 100%;
|
|
2727
2740
|
overflow-y: auto;
|
|
2741
|
+
overflow-x: hidden;
|
|
2728
2742
|
scroll-behavior: smooth;
|
|
2729
2743
|
}
|
|
2730
|
-
.
|
|
2731
|
-
overflow: hidden !important;
|
|
2732
|
-
}
|
|
2733
|
-
._hideScrollbar_1llou_67 {
|
|
2744
|
+
._hideScrollbar_7fzf8_67 {
|
|
2734
2745
|
/* Firefox */
|
|
2735
2746
|
scrollbar-width: none;
|
|
2736
2747
|
/* IE 10+ */
|
|
2737
2748
|
-ms-overflow-style: none;
|
|
2738
2749
|
/* Chrome, Safari and Opera */
|
|
2739
2750
|
}
|
|
2740
|
-
.
|
|
2751
|
+
._hideScrollbar_7fzf8_67::-webkit-scrollbar {
|
|
2741
2752
|
display: none;
|
|
2742
2753
|
}
|
|
2743
|
-
.
|
|
2754
|
+
._bordered_7fzf8_172 {
|
|
2744
2755
|
box-shadow: inset 0px 0px 0px 2px var(--color-background-primary);
|
|
2745
2756
|
background: var(--color-background-listitem-active);
|
|
2746
2757
|
}
|
|
2747
|
-
.
|
|
2758
|
+
._noPointerEvents_7fzf8_314 {
|
|
2748
2759
|
pointer-events: none;
|
|
2749
2760
|
}
|
|
2750
2761
|
._loader_477i5_1 {
|
|
@@ -9131,80 +9142,80 @@ button:active .remirror-menu-pane-shortcut,
|
|
|
9131
9142
|
width: 8px;
|
|
9132
9143
|
height: 14px;
|
|
9133
9144
|
}
|
|
9134
|
-
.
|
|
9145
|
+
._inputInTable_sqhcz_1 {
|
|
9135
9146
|
background-color: transparent;
|
|
9136
9147
|
border-radius: inherit !important;
|
|
9137
9148
|
height: var(--size);
|
|
9138
9149
|
min-height: 100%;
|
|
9139
9150
|
}
|
|
9140
|
-
.
|
|
9151
|
+
._inputInTable_sqhcz_1:not(:hover):not([data-error]):not([data-warning]) {
|
|
9141
9152
|
border-color: transparent;
|
|
9142
9153
|
}
|
|
9143
|
-
.
|
|
9154
|
+
._inputInTable_sqhcz_1:not(:focus) {
|
|
9144
9155
|
box-shadow: none;
|
|
9145
9156
|
}
|
|
9146
|
-
.
|
|
9157
|
+
._inputHover_sqhcz_13 {
|
|
9147
9158
|
position: relative;
|
|
9148
9159
|
border-color: var(--color-border-hover);
|
|
9149
9160
|
z-index: 2;
|
|
9150
9161
|
}
|
|
9151
|
-
.
|
|
9162
|
+
._inputFocus_sqhcz_18 {
|
|
9152
9163
|
position: relative;
|
|
9153
9164
|
outline: none !important;
|
|
9154
9165
|
border-color: var(--color-border-focus) !important;
|
|
9155
9166
|
box-shadow: var(--shadow-focus);
|
|
9156
9167
|
z-index: 3;
|
|
9157
9168
|
}
|
|
9158
|
-
.
|
|
9159
|
-
.
|
|
9169
|
+
._inputError_sqhcz_25,
|
|
9170
|
+
._inputWarning_sqhcz_26 {
|
|
9160
9171
|
position: relative;
|
|
9161
9172
|
}
|
|
9162
|
-
.
|
|
9173
|
+
._inputError_sqhcz_25 {
|
|
9163
9174
|
z-index: 2;
|
|
9164
9175
|
border-color: var(--color-border-error);
|
|
9165
9176
|
color: var(--color-text-error) !important;
|
|
9166
9177
|
background-color: var(--color-background-error-muted);
|
|
9167
9178
|
}
|
|
9168
|
-
.
|
|
9179
|
+
._inputError_sqhcz_25:hover {
|
|
9169
9180
|
border-color: var(--color-border-error-hover) !important;
|
|
9170
9181
|
}
|
|
9171
|
-
.
|
|
9182
|
+
._inputError_sqhcz_25:focus {
|
|
9172
9183
|
position: relative;
|
|
9173
9184
|
outline: none !important;
|
|
9174
9185
|
border-color: var(--color-border-focus) !important;
|
|
9175
9186
|
box-shadow: var(--shadow-focus);
|
|
9176
9187
|
z-index: 3;
|
|
9177
9188
|
}
|
|
9178
|
-
.
|
|
9189
|
+
._inputWarning_sqhcz_26 {
|
|
9179
9190
|
z-index: 1;
|
|
9180
9191
|
border-color: var(--color-border-warning);
|
|
9181
9192
|
color: var(--color-text-warning) !important;
|
|
9182
9193
|
background-color: var(--color-background-warning-muted);
|
|
9183
9194
|
}
|
|
9184
|
-
.
|
|
9195
|
+
._inputWarning_sqhcz_26:hover {
|
|
9185
9196
|
border-color: var(--color-border-warning-hover) !important;
|
|
9186
9197
|
}
|
|
9187
|
-
.
|
|
9198
|
+
._inputWarning_sqhcz_26:focus {
|
|
9188
9199
|
position: relative;
|
|
9189
9200
|
outline: none !important;
|
|
9190
9201
|
border-color: var(--color-border-focus) !important;
|
|
9191
9202
|
box-shadow: var(--shadow-focus);
|
|
9192
9203
|
z-index: 3;
|
|
9193
9204
|
}
|
|
9194
|
-
.
|
|
9205
|
+
._inputDisabled_sqhcz_61 {
|
|
9195
9206
|
pointer-events: none;
|
|
9196
9207
|
background-color: var(--color-background-disabled);
|
|
9197
9208
|
color: var(--color-text-muted);
|
|
9198
9209
|
box-shadow: none;
|
|
9199
9210
|
}
|
|
9200
|
-
.
|
|
9211
|
+
._hideScrollbars_sqhcz_67 {
|
|
9201
9212
|
/* Firefox */
|
|
9202
9213
|
scrollbar-width: none;
|
|
9203
9214
|
/* IE 10+ */
|
|
9204
9215
|
-ms-overflow-style: none;
|
|
9205
9216
|
/* Chrome, Safari and Opera */
|
|
9206
9217
|
}
|
|
9207
|
-
.
|
|
9218
|
+
._hideScrollbars_sqhcz_67::-webkit-scrollbar {
|
|
9208
9219
|
display: none;
|
|
9209
9220
|
}
|
|
9210
9221
|
:root {
|
|
@@ -9215,7 +9226,7 @@ html[data-theme='dark'] {
|
|
|
9215
9226
|
--color-background-table-header: var(--color-neutral-800);
|
|
9216
9227
|
--color-background-table-row-tinted: var(--color-neutral-800);
|
|
9217
9228
|
}
|
|
9218
|
-
.
|
|
9229
|
+
._wrapper_sqhcz_85 {
|
|
9219
9230
|
border-radius: inherit;
|
|
9220
9231
|
max-height: 100%;
|
|
9221
9232
|
max-width: 100%;
|
|
@@ -9223,22 +9234,22 @@ html[data-theme='dark'] {
|
|
|
9223
9234
|
flex-direction: column;
|
|
9224
9235
|
overflow: hidden;
|
|
9225
9236
|
}
|
|
9226
|
-
.
|
|
9237
|
+
._wrapper_sqhcz_85._bordered_sqhcz_93 {
|
|
9227
9238
|
border-radius: var(--border-radius);
|
|
9228
9239
|
border: 1px solid var(--color-border);
|
|
9229
9240
|
box-shadow: var(--shadow-card);
|
|
9230
9241
|
}
|
|
9231
|
-
.
|
|
9242
|
+
._scroll_sqhcz_98 {
|
|
9232
9243
|
overflow-y: auto;
|
|
9233
9244
|
border-radius: inherit;
|
|
9234
9245
|
flex: 1;
|
|
9235
9246
|
min-height: 0;
|
|
9236
9247
|
}
|
|
9237
|
-
.
|
|
9248
|
+
._scroll_sqhcz_98:not(:first-child) {
|
|
9238
9249
|
border-top-left-radius: 0;
|
|
9239
9250
|
border-top-right-radius: 0;
|
|
9240
9251
|
}
|
|
9241
|
-
.
|
|
9252
|
+
._table_sqhcz_108 {
|
|
9242
9253
|
background: var(--color-background-raised);
|
|
9243
9254
|
color: var(--color-text);
|
|
9244
9255
|
border-collapse: separate;
|
|
@@ -9247,32 +9258,32 @@ html[data-theme='dark'] {
|
|
|
9247
9258
|
width: 100%;
|
|
9248
9259
|
font-variant-numeric: tabular-nums;
|
|
9249
9260
|
}
|
|
9250
|
-
.
|
|
9261
|
+
._table_sqhcz_108 > :first-child {
|
|
9251
9262
|
border-top-left-radius: inherit;
|
|
9252
9263
|
border-top-right-radius: inherit;
|
|
9253
9264
|
}
|
|
9254
|
-
.
|
|
9265
|
+
._table_sqhcz_108 > :first-child > :first-child {
|
|
9255
9266
|
border-top-left-radius: inherit;
|
|
9256
9267
|
border-top-right-radius: inherit;
|
|
9257
9268
|
}
|
|
9258
|
-
.
|
|
9269
|
+
._table_sqhcz_108 > :first-child > :first-child > :first-child {
|
|
9259
9270
|
border-top-left-radius: inherit;
|
|
9260
9271
|
}
|
|
9261
|
-
.
|
|
9272
|
+
._table_sqhcz_108 > :first-child > :first-child > :last-child {
|
|
9262
9273
|
border-top-right-radius: inherit;
|
|
9263
9274
|
}
|
|
9264
|
-
.
|
|
9275
|
+
._table_sqhcz_108 > :last-child {
|
|
9265
9276
|
border-bottom-left-radius: inherit;
|
|
9266
9277
|
border-bottom-right-radius: inherit;
|
|
9267
9278
|
}
|
|
9268
|
-
.
|
|
9279
|
+
._table_sqhcz_108 > :last-child > :last-child {
|
|
9269
9280
|
border-bottom-left-radius: inherit;
|
|
9270
9281
|
border-bottom-right-radius: inherit;
|
|
9271
9282
|
}
|
|
9272
|
-
.
|
|
9283
|
+
._table_sqhcz_108 > :last-child > :last-child > :first-child {
|
|
9273
9284
|
border-bottom-left-radius: inherit;
|
|
9274
9285
|
}
|
|
9275
|
-
.
|
|
9286
|
+
._table_sqhcz_108 > :last-child > :last-child > :last-child {
|
|
9276
9287
|
border-bottom-right-radius: inherit;
|
|
9277
9288
|
}
|
|
9278
9289
|
th,
|
|
@@ -9288,10 +9299,10 @@ th:not(:first-child),
|
|
|
9288
9299
|
td:not(:first-child) {
|
|
9289
9300
|
border-left-width: 1px;
|
|
9290
9301
|
}
|
|
9291
|
-
.
|
|
9292
|
-
.
|
|
9293
|
-
.
|
|
9294
|
-
.
|
|
9302
|
+
._table_sqhcz_108 > *:not(:last-child) > tr th,
|
|
9303
|
+
._table_sqhcz_108 > *:not(:last-child) > tr td,
|
|
9304
|
+
._table_sqhcz_108 > *:last-child > tr:not(:last-child) th,
|
|
9305
|
+
._table_sqhcz_108 > *:last-child > tr:not(:last-child) td {
|
|
9295
9306
|
border-bottom-width: 1px;
|
|
9296
9307
|
}
|
|
9297
9308
|
@-moz-document url-prefix() {
|
|
@@ -9304,8 +9315,6 @@ td:not(:first-child) {
|
|
|
9304
9315
|
}
|
|
9305
9316
|
}
|
|
9306
9317
|
thead {
|
|
9307
|
-
position: sticky;
|
|
9308
|
-
top: 0;
|
|
9309
9318
|
overflow: hidden;
|
|
9310
9319
|
z-index: 5;
|
|
9311
9320
|
}
|
|
@@ -9318,7 +9327,7 @@ tbody {
|
|
|
9318
9327
|
tbody tr {
|
|
9319
9328
|
background-color: var(--color-background-raised);
|
|
9320
9329
|
}
|
|
9321
|
-
.
|
|
9330
|
+
._striped_sqhcz_186 tbody tr:nth-child(even) {
|
|
9322
9331
|
background-color: var(--color-background-table-row-tinted);
|
|
9323
9332
|
}
|
|
9324
9333
|
._title_zn5s7_1 {
|