@oliasoft-open-source/react-ui-library 4.15.7-beta-4 → 4.15.7
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 +112 -126
- package/dist/index.d.ts +7 -2
- package/dist/index.js +11146 -6664
- package/dist/index.js.map +1 -1
- package/package.json +3 -4
package/dist/global.css
CHANGED
|
@@ -2442,123 +2442,123 @@ 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_1llou_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_1llou_1:not(:hover):not([data-error]):not([data-warning]) {
|
|
2452
2452
|
border-color: transparent;
|
|
2453
2453
|
}
|
|
2454
|
-
.
|
|
2454
|
+
._inputInTable_1llou_1:not(:focus) {
|
|
2455
2455
|
box-shadow: none;
|
|
2456
2456
|
}
|
|
2457
|
-
.
|
|
2457
|
+
._inputHover_1llou_13 {
|
|
2458
2458
|
position: relative;
|
|
2459
2459
|
border-color: var(--color-border-hover);
|
|
2460
2460
|
z-index: 2;
|
|
2461
2461
|
}
|
|
2462
|
-
.
|
|
2462
|
+
._inputFocus_1llou_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_1llou_25,
|
|
2470
|
+
._inputWarning_1llou_26 {
|
|
2471
2471
|
position: relative;
|
|
2472
2472
|
}
|
|
2473
|
-
.
|
|
2473
|
+
._inputError_1llou_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_1llou_25:hover {
|
|
2480
2480
|
border-color: var(--color-border-error-hover) !important;
|
|
2481
2481
|
}
|
|
2482
|
-
.
|
|
2482
|
+
._inputError_1llou_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_1llou_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_1llou_26:hover {
|
|
2496
2496
|
border-color: var(--color-border-warning-hover) !important;
|
|
2497
2497
|
}
|
|
2498
|
-
.
|
|
2498
|
+
._inputWarning_1llou_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_1llou_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_1llou_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_1llou_67::-webkit-scrollbar {
|
|
2519
2519
|
display: none;
|
|
2520
2520
|
}
|
|
2521
|
-
.
|
|
2522
|
-
.
|
|
2521
|
+
._header_1llou_77 ._headerTitle_1llou_77,
|
|
2522
|
+
._heading_1llou_78 ._itemHeader_1llou_78 {
|
|
2523
2523
|
transition: opacity 0.3s;
|
|
2524
2524
|
}
|
|
2525
|
-
.
|
|
2526
|
-
.
|
|
2525
|
+
._narrow_1llou_81 ._header_1llou_77 ._headerTitle_1llou_77,
|
|
2526
|
+
._narrow_1llou_81 ._heading_1llou_78 ._itemHeader_1llou_78 {
|
|
2527
2527
|
opacity: 0;
|
|
2528
2528
|
}
|
|
2529
|
-
.
|
|
2529
|
+
._stickyHeader_1llou_85 {
|
|
2530
2530
|
position: sticky;
|
|
2531
2531
|
top: 0;
|
|
2532
2532
|
background-color: var(--color-background);
|
|
2533
2533
|
z-index: 10;
|
|
2534
2534
|
}
|
|
2535
|
-
.
|
|
2535
|
+
._itemHeader_1llou_78 {
|
|
2536
2536
|
padding: var(--padding-xs) var(--padding);
|
|
2537
2537
|
display: flex;
|
|
2538
2538
|
align-items: flex-start;
|
|
2539
2539
|
}
|
|
2540
|
-
.
|
|
2540
|
+
._itemHeader_1llou_78 ._title_1llou_96 {
|
|
2541
2541
|
margin: 0;
|
|
2542
2542
|
padding: 0;
|
|
2543
2543
|
flex-grow: 1;
|
|
2544
2544
|
min-width: 0;
|
|
2545
2545
|
}
|
|
2546
|
-
.
|
|
2546
|
+
._itemHeader_1llou_78 ._name_1llou_102 {
|
|
2547
2547
|
font-weight: 400;
|
|
2548
2548
|
}
|
|
2549
|
-
.
|
|
2549
|
+
._itemHeader_1llou_78 ._iconTooltipMargin_1llou_105 {
|
|
2550
2550
|
margin-left: var(--padding-xs);
|
|
2551
2551
|
}
|
|
2552
|
-
.
|
|
2552
|
+
._itemHeader_1llou_78 ._bold_1llou_108 {
|
|
2553
2553
|
font-weight: bold;
|
|
2554
2554
|
}
|
|
2555
|
-
.
|
|
2555
|
+
._header_1llou_77 {
|
|
2556
2556
|
padding: var(--padding);
|
|
2557
2557
|
display: flex;
|
|
2558
2558
|
align-items: center;
|
|
2559
2559
|
border-bottom: 1px solid var(--color-border);
|
|
2560
2560
|
}
|
|
2561
|
-
.
|
|
2561
|
+
._toggleNarrow_1llou_117 {
|
|
2562
2562
|
margin-right: 16px;
|
|
2563
2563
|
margin-left: -5px;
|
|
2564
2564
|
color: #c8c8c8;
|
|
@@ -2567,16 +2567,16 @@ html[data-theme='dark'] {
|
|
|
2567
2567
|
width: 22px;
|
|
2568
2568
|
justify-content: center;
|
|
2569
2569
|
}
|
|
2570
|
-
.
|
|
2570
|
+
._toggleNarrow_1llou_117:hover {
|
|
2571
2571
|
color: var(--color-text-primary-hover);
|
|
2572
2572
|
}
|
|
2573
|
-
.
|
|
2573
|
+
._toggleNarrow_1llou_117:active {
|
|
2574
2574
|
color: var(--color-text-primary-active);
|
|
2575
2575
|
}
|
|
2576
|
-
.
|
|
2576
|
+
._narrow_1llou_81 ._toggleNarrow_1llou_117 {
|
|
2577
2577
|
transform: scaleX(-1);
|
|
2578
2578
|
}
|
|
2579
|
-
.
|
|
2579
|
+
._drag_1llou_135 {
|
|
2580
2580
|
color: var(--color-text-faint);
|
|
2581
2581
|
display: flex;
|
|
2582
2582
|
align-items: center;
|
|
@@ -2585,39 +2585,33 @@ html[data-theme='dark'] {
|
|
|
2585
2585
|
margin-left: calc(var(--padding-xs) * -1);
|
|
2586
2586
|
margin-top: calc((var(--line-height) - var(--size-sm)) / 2);
|
|
2587
2587
|
margin-bottom: calc((var(--line-height) - var(--size-sm)) / 2);
|
|
2588
|
-
cursor:
|
|
2588
|
+
cursor: move;
|
|
2589
2589
|
height: var(--size-sm);
|
|
2590
2590
|
width: var(--size-sm);
|
|
2591
2591
|
flex-shrink: 0;
|
|
2592
2592
|
}
|
|
2593
|
-
.
|
|
2593
|
+
._drag_1llou_135:hover {
|
|
2594
2594
|
color: var(--color-text-primary-hover);
|
|
2595
2595
|
}
|
|
2596
|
-
.
|
|
2597
|
-
cursor: grabbing;
|
|
2596
|
+
._drag_1llou_135:active {
|
|
2598
2597
|
color: var(--color-text-primary-active);
|
|
2599
2598
|
}
|
|
2600
|
-
.
|
|
2601
|
-
box-shadow: var(--shadow-layer);
|
|
2602
|
-
border-radius: var(--border-radius);
|
|
2603
|
-
overflow: hidden;
|
|
2604
|
-
}
|
|
2605
|
-
._list_7sjlf_161 {
|
|
2599
|
+
._list_1llou_155 {
|
|
2606
2600
|
flex-shrink: 0;
|
|
2607
2601
|
background: var(--color-background);
|
|
2608
2602
|
}
|
|
2609
|
-
.
|
|
2610
|
-
.
|
|
2603
|
+
._list_1llou_155._bordered_1llou_159:first-child,
|
|
2604
|
+
._list_1llou_155._bordered_1llou_159:first-child > :first-child {
|
|
2611
2605
|
border-top-left-radius: inherit;
|
|
2612
2606
|
border-top-right-radius: inherit;
|
|
2613
2607
|
}
|
|
2614
|
-
.
|
|
2615
|
-
.
|
|
2608
|
+
._list_1llou_155._bordered_1llou_159:last-child,
|
|
2609
|
+
._list_1llou_155._bordered_1llou_159:last-child > :last-child {
|
|
2616
2610
|
border-bottom-left-radius: inherit;
|
|
2617
2611
|
border-bottom-right-radius: inherit;
|
|
2618
2612
|
border-bottom: 0;
|
|
2619
2613
|
}
|
|
2620
|
-
.
|
|
2614
|
+
._item_1llou_78 {
|
|
2621
2615
|
color: inherit;
|
|
2622
2616
|
display: block;
|
|
2623
2617
|
transition: background-color 0.2s;
|
|
@@ -2628,7 +2622,7 @@ html[data-theme='dark'] {
|
|
|
2628
2622
|
overflow-wrap: break-word;
|
|
2629
2623
|
hyphens: auto;
|
|
2630
2624
|
}
|
|
2631
|
-
.
|
|
2625
|
+
._item_1llou_78:not(._heading_1llou_78):after {
|
|
2632
2626
|
content: '';
|
|
2633
2627
|
position: absolute;
|
|
2634
2628
|
left: 0;
|
|
@@ -2639,41 +2633,41 @@ html[data-theme='dark'] {
|
|
|
2639
2633
|
border-bottom-left-radius: inherit;
|
|
2640
2634
|
transition: background 0.3s, width 0.3s;
|
|
2641
2635
|
}
|
|
2642
|
-
.
|
|
2636
|
+
._item_1llou_78._action_1llou_192 {
|
|
2643
2637
|
cursor: pointer;
|
|
2644
2638
|
}
|
|
2645
|
-
.
|
|
2639
|
+
._item_1llou_78._action_1llou_192:not(._active_1llou_195):hover {
|
|
2646
2640
|
background: var(--color-background-listitem-hover);
|
|
2647
2641
|
}
|
|
2648
|
-
.
|
|
2642
|
+
._item_1llou_78._action_1llou_192:not(._active_1llou_195):hover:after {
|
|
2649
2643
|
width: 5px;
|
|
2650
2644
|
background: rgba(0, 0, 0, 0.1);
|
|
2651
2645
|
}
|
|
2652
|
-
.
|
|
2646
|
+
._item_1llou_78._indented_1llou_202:after {
|
|
2653
2647
|
width: 3px;
|
|
2654
2648
|
background: rgba(0, 0, 0, 0.1);
|
|
2655
2649
|
}
|
|
2656
|
-
.
|
|
2650
|
+
._item_1llou_78._active_1llou_195 {
|
|
2657
2651
|
cursor: default;
|
|
2658
2652
|
position: relative;
|
|
2659
2653
|
z-index: 1;
|
|
2660
2654
|
background: var(--color-background-listitem-active);
|
|
2661
2655
|
}
|
|
2662
|
-
.
|
|
2656
|
+
._item_1llou_78._active_1llou_195:after {
|
|
2663
2657
|
background: var(--color-background-primary) !important;
|
|
2664
2658
|
}
|
|
2665
|
-
.
|
|
2659
|
+
._item_1llou_78._disabled_1llou_215 {
|
|
2666
2660
|
color: var(--color-text-faint);
|
|
2667
2661
|
pointer-events: none;
|
|
2668
2662
|
}
|
|
2669
|
-
.
|
|
2663
|
+
._item_1llou_78._heading_1llou_78 {
|
|
2670
2664
|
color: var(--color-text-muted);
|
|
2671
2665
|
background-color: var(--color-background-cardheader);
|
|
2672
2666
|
}
|
|
2673
|
-
.
|
|
2667
|
+
._item_1llou_78._heading_1llou_78._action_1llou_192:hover {
|
|
2674
2668
|
color: var(--color-text-primary-hover);
|
|
2675
2669
|
}
|
|
2676
|
-
.
|
|
2670
|
+
._item_1llou_78 ._label_1llou_226 {
|
|
2677
2671
|
margin-right: var(--padding-xs);
|
|
2678
2672
|
flex-shrink: 0;
|
|
2679
2673
|
width: var(--size-sm);
|
|
@@ -2684,38 +2678,38 @@ html[data-theme='dark'] {
|
|
|
2684
2678
|
align-items: center;
|
|
2685
2679
|
justify-content: center;
|
|
2686
2680
|
}
|
|
2687
|
-
.
|
|
2688
|
-
.
|
|
2681
|
+
._item_1llou_78 ._details_1llou_237,
|
|
2682
|
+
._item_1llou_78 ._metadata_1llou_238 {
|
|
2689
2683
|
display: block;
|
|
2690
2684
|
width: 100%;
|
|
2691
2685
|
font-weight: normal;
|
|
2692
2686
|
}
|
|
2693
|
-
.
|
|
2687
|
+
._item_1llou_78 ._metadata_1llou_238 {
|
|
2694
2688
|
color: var(--color-text-muted);
|
|
2695
2689
|
}
|
|
2696
|
-
.
|
|
2690
|
+
._item_1llou_78 ._itemContent_1llou_246 {
|
|
2697
2691
|
padding: 0 var(--padding) var(--padding-sm);
|
|
2698
2692
|
cursor: auto;
|
|
2699
2693
|
}
|
|
2700
|
-
.
|
|
2694
|
+
._item_1llou_78 ._itemContent_1llou_246:empty {
|
|
2701
2695
|
padding: inherit;
|
|
2702
2696
|
}
|
|
2703
|
-
.
|
|
2697
|
+
._indentIcon_1llou_253 {
|
|
2704
2698
|
color: var(--color-text-faint);
|
|
2705
2699
|
flex-shrink: 0;
|
|
2706
2700
|
margin-right: var(--padding-xxs);
|
|
2707
2701
|
}
|
|
2708
|
-
.
|
|
2702
|
+
._expandIcon_1llou_258 {
|
|
2709
2703
|
flex-shrink: 0;
|
|
2710
2704
|
position: relative;
|
|
2711
2705
|
display: flex;
|
|
2712
2706
|
height: var(--line-height);
|
|
2713
2707
|
margin-right: var(--padding-xs);
|
|
2714
2708
|
}
|
|
2715
|
-
.
|
|
2709
|
+
._expandIcon_1llou_258._expanded_1llou_265 svg {
|
|
2716
2710
|
transform: rotate(90deg);
|
|
2717
2711
|
}
|
|
2718
|
-
.
|
|
2712
|
+
._right_1llou_268 {
|
|
2719
2713
|
margin-left: auto;
|
|
2720
2714
|
display: flex;
|
|
2721
2715
|
align-items: center;
|
|
@@ -2723,34 +2717,34 @@ html[data-theme='dark'] {
|
|
|
2723
2717
|
margin-bottom: calc((var(--line-height) - var(--size-sm)) / 2);
|
|
2724
2718
|
min-height: var(--size-sm);
|
|
2725
2719
|
}
|
|
2726
|
-
.
|
|
2720
|
+
._actions_1llou_276 {
|
|
2727
2721
|
margin-left: var(--padding-xs);
|
|
2728
2722
|
display: flex;
|
|
2729
2723
|
align-items: center;
|
|
2730
2724
|
}
|
|
2731
|
-
.
|
|
2725
|
+
._scrollableList_1llou_281 {
|
|
2732
2726
|
height: 100%;
|
|
2733
2727
|
overflow-y: auto;
|
|
2734
2728
|
scroll-behavior: smooth;
|
|
2735
2729
|
}
|
|
2736
|
-
.
|
|
2730
|
+
._infiniteScrollContainer_1llou_286 {
|
|
2737
2731
|
overflow: hidden !important;
|
|
2738
2732
|
}
|
|
2739
|
-
.
|
|
2733
|
+
._hideScrollbar_1llou_67 {
|
|
2740
2734
|
/* Firefox */
|
|
2741
2735
|
scrollbar-width: none;
|
|
2742
2736
|
/* IE 10+ */
|
|
2743
2737
|
-ms-overflow-style: none;
|
|
2744
2738
|
/* Chrome, Safari and Opera */
|
|
2745
2739
|
}
|
|
2746
|
-
.
|
|
2740
|
+
._hideScrollbar_1llou_67::-webkit-scrollbar {
|
|
2747
2741
|
display: none;
|
|
2748
2742
|
}
|
|
2749
|
-
.
|
|
2743
|
+
._bordered_1llou_159 {
|
|
2750
2744
|
box-shadow: inset 0px 0px 0px 2px var(--color-background-primary);
|
|
2751
2745
|
background: var(--color-background-listitem-active);
|
|
2752
2746
|
}
|
|
2753
|
-
.
|
|
2747
|
+
._noPointerEvents_1llou_303 {
|
|
2754
2748
|
pointer-events: none;
|
|
2755
2749
|
}
|
|
2756
2750
|
._loader_477i5_1 {
|
|
@@ -9137,80 +9131,80 @@ button:active .remirror-menu-pane-shortcut,
|
|
|
9137
9131
|
width: 8px;
|
|
9138
9132
|
height: 14px;
|
|
9139
9133
|
}
|
|
9140
|
-
.
|
|
9134
|
+
._inputInTable_1dg3w_1 {
|
|
9141
9135
|
background-color: transparent;
|
|
9142
9136
|
border-radius: inherit !important;
|
|
9143
9137
|
height: var(--size);
|
|
9144
9138
|
min-height: 100%;
|
|
9145
9139
|
}
|
|
9146
|
-
.
|
|
9140
|
+
._inputInTable_1dg3w_1:not(:hover):not([data-error]):not([data-warning]) {
|
|
9147
9141
|
border-color: transparent;
|
|
9148
9142
|
}
|
|
9149
|
-
.
|
|
9143
|
+
._inputInTable_1dg3w_1:not(:focus) {
|
|
9150
9144
|
box-shadow: none;
|
|
9151
9145
|
}
|
|
9152
|
-
.
|
|
9146
|
+
._inputHover_1dg3w_13 {
|
|
9153
9147
|
position: relative;
|
|
9154
9148
|
border-color: var(--color-border-hover);
|
|
9155
9149
|
z-index: 2;
|
|
9156
9150
|
}
|
|
9157
|
-
.
|
|
9151
|
+
._inputFocus_1dg3w_18 {
|
|
9158
9152
|
position: relative;
|
|
9159
9153
|
outline: none !important;
|
|
9160
9154
|
border-color: var(--color-border-focus) !important;
|
|
9161
9155
|
box-shadow: var(--shadow-focus);
|
|
9162
9156
|
z-index: 3;
|
|
9163
9157
|
}
|
|
9164
|
-
.
|
|
9165
|
-
.
|
|
9158
|
+
._inputError_1dg3w_25,
|
|
9159
|
+
._inputWarning_1dg3w_26 {
|
|
9166
9160
|
position: relative;
|
|
9167
9161
|
}
|
|
9168
|
-
.
|
|
9162
|
+
._inputError_1dg3w_25 {
|
|
9169
9163
|
z-index: 2;
|
|
9170
9164
|
border-color: var(--color-border-error);
|
|
9171
9165
|
color: var(--color-text-error) !important;
|
|
9172
9166
|
background-color: var(--color-background-error-muted);
|
|
9173
9167
|
}
|
|
9174
|
-
.
|
|
9168
|
+
._inputError_1dg3w_25:hover {
|
|
9175
9169
|
border-color: var(--color-border-error-hover) !important;
|
|
9176
9170
|
}
|
|
9177
|
-
.
|
|
9171
|
+
._inputError_1dg3w_25:focus {
|
|
9178
9172
|
position: relative;
|
|
9179
9173
|
outline: none !important;
|
|
9180
9174
|
border-color: var(--color-border-focus) !important;
|
|
9181
9175
|
box-shadow: var(--shadow-focus);
|
|
9182
9176
|
z-index: 3;
|
|
9183
9177
|
}
|
|
9184
|
-
.
|
|
9178
|
+
._inputWarning_1dg3w_26 {
|
|
9185
9179
|
z-index: 1;
|
|
9186
9180
|
border-color: var(--color-border-warning);
|
|
9187
9181
|
color: var(--color-text-warning) !important;
|
|
9188
9182
|
background-color: var(--color-background-warning-muted);
|
|
9189
9183
|
}
|
|
9190
|
-
.
|
|
9184
|
+
._inputWarning_1dg3w_26:hover {
|
|
9191
9185
|
border-color: var(--color-border-warning-hover) !important;
|
|
9192
9186
|
}
|
|
9193
|
-
.
|
|
9187
|
+
._inputWarning_1dg3w_26:focus {
|
|
9194
9188
|
position: relative;
|
|
9195
9189
|
outline: none !important;
|
|
9196
9190
|
border-color: var(--color-border-focus) !important;
|
|
9197
9191
|
box-shadow: var(--shadow-focus);
|
|
9198
9192
|
z-index: 3;
|
|
9199
9193
|
}
|
|
9200
|
-
.
|
|
9194
|
+
._inputDisabled_1dg3w_61 {
|
|
9201
9195
|
pointer-events: none;
|
|
9202
9196
|
background-color: var(--color-background-disabled);
|
|
9203
9197
|
color: var(--color-text-muted);
|
|
9204
9198
|
box-shadow: none;
|
|
9205
9199
|
}
|
|
9206
|
-
.
|
|
9200
|
+
._hideScrollbars_1dg3w_67 {
|
|
9207
9201
|
/* Firefox */
|
|
9208
9202
|
scrollbar-width: none;
|
|
9209
9203
|
/* IE 10+ */
|
|
9210
9204
|
-ms-overflow-style: none;
|
|
9211
9205
|
/* Chrome, Safari and Opera */
|
|
9212
9206
|
}
|
|
9213
|
-
.
|
|
9207
|
+
._hideScrollbars_1dg3w_67::-webkit-scrollbar {
|
|
9214
9208
|
display: none;
|
|
9215
9209
|
}
|
|
9216
9210
|
:root {
|
|
@@ -9221,7 +9215,7 @@ html[data-theme='dark'] {
|
|
|
9221
9215
|
--color-background-table-header: var(--color-neutral-800);
|
|
9222
9216
|
--color-background-table-row-tinted: var(--color-neutral-800);
|
|
9223
9217
|
}
|
|
9224
|
-
.
|
|
9218
|
+
._wrapper_1dg3w_85 {
|
|
9225
9219
|
border-radius: inherit;
|
|
9226
9220
|
max-height: 100%;
|
|
9227
9221
|
max-width: 100%;
|
|
@@ -9229,22 +9223,22 @@ html[data-theme='dark'] {
|
|
|
9229
9223
|
flex-direction: column;
|
|
9230
9224
|
overflow: hidden;
|
|
9231
9225
|
}
|
|
9232
|
-
.
|
|
9226
|
+
._wrapper_1dg3w_85._bordered_1dg3w_93 {
|
|
9233
9227
|
border-radius: var(--border-radius);
|
|
9234
9228
|
border: 1px solid var(--color-border);
|
|
9235
9229
|
box-shadow: var(--shadow-card);
|
|
9236
9230
|
}
|
|
9237
|
-
.
|
|
9231
|
+
._scroll_1dg3w_98 {
|
|
9238
9232
|
overflow-y: auto;
|
|
9239
9233
|
border-radius: inherit;
|
|
9240
9234
|
flex: 1;
|
|
9241
9235
|
min-height: 0;
|
|
9242
9236
|
}
|
|
9243
|
-
.
|
|
9237
|
+
._scroll_1dg3w_98:not(:first-child) {
|
|
9244
9238
|
border-top-left-radius: 0;
|
|
9245
9239
|
border-top-right-radius: 0;
|
|
9246
9240
|
}
|
|
9247
|
-
.
|
|
9241
|
+
._table_1dg3w_108 {
|
|
9248
9242
|
background: var(--color-background-raised);
|
|
9249
9243
|
color: var(--color-text);
|
|
9250
9244
|
border-collapse: separate;
|
|
@@ -9253,39 +9247,34 @@ html[data-theme='dark'] {
|
|
|
9253
9247
|
width: 100%;
|
|
9254
9248
|
font-variant-numeric: tabular-nums;
|
|
9255
9249
|
}
|
|
9256
|
-
.
|
|
9250
|
+
._table_1dg3w_108 > :first-child {
|
|
9257
9251
|
border-top-left-radius: inherit;
|
|
9258
9252
|
border-top-right-radius: inherit;
|
|
9259
9253
|
}
|
|
9260
|
-
.
|
|
9254
|
+
._table_1dg3w_108 > :first-child > :first-child {
|
|
9261
9255
|
border-top-left-radius: inherit;
|
|
9262
9256
|
border-top-right-radius: inherit;
|
|
9263
9257
|
}
|
|
9264
|
-
.
|
|
9258
|
+
._table_1dg3w_108 > :first-child > :first-child > :first-child {
|
|
9265
9259
|
border-top-left-radius: inherit;
|
|
9266
9260
|
}
|
|
9267
|
-
.
|
|
9261
|
+
._table_1dg3w_108 > :first-child > :first-child > :last-child {
|
|
9268
9262
|
border-top-right-radius: inherit;
|
|
9269
9263
|
}
|
|
9270
|
-
.
|
|
9264
|
+
._table_1dg3w_108 > :last-child {
|
|
9271
9265
|
border-bottom-left-radius: inherit;
|
|
9272
9266
|
border-bottom-right-radius: inherit;
|
|
9273
9267
|
}
|
|
9274
|
-
.
|
|
9268
|
+
._table_1dg3w_108 > :last-child > :last-child {
|
|
9275
9269
|
border-bottom-left-radius: inherit;
|
|
9276
9270
|
border-bottom-right-radius: inherit;
|
|
9277
9271
|
}
|
|
9278
|
-
.
|
|
9272
|
+
._table_1dg3w_108 > :last-child > :last-child > :first-child {
|
|
9279
9273
|
border-bottom-left-radius: inherit;
|
|
9280
9274
|
}
|
|
9281
|
-
.
|
|
9275
|
+
._table_1dg3w_108 > :last-child > :last-child > :last-child {
|
|
9282
9276
|
border-bottom-right-radius: inherit;
|
|
9283
9277
|
}
|
|
9284
|
-
._dragOverlay_xzacf_145 {
|
|
9285
|
-
box-shadow: var(--shadow-layer);
|
|
9286
|
-
border-radius: var(--border-radius);
|
|
9287
|
-
overflow: hidden;
|
|
9288
|
-
}
|
|
9289
9278
|
th,
|
|
9290
9279
|
td {
|
|
9291
9280
|
padding: var(--padding-input) !important;
|
|
@@ -9299,10 +9288,10 @@ th:not(:first-child),
|
|
|
9299
9288
|
td:not(:first-child) {
|
|
9300
9289
|
border-left-width: 1px;
|
|
9301
9290
|
}
|
|
9302
|
-
.
|
|
9303
|
-
.
|
|
9304
|
-
.
|
|
9305
|
-
.
|
|
9291
|
+
._table_1dg3w_108 > *:not(:last-child) > tr th,
|
|
9292
|
+
._table_1dg3w_108 > *:not(:last-child) > tr td,
|
|
9293
|
+
._table_1dg3w_108 > *:last-child > tr:not(:last-child) th,
|
|
9294
|
+
._table_1dg3w_108 > *:last-child > tr:not(:last-child) td {
|
|
9306
9295
|
border-bottom-width: 1px;
|
|
9307
9296
|
}
|
|
9308
9297
|
@-moz-document url-prefix() {
|
|
@@ -9325,12 +9314,11 @@ thead tr {
|
|
|
9325
9314
|
}
|
|
9326
9315
|
tbody {
|
|
9327
9316
|
overflow: hidden;
|
|
9328
|
-
background-color: var(--color-background);
|
|
9329
9317
|
}
|
|
9330
9318
|
tbody tr {
|
|
9331
9319
|
background-color: var(--color-background-raised);
|
|
9332
9320
|
}
|
|
9333
|
-
.
|
|
9321
|
+
._striped_1dg3w_188 tbody tr:nth-child(even) {
|
|
9334
9322
|
background-color: var(--color-background-table-row-tinted);
|
|
9335
9323
|
}
|
|
9336
9324
|
._title_zn5s7_1 {
|
|
@@ -9359,14 +9347,14 @@ tbody tr {
|
|
|
9359
9347
|
justify-content: space-between;
|
|
9360
9348
|
border-top: 1px solid var(--color-border);
|
|
9361
9349
|
}
|
|
9362
|
-
.
|
|
9350
|
+
._clickableRow_m64j5_1 {
|
|
9363
9351
|
cursor: pointer;
|
|
9364
9352
|
}
|
|
9365
|
-
.
|
|
9366
|
-
.
|
|
9353
|
+
._hoverableRow_m64j5_4:not(._rowActive_m64j5_4):hover,
|
|
9354
|
+
._clickableRow_m64j5_1:not(._rowActive_m64j5_4):hover {
|
|
9367
9355
|
background-color: var(--color-background-listitem-hover) !important;
|
|
9368
9356
|
}
|
|
9369
|
-
.
|
|
9357
|
+
._expandableRow_m64j5_8._flush_m64j5_8 {
|
|
9370
9358
|
padding: 0 !important;
|
|
9371
9359
|
height: auto !important;
|
|
9372
9360
|
}
|
|
@@ -9376,11 +9364,11 @@ tr[data-warning] {
|
|
|
9376
9364
|
tr[data-error] {
|
|
9377
9365
|
background-color: var(--color-background-error-muted) !important;
|
|
9378
9366
|
}
|
|
9379
|
-
.
|
|
9367
|
+
._rowActive_m64j5_4 {
|
|
9380
9368
|
position: relative;
|
|
9381
9369
|
background-color: var(--color-background-listitem-active) !important;
|
|
9382
9370
|
}
|
|
9383
|
-
.
|
|
9371
|
+
._rowActive_m64j5_4:after {
|
|
9384
9372
|
content: '';
|
|
9385
9373
|
position: absolute;
|
|
9386
9374
|
left: 0;
|
|
@@ -9392,25 +9380,23 @@ tr[data-error] {
|
|
|
9392
9380
|
transition: background 0.3s;
|
|
9393
9381
|
background: var(--color-background-primary);
|
|
9394
9382
|
}
|
|
9395
|
-
.
|
|
9383
|
+
._dragIconCell_m64j5_34 {
|
|
9396
9384
|
width: var(--size);
|
|
9397
9385
|
min-width: var(--size);
|
|
9398
9386
|
position: relative;
|
|
9399
9387
|
}
|
|
9400
|
-
.
|
|
9388
|
+
._dragIcon_m64j5_34 {
|
|
9401
9389
|
display: flex;
|
|
9402
9390
|
align-items: center;
|
|
9403
9391
|
justify-content: center;
|
|
9404
9392
|
position: absolute;
|
|
9405
9393
|
inset: 0;
|
|
9406
9394
|
color: var(--color-text-faint);
|
|
9407
|
-
cursor: grab;
|
|
9408
9395
|
}
|
|
9409
|
-
.
|
|
9396
|
+
._dragIcon_m64j5_34:hover {
|
|
9410
9397
|
color: var(--color-text-primary-hover);
|
|
9411
9398
|
}
|
|
9412
|
-
.
|
|
9413
|
-
cursor: grabbing;
|
|
9399
|
+
._dragIcon_m64j5_34:active {
|
|
9414
9400
|
color: var(--color-text-primary-active);
|
|
9415
9401
|
}
|
|
9416
9402
|
._inputInTable_ie6ng_1 {
|