@oliasoft-open-source/react-ui-library 3.11.0-beta-6 → 3.11.0-beta-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 +118 -151
- package/dist/index.js +140 -148
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -23390,185 +23390,170 @@ html[data-theme='dark'] {
|
|
|
23390
23390
|
/*
|
|
23391
23391
|
Z-INDEX
|
|
23392
23392
|
*/
|
|
23393
|
-
.
|
|
23393
|
+
._inputInTable_1auke_337 {
|
|
23394
23394
|
background-color: transparent;
|
|
23395
23395
|
border-radius: inherit !important;
|
|
23396
23396
|
height: var(--size);
|
|
23397
23397
|
min-height: 100%;
|
|
23398
23398
|
}
|
|
23399
|
-
.
|
|
23399
|
+
._inputInTable_1auke_337:not(:hover) {
|
|
23400
23400
|
border-color: transparent;
|
|
23401
23401
|
}
|
|
23402
|
-
.
|
|
23402
|
+
._inputHover_1auke_346 {
|
|
23403
23403
|
position: relative;
|
|
23404
23404
|
border-color: var(--color-border-hover);
|
|
23405
23405
|
z-index: 2;
|
|
23406
23406
|
}
|
|
23407
|
-
.
|
|
23407
|
+
._inputFocus_1auke_351 {
|
|
23408
23408
|
position: relative;
|
|
23409
23409
|
outline: none !important;
|
|
23410
23410
|
border-color: var(--color-border-focus) !important;
|
|
23411
23411
|
box-shadow: var(--shadow-focus);
|
|
23412
23412
|
z-index: 3;
|
|
23413
23413
|
}
|
|
23414
|
-
.
|
|
23415
|
-
.
|
|
23414
|
+
._inputError_1auke_358,
|
|
23415
|
+
._inputWarning_1auke_359 {
|
|
23416
23416
|
position: relative;
|
|
23417
23417
|
}
|
|
23418
|
-
.
|
|
23418
|
+
._inputError_1auke_358 {
|
|
23419
23419
|
z-index: 2;
|
|
23420
23420
|
border-color: var(--color-border-error) !important;
|
|
23421
23421
|
color: var(--color-text-error) !important;
|
|
23422
23422
|
background-color: var(--color-background-error);
|
|
23423
23423
|
}
|
|
23424
|
-
.
|
|
23424
|
+
._inputError_1auke_358:hover {
|
|
23425
23425
|
border-color: var(--color-border-error-hover) !important;
|
|
23426
23426
|
}
|
|
23427
|
-
.
|
|
23427
|
+
._inputError_1auke_358:focus {
|
|
23428
23428
|
position: relative;
|
|
23429
23429
|
outline: none !important;
|
|
23430
23430
|
border-color: var(--color-border-focus) !important;
|
|
23431
23431
|
box-shadow: var(--shadow-focus);
|
|
23432
23432
|
z-index: 3;
|
|
23433
23433
|
}
|
|
23434
|
-
.
|
|
23434
|
+
._inputWarning_1auke_359 {
|
|
23435
23435
|
z-index: 1;
|
|
23436
23436
|
border-color: var(--color-border-warning) !important;
|
|
23437
23437
|
color: var(--color-text-warning) !important;
|
|
23438
23438
|
background-color: var(--color-background-warning);
|
|
23439
23439
|
}
|
|
23440
|
-
.
|
|
23440
|
+
._inputWarning_1auke_359:hover {
|
|
23441
23441
|
border-color: var(--color-border-warning-hover) !important;
|
|
23442
23442
|
}
|
|
23443
|
-
.
|
|
23443
|
+
._inputWarning_1auke_359:focus {
|
|
23444
23444
|
position: relative;
|
|
23445
23445
|
outline: none !important;
|
|
23446
23446
|
border-color: var(--color-border-focus) !important;
|
|
23447
23447
|
box-shadow: var(--shadow-focus);
|
|
23448
23448
|
z-index: 3;
|
|
23449
23449
|
}
|
|
23450
|
-
.
|
|
23450
|
+
._inputDisabled_1auke_394 {
|
|
23451
23451
|
pointer-events: none;
|
|
23452
23452
|
background-color: var(--color-background-disabled);
|
|
23453
23453
|
color: var(--color-text-muted);
|
|
23454
23454
|
}
|
|
23455
|
-
.
|
|
23455
|
+
._hideScrollbars_1auke_399 {
|
|
23456
23456
|
/* Firefox */
|
|
23457
23457
|
scrollbar-width: none;
|
|
23458
23458
|
/* IE 10+ */
|
|
23459
23459
|
-ms-overflow-style: none;
|
|
23460
23460
|
/* Chrome, Safari and Opera */
|
|
23461
23461
|
}
|
|
23462
|
-
.
|
|
23462
|
+
._hideScrollbars_1auke_399::-webkit-scrollbar {
|
|
23463
23463
|
display: none;
|
|
23464
23464
|
}
|
|
23465
|
-
.
|
|
23465
|
+
._scrollbars_1auke_409 {
|
|
23466
23466
|
overflow: overlay;
|
|
23467
23467
|
--scrollbar-color: #00000040;
|
|
23468
23468
|
}
|
|
23469
|
-
.
|
|
23469
|
+
._scrollbars_1auke_409::-webkit-scrollbar {
|
|
23470
23470
|
display: block;
|
|
23471
23471
|
width: 16px;
|
|
23472
23472
|
z-index: 2;
|
|
23473
23473
|
}
|
|
23474
|
-
.
|
|
23474
|
+
._scrollbars_1auke_409::-webkit-scrollbar-button {
|
|
23475
23475
|
display: none;
|
|
23476
23476
|
}
|
|
23477
|
-
.
|
|
23477
|
+
._scrollbars_1auke_409::-webkit-scrollbar-track {
|
|
23478
23478
|
background-color: #00000000;
|
|
23479
23479
|
}
|
|
23480
|
-
.
|
|
23480
|
+
._scrollbars_1auke_409::-webkit-scrollbar-track-piece {
|
|
23481
23481
|
background-color: #00000000;
|
|
23482
23482
|
}
|
|
23483
|
-
.
|
|
23483
|
+
._scrollbars_1auke_409::-webkit-scrollbar-thumb {
|
|
23484
23484
|
background-color: #00000000;
|
|
23485
23485
|
border: 5px solid transparent;
|
|
23486
23486
|
border-radius: 24px;
|
|
23487
23487
|
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
23488
23488
|
}
|
|
23489
|
-
.
|
|
23489
|
+
._scrollbars_1auke_409::-webkit-scrollbar-corner {
|
|
23490
23490
|
background: rgba(0, 0, 0, 0);
|
|
23491
23491
|
}
|
|
23492
23492
|
:root {
|
|
23493
23493
|
--color-background-table-header: var(--color-neutral-150);
|
|
23494
23494
|
--color-background-table-row-tinted: var(--color-neutral-50);
|
|
23495
|
-
--color-border-table:
|
|
23495
|
+
--color-border-table: var(--color-neutral-200);
|
|
23496
23496
|
}
|
|
23497
23497
|
html[data-theme='dark'] {
|
|
23498
23498
|
--color-background-table-header: var(--color-neutral-750);
|
|
23499
23499
|
--color-background-table-row-tinted: var(--color-neutral-850);
|
|
23500
23500
|
--color-border-table: black;
|
|
23501
23501
|
}
|
|
23502
|
-
.
|
|
23503
|
-
overflow: overlay;
|
|
23504
|
-
--scrollbar-color: #00000040;
|
|
23502
|
+
._wrapper_1auke_446 {
|
|
23505
23503
|
border-radius: inherit;
|
|
23504
|
+
max-height: 100%;
|
|
23505
|
+
display: flex;
|
|
23506
|
+
flex-direction: column;
|
|
23507
|
+
overflow: hidden;
|
|
23506
23508
|
}
|
|
23507
|
-
.
|
|
23508
|
-
|
|
23509
|
-
|
|
23510
|
-
z-index: 2;
|
|
23511
|
-
}
|
|
23512
|
-
._scrollWrapper_1y97v_446::-webkit-scrollbar-button {
|
|
23513
|
-
display: none;
|
|
23514
|
-
}
|
|
23515
|
-
._scrollWrapper_1y97v_446::-webkit-scrollbar-track {
|
|
23516
|
-
background-color: #00000000;
|
|
23517
|
-
}
|
|
23518
|
-
._scrollWrapper_1y97v_446::-webkit-scrollbar-track-piece {
|
|
23519
|
-
background-color: #00000000;
|
|
23520
|
-
}
|
|
23521
|
-
._scrollWrapper_1y97v_446::-webkit-scrollbar-thumb {
|
|
23522
|
-
background-color: #00000000;
|
|
23523
|
-
border: 5px solid transparent;
|
|
23524
|
-
border-radius: 24px;
|
|
23525
|
-
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
23509
|
+
._wrapper_1auke_446._bordered_1auke_453 {
|
|
23510
|
+
border-radius: 4px;
|
|
23511
|
+
border: 1px solid var(--color-border-table);
|
|
23526
23512
|
}
|
|
23527
|
-
.
|
|
23528
|
-
|
|
23513
|
+
._scroll_1auke_409 {
|
|
23514
|
+
overflow-y: auto;
|
|
23515
|
+
border-radius: inherit;
|
|
23516
|
+
flex: 1;
|
|
23517
|
+
min-height: 0;
|
|
23529
23518
|
}
|
|
23530
|
-
.
|
|
23531
|
-
border-radius:
|
|
23519
|
+
._scroll_1auke_409:not(:first-child) {
|
|
23520
|
+
border-top-left-radius: 0;
|
|
23521
|
+
border-top-right-radius: 0;
|
|
23532
23522
|
}
|
|
23533
|
-
.
|
|
23523
|
+
._table_1auke_467 {
|
|
23534
23524
|
background: var(--color-background-raised);
|
|
23535
23525
|
color: var(--color-text);
|
|
23536
23526
|
border-collapse: separate;
|
|
23537
23527
|
border-spacing: 0;
|
|
23538
23528
|
border-radius: inherit;
|
|
23539
23529
|
width: 100%;
|
|
23540
|
-
overflow: hidden;
|
|
23541
|
-
}
|
|
23542
|
-
._table_1y97v_477:not(:first-child) {
|
|
23543
|
-
border-top-left-radius: 0;
|
|
23544
|
-
border-top-right-radius: 0;
|
|
23545
23530
|
}
|
|
23546
|
-
.
|
|
23531
|
+
._table_1auke_467 > :first-child {
|
|
23547
23532
|
border-top-left-radius: inherit;
|
|
23548
23533
|
border-top-right-radius: inherit;
|
|
23549
23534
|
}
|
|
23550
|
-
.
|
|
23535
|
+
._table_1auke_467 > :first-child > :first-child {
|
|
23551
23536
|
border-top-left-radius: inherit;
|
|
23552
23537
|
border-top-right-radius: inherit;
|
|
23553
23538
|
}
|
|
23554
|
-
.
|
|
23539
|
+
._table_1auke_467 > :first-child > :first-child > :first-child {
|
|
23555
23540
|
border-top-left-radius: inherit;
|
|
23556
23541
|
}
|
|
23557
|
-
.
|
|
23542
|
+
._table_1auke_467 > :first-child > :first-child > :last-child {
|
|
23558
23543
|
border-top-right-radius: inherit;
|
|
23559
23544
|
}
|
|
23560
|
-
.
|
|
23545
|
+
._table_1auke_467 > :last-child {
|
|
23561
23546
|
border-bottom-left-radius: inherit;
|
|
23562
23547
|
border-bottom-right-radius: inherit;
|
|
23563
23548
|
}
|
|
23564
|
-
.
|
|
23549
|
+
._table_1auke_467 > :last-child > :last-child {
|
|
23565
23550
|
border-bottom-left-radius: inherit;
|
|
23566
23551
|
border-bottom-right-radius: inherit;
|
|
23567
23552
|
}
|
|
23568
|
-
.
|
|
23553
|
+
._table_1auke_467 > :last-child > :last-child > :first-child {
|
|
23569
23554
|
border-bottom-left-radius: inherit;
|
|
23570
23555
|
}
|
|
23571
|
-
.
|
|
23556
|
+
._table_1auke_467 > :last-child > :last-child > :last-child {
|
|
23572
23557
|
border-bottom-right-radius: inherit;
|
|
23573
23558
|
}
|
|
23574
23559
|
th,
|
|
@@ -23585,28 +23570,12 @@ th:not(:first-child),
|
|
|
23585
23570
|
td:not(:first-child) {
|
|
23586
23571
|
border-left-width: 1px;
|
|
23587
23572
|
}
|
|
23588
|
-
.
|
|
23589
|
-
.
|
|
23590
|
-
.
|
|
23591
|
-
.
|
|
23573
|
+
._table_1auke_467 > *:not(:last-child) > tr th,
|
|
23574
|
+
._table_1auke_467 > *:not(:last-child) > tr td,
|
|
23575
|
+
._table_1auke_467 > *:last-child > tr:not(:last-child) th,
|
|
23576
|
+
._table_1auke_467 > *:last-child > tr:not(:last-child) td {
|
|
23592
23577
|
border-bottom-width: 1px;
|
|
23593
23578
|
}
|
|
23594
|
-
._bordered_1y97v_474 th:first-child,
|
|
23595
|
-
._bordered_1y97v_474 td:first-child {
|
|
23596
|
-
border-left-width: 1px;
|
|
23597
|
-
}
|
|
23598
|
-
._bordered_1y97v_474 th:last-child,
|
|
23599
|
-
._bordered_1y97v_474 td:last-child {
|
|
23600
|
-
border-right-width: 1px;
|
|
23601
|
-
}
|
|
23602
|
-
._bordered_1y97v_474 ._table_1y97v_477 > *:last-child tr th,
|
|
23603
|
-
._bordered_1y97v_474 ._table_1y97v_477 > *:last-child tr td {
|
|
23604
|
-
border-bottom-width: 1px;
|
|
23605
|
-
}
|
|
23606
|
-
._bordered_1y97v_474 ._table_1y97v_477 > *:first-child > tr:first-child th,
|
|
23607
|
-
._bordered_1y97v_474 ._table_1y97v_477 > *:first-child > tr:first-child td {
|
|
23608
|
-
border-top-width: 1px;
|
|
23609
|
-
}
|
|
23610
23579
|
@-moz-document url-prefix() {
|
|
23611
23580
|
tr {
|
|
23612
23581
|
height: var(--size);
|
|
@@ -23619,8 +23588,8 @@ td:not(:first-child) {
|
|
|
23619
23588
|
thead {
|
|
23620
23589
|
position: sticky;
|
|
23621
23590
|
top: 0;
|
|
23622
|
-
z-index: 4;
|
|
23623
23591
|
overflow: hidden;
|
|
23592
|
+
z-index: 5;
|
|
23624
23593
|
}
|
|
23625
23594
|
thead tr {
|
|
23626
23595
|
background-color: var(--color-background-table-header);
|
|
@@ -23631,7 +23600,7 @@ tbody {
|
|
|
23631
23600
|
tbody tr {
|
|
23632
23601
|
background-color: var(--color-background-raised);
|
|
23633
23602
|
}
|
|
23634
|
-
.
|
|
23603
|
+
._striped_1auke_547 tbody tr:nth-child(even) {
|
|
23635
23604
|
background-color: var(--color-background-table-row-tinted);
|
|
23636
23605
|
}
|
|
23637
23606
|
/*
|
|
@@ -23970,9 +23939,9 @@ html[data-theme='dark'] {
|
|
|
23970
23939
|
/*
|
|
23971
23940
|
Z-INDEX
|
|
23972
23941
|
*/
|
|
23973
|
-
.
|
|
23942
|
+
._title_jdmij_337 {
|
|
23974
23943
|
background-color: var(--color-background);
|
|
23975
|
-
border: 1px solid var(--color-border);
|
|
23944
|
+
border-bottom: 1px solid var(--color-border-table);
|
|
23976
23945
|
padding: 6.5px 12px;
|
|
23977
23946
|
display: flex;
|
|
23978
23947
|
align-items: center;
|
|
@@ -23981,7 +23950,6 @@ html[data-theme='dark'] {
|
|
|
23981
23950
|
width: 100%;
|
|
23982
23951
|
border-top-left-radius: inherit;
|
|
23983
23952
|
border-top-right-radius: inherit;
|
|
23984
|
-
margin-bottom: -1px;
|
|
23985
23953
|
}
|
|
23986
23954
|
/*
|
|
23987
23955
|
This file has shared variables that are re-used in other LESS files/modules
|
|
@@ -24672,149 +24640,148 @@ html[data-theme='dark'] {
|
|
|
24672
24640
|
/*
|
|
24673
24641
|
Z-INDEX
|
|
24674
24642
|
*/
|
|
24675
|
-
.
|
|
24643
|
+
._inputInTable_14le1_337 {
|
|
24676
24644
|
background-color: transparent;
|
|
24677
24645
|
border-radius: inherit !important;
|
|
24678
24646
|
height: var(--size);
|
|
24679
24647
|
min-height: 100%;
|
|
24680
24648
|
}
|
|
24681
|
-
.
|
|
24649
|
+
._inputInTable_14le1_337:not(:hover) {
|
|
24682
24650
|
border-color: transparent;
|
|
24683
24651
|
}
|
|
24684
|
-
.
|
|
24652
|
+
._inputHover_14le1_346 {
|
|
24685
24653
|
position: relative;
|
|
24686
24654
|
border-color: var(--color-border-hover);
|
|
24687
24655
|
z-index: 2;
|
|
24688
24656
|
}
|
|
24689
|
-
.
|
|
24657
|
+
._inputFocus_14le1_351 {
|
|
24690
24658
|
position: relative;
|
|
24691
24659
|
outline: none !important;
|
|
24692
24660
|
border-color: var(--color-border-focus) !important;
|
|
24693
24661
|
box-shadow: var(--shadow-focus);
|
|
24694
24662
|
z-index: 3;
|
|
24695
24663
|
}
|
|
24696
|
-
.
|
|
24697
|
-
.
|
|
24664
|
+
._inputError_14le1_358,
|
|
24665
|
+
._inputWarning_14le1_359 {
|
|
24698
24666
|
position: relative;
|
|
24699
24667
|
}
|
|
24700
|
-
.
|
|
24668
|
+
._inputError_14le1_358 {
|
|
24701
24669
|
z-index: 2;
|
|
24702
24670
|
border-color: var(--color-border-error) !important;
|
|
24703
24671
|
color: var(--color-text-error) !important;
|
|
24704
24672
|
background-color: var(--color-background-error);
|
|
24705
24673
|
}
|
|
24706
|
-
.
|
|
24674
|
+
._inputError_14le1_358:hover {
|
|
24707
24675
|
border-color: var(--color-border-error-hover) !important;
|
|
24708
24676
|
}
|
|
24709
|
-
.
|
|
24677
|
+
._inputError_14le1_358:focus {
|
|
24710
24678
|
position: relative;
|
|
24711
24679
|
outline: none !important;
|
|
24712
24680
|
border-color: var(--color-border-focus) !important;
|
|
24713
24681
|
box-shadow: var(--shadow-focus);
|
|
24714
24682
|
z-index: 3;
|
|
24715
24683
|
}
|
|
24716
|
-
.
|
|
24684
|
+
._inputWarning_14le1_359 {
|
|
24717
24685
|
z-index: 1;
|
|
24718
24686
|
border-color: var(--color-border-warning) !important;
|
|
24719
24687
|
color: var(--color-text-warning) !important;
|
|
24720
24688
|
background-color: var(--color-background-warning);
|
|
24721
24689
|
}
|
|
24722
|
-
.
|
|
24690
|
+
._inputWarning_14le1_359:hover {
|
|
24723
24691
|
border-color: var(--color-border-warning-hover) !important;
|
|
24724
24692
|
}
|
|
24725
|
-
.
|
|
24693
|
+
._inputWarning_14le1_359:focus {
|
|
24726
24694
|
position: relative;
|
|
24727
24695
|
outline: none !important;
|
|
24728
24696
|
border-color: var(--color-border-focus) !important;
|
|
24729
24697
|
box-shadow: var(--shadow-focus);
|
|
24730
24698
|
z-index: 3;
|
|
24731
24699
|
}
|
|
24732
|
-
.
|
|
24700
|
+
._inputDisabled_14le1_394 {
|
|
24733
24701
|
pointer-events: none;
|
|
24734
24702
|
background-color: var(--color-background-disabled);
|
|
24735
24703
|
color: var(--color-text-muted);
|
|
24736
24704
|
}
|
|
24737
|
-
.
|
|
24705
|
+
._hideScrollbars_14le1_399 {
|
|
24738
24706
|
/* Firefox */
|
|
24739
24707
|
scrollbar-width: none;
|
|
24740
24708
|
/* IE 10+ */
|
|
24741
24709
|
-ms-overflow-style: none;
|
|
24742
24710
|
/* Chrome, Safari and Opera */
|
|
24743
24711
|
}
|
|
24744
|
-
.
|
|
24712
|
+
._hideScrollbars_14le1_399::-webkit-scrollbar {
|
|
24745
24713
|
display: none;
|
|
24746
24714
|
}
|
|
24747
|
-
.
|
|
24715
|
+
._scrollbars_14le1_409 {
|
|
24748
24716
|
overflow: overlay;
|
|
24749
24717
|
--scrollbar-color: #00000040;
|
|
24750
24718
|
}
|
|
24751
|
-
.
|
|
24719
|
+
._scrollbars_14le1_409::-webkit-scrollbar {
|
|
24752
24720
|
display: block;
|
|
24753
24721
|
width: 16px;
|
|
24754
24722
|
z-index: 2;
|
|
24755
24723
|
}
|
|
24756
|
-
.
|
|
24724
|
+
._scrollbars_14le1_409::-webkit-scrollbar-button {
|
|
24757
24725
|
display: none;
|
|
24758
24726
|
}
|
|
24759
|
-
.
|
|
24727
|
+
._scrollbars_14le1_409::-webkit-scrollbar-track {
|
|
24760
24728
|
background-color: #00000000;
|
|
24761
24729
|
}
|
|
24762
|
-
.
|
|
24730
|
+
._scrollbars_14le1_409::-webkit-scrollbar-track-piece {
|
|
24763
24731
|
background-color: #00000000;
|
|
24764
24732
|
}
|
|
24765
|
-
.
|
|
24733
|
+
._scrollbars_14le1_409::-webkit-scrollbar-thumb {
|
|
24766
24734
|
background-color: #00000000;
|
|
24767
24735
|
border: 5px solid transparent;
|
|
24768
24736
|
border-radius: 24px;
|
|
24769
24737
|
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
24770
24738
|
}
|
|
24771
|
-
.
|
|
24739
|
+
._scrollbars_14le1_409::-webkit-scrollbar-corner {
|
|
24772
24740
|
background: rgba(0, 0, 0, 0);
|
|
24773
24741
|
}
|
|
24774
|
-
.
|
|
24742
|
+
._cell_14le1_436 a {
|
|
24775
24743
|
cursor: pointer;
|
|
24776
24744
|
color: var(--color-text-primary) !important;
|
|
24777
24745
|
}
|
|
24778
|
-
.
|
|
24746
|
+
._cell_14le1_436 a:hover {
|
|
24779
24747
|
color: var(--color-text-primary-hover) !important;
|
|
24780
24748
|
}
|
|
24781
|
-
.
|
|
24749
|
+
._cell_14le1_436 a:active {
|
|
24782
24750
|
color: var(--color-text-primary-active) !important;
|
|
24783
24751
|
}
|
|
24784
|
-
.
|
|
24752
|
+
._cell_14le1_436 a._disabledLink_14le1_446 {
|
|
24785
24753
|
color: var(--color-text-faint) !important;
|
|
24786
24754
|
cursor: default !important;
|
|
24787
24755
|
}
|
|
24788
|
-
.
|
|
24789
|
-
|
|
24790
|
-
height: calc(100% + 2px);
|
|
24756
|
+
._inputWrapper_14le1_450 {
|
|
24757
|
+
height: 100%;
|
|
24791
24758
|
border-radius: inherit;
|
|
24792
24759
|
}
|
|
24793
|
-
.
|
|
24794
|
-
.
|
|
24795
|
-
.
|
|
24760
|
+
._inputWrapper_14le1_450 > span,
|
|
24761
|
+
._inputWrapper_14le1_450 > span > span,
|
|
24762
|
+
._inputWrapper_14le1_450 > span > span > div {
|
|
24796
24763
|
height: 100%;
|
|
24797
24764
|
border-radius: inherit;
|
|
24798
24765
|
}
|
|
24799
|
-
.
|
|
24800
|
-
.
|
|
24766
|
+
._inputWrapper_14le1_450 > div,
|
|
24767
|
+
._inputWrapper_14le1_450 > div > span {
|
|
24801
24768
|
height: 100%;
|
|
24802
24769
|
border-radius: inherit;
|
|
24803
24770
|
}
|
|
24804
|
-
.
|
|
24771
|
+
._breakWord_14le1_465 {
|
|
24805
24772
|
word-break: break-word;
|
|
24806
24773
|
}
|
|
24807
|
-
.
|
|
24774
|
+
._inputCell_14le1_468 {
|
|
24808
24775
|
padding: 0 !important;
|
|
24809
24776
|
}
|
|
24810
|
-
.
|
|
24777
|
+
._sliderCell_14le1_471 {
|
|
24811
24778
|
padding-top: 0 !important;
|
|
24812
24779
|
padding-bottom: 0 !important;
|
|
24813
24780
|
}
|
|
24814
|
-
.
|
|
24781
|
+
._staticCell_14le1_475 {
|
|
24815
24782
|
padding: 0 !important;
|
|
24816
24783
|
}
|
|
24817
|
-
.
|
|
24784
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478 {
|
|
24818
24785
|
min-height: 100%;
|
|
24819
24786
|
padding: 6.5px 12px;
|
|
24820
24787
|
line-height: 17px;
|
|
@@ -24823,84 +24790,84 @@ html[data-theme='dark'] {
|
|
|
24823
24790
|
display: flex;
|
|
24824
24791
|
align-items: center;
|
|
24825
24792
|
}
|
|
24826
|
-
tbody .
|
|
24793
|
+
tbody ._staticCell_14le1_475 ._staticCellContent_14le1_478 {
|
|
24827
24794
|
background-color: var(--color-background-disabled);
|
|
24828
24795
|
color: var(--color-text-muted);
|
|
24829
24796
|
}
|
|
24830
|
-
.
|
|
24831
|
-
.
|
|
24797
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._error_14le1_491,
|
|
24798
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._warning_14le1_492 {
|
|
24832
24799
|
border: 1px solid transparent;
|
|
24833
24800
|
}
|
|
24834
|
-
.
|
|
24801
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._error_14le1_491 {
|
|
24835
24802
|
position: relative;
|
|
24836
24803
|
z-index: 2;
|
|
24837
24804
|
border-color: var(--color-border-error) !important;
|
|
24838
24805
|
color: var(--color-text-error) !important;
|
|
24839
24806
|
background-color: var(--color-background-error);
|
|
24840
24807
|
}
|
|
24841
|
-
.
|
|
24808
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._error_14le1_491:hover {
|
|
24842
24809
|
border-color: var(--color-border-error-hover) !important;
|
|
24843
24810
|
}
|
|
24844
|
-
.
|
|
24811
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._error_14le1_491:focus {
|
|
24845
24812
|
position: relative;
|
|
24846
24813
|
outline: none !important;
|
|
24847
24814
|
border-color: var(--color-border-focus) !important;
|
|
24848
24815
|
box-shadow: var(--shadow-focus);
|
|
24849
24816
|
z-index: 3;
|
|
24850
24817
|
}
|
|
24851
|
-
.
|
|
24818
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._warning_14le1_492 {
|
|
24852
24819
|
position: relative;
|
|
24853
24820
|
z-index: 1;
|
|
24854
24821
|
border-color: var(--color-border-warning) !important;
|
|
24855
24822
|
color: var(--color-text-warning) !important;
|
|
24856
24823
|
background-color: var(--color-background-warning);
|
|
24857
24824
|
}
|
|
24858
|
-
.
|
|
24825
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._warning_14le1_492:hover {
|
|
24859
24826
|
border-color: var(--color-border-warning-hover) !important;
|
|
24860
24827
|
}
|
|
24861
|
-
.
|
|
24828
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._warning_14le1_492:focus {
|
|
24862
24829
|
position: relative;
|
|
24863
24830
|
outline: none !important;
|
|
24864
24831
|
border-color: var(--color-border-focus) !important;
|
|
24865
24832
|
box-shadow: var(--shadow-focus);
|
|
24866
24833
|
z-index: 3;
|
|
24867
24834
|
}
|
|
24868
|
-
.
|
|
24835
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._unit_14le1_529 {
|
|
24869
24836
|
font-weight: normal;
|
|
24870
24837
|
}
|
|
24871
|
-
.
|
|
24838
|
+
._sortingCell_14le1_532 ._staticCellContent_14le1_478 {
|
|
24872
24839
|
position: relative;
|
|
24873
24840
|
padding-right: 45px !important;
|
|
24874
24841
|
cursor: pointer !important;
|
|
24875
24842
|
}
|
|
24876
|
-
.
|
|
24843
|
+
._sortingCell_14le1_532 ._staticCellContent_14le1_478:hover {
|
|
24877
24844
|
background-color: rgba(0, 0, 0, 0.05) !important;
|
|
24878
24845
|
}
|
|
24879
|
-
.
|
|
24846
|
+
._sortingCell_14le1_532 ._sortingCellIcon_14le1_540 {
|
|
24880
24847
|
font-size: 20px;
|
|
24881
24848
|
position: absolute;
|
|
24882
24849
|
right: 8px;
|
|
24883
24850
|
top: 50%;
|
|
24884
24851
|
transform: translateY(-50%);
|
|
24885
24852
|
}
|
|
24886
|
-
.
|
|
24853
|
+
._icon_14le1_547 {
|
|
24887
24854
|
display: inline-flex;
|
|
24888
24855
|
margin-left: 8px;
|
|
24889
24856
|
}
|
|
24890
|
-
.
|
|
24857
|
+
._checkBoxCell_14le1_551 {
|
|
24891
24858
|
padding-block: 0 !important;
|
|
24892
24859
|
width: var(--size);
|
|
24893
24860
|
}
|
|
24894
|
-
.
|
|
24861
|
+
._iconCell_14le1_555 {
|
|
24895
24862
|
width: var(--size);
|
|
24896
24863
|
text-align: center;
|
|
24897
24864
|
padding: 0 !important;
|
|
24898
24865
|
}
|
|
24899
|
-
.
|
|
24866
|
+
._iconCell_14le1_555 ._iconWrapper_14le1_560 {
|
|
24900
24867
|
display: flex;
|
|
24901
24868
|
justify-content: center;
|
|
24902
24869
|
}
|
|
24903
|
-
.
|
|
24870
|
+
._actionsCell_14le1_564 {
|
|
24904
24871
|
width: var(--size-sm);
|
|
24905
24872
|
padding: 0 calc((var(--size) - var(--size-sm)) / 2) !important;
|
|
24906
24873
|
position: sticky;
|
|
@@ -24908,22 +24875,22 @@ tbody ._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479 {
|
|
|
24908
24875
|
background: inherit;
|
|
24909
24876
|
z-index: 4;
|
|
24910
24877
|
}
|
|
24911
|
-
.
|
|
24878
|
+
._rightAligned_14le1_572 {
|
|
24912
24879
|
text-align: right !important;
|
|
24913
24880
|
}
|
|
24914
|
-
.
|
|
24881
|
+
._rightAligned_14le1_572 ._staticCellContent_14le1_478 {
|
|
24915
24882
|
justify-content: flex-end;
|
|
24916
24883
|
}
|
|
24917
|
-
.
|
|
24884
|
+
._centerAligned_14le1_578 {
|
|
24918
24885
|
text-align: center !important;
|
|
24919
24886
|
}
|
|
24920
|
-
.
|
|
24887
|
+
._leftAligned_14le1_581 {
|
|
24921
24888
|
text-align: left !important;
|
|
24922
24889
|
}
|
|
24923
|
-
.
|
|
24890
|
+
._popover_14le1_584 {
|
|
24924
24891
|
padding: 6.5px 12px;
|
|
24925
24892
|
}
|
|
24926
|
-
.
|
|
24893
|
+
._disabledPointerEvents_14le1_587 {
|
|
24927
24894
|
pointer-events: none;
|
|
24928
24895
|
}
|
|
24929
24896
|
/*
|