@oliasoft-open-source/react-ui-library 3.11.0-beta-5 → 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 +125 -147
- package/dist/index.js +140 -148
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -23390,187 +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
|
-
|
|
23504
|
-
|
|
23505
|
-
|
|
23506
|
-
|
|
23507
|
-
|
|
23508
|
-
display: block;
|
|
23509
|
-
width: 16px;
|
|
23510
|
-
z-index: 2;
|
|
23511
|
-
}
|
|
23512
|
-
._scrollWrapper_15p4y_446::-webkit-scrollbar-button {
|
|
23513
|
-
display: none;
|
|
23514
|
-
}
|
|
23515
|
-
._scrollWrapper_15p4y_446::-webkit-scrollbar-track {
|
|
23516
|
-
background-color: #00000000;
|
|
23517
|
-
}
|
|
23518
|
-
._scrollWrapper_15p4y_446::-webkit-scrollbar-track-piece {
|
|
23519
|
-
background-color: #00000000;
|
|
23520
|
-
}
|
|
23521
|
-
._scrollWrapper_15p4y_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;
|
|
23526
|
-
}
|
|
23527
|
-
._scrollWrapper_15p4y_446::-webkit-scrollbar-corner {
|
|
23528
|
-
background: rgba(0, 0, 0, 0);
|
|
23502
|
+
._wrapper_1auke_446 {
|
|
23503
|
+
border-radius: inherit;
|
|
23504
|
+
max-height: 100%;
|
|
23505
|
+
display: flex;
|
|
23506
|
+
flex-direction: column;
|
|
23507
|
+
overflow: hidden;
|
|
23529
23508
|
}
|
|
23530
|
-
.
|
|
23509
|
+
._wrapper_1auke_446._bordered_1auke_453 {
|
|
23531
23510
|
border-radius: 4px;
|
|
23511
|
+
border: 1px solid var(--color-border-table);
|
|
23532
23512
|
}
|
|
23533
|
-
.
|
|
23534
|
-
|
|
23513
|
+
._scroll_1auke_409 {
|
|
23514
|
+
overflow-y: auto;
|
|
23515
|
+
border-radius: inherit;
|
|
23516
|
+
flex: 1;
|
|
23517
|
+
min-height: 0;
|
|
23535
23518
|
}
|
|
23536
|
-
.
|
|
23519
|
+
._scroll_1auke_409:not(:first-child) {
|
|
23520
|
+
border-top-left-radius: 0;
|
|
23521
|
+
border-top-right-radius: 0;
|
|
23522
|
+
}
|
|
23523
|
+
._table_1auke_467 {
|
|
23537
23524
|
background: var(--color-background-raised);
|
|
23538
23525
|
color: var(--color-text);
|
|
23539
23526
|
border-collapse: separate;
|
|
23540
23527
|
border-spacing: 0;
|
|
23541
|
-
border-radius:
|
|
23528
|
+
border-radius: inherit;
|
|
23542
23529
|
width: 100%;
|
|
23543
23530
|
}
|
|
23544
|
-
.
|
|
23545
|
-
border-top-left-radius: 0;
|
|
23546
|
-
border-top-right-radius: 0;
|
|
23547
|
-
}
|
|
23548
|
-
._table_15p4y_480 > :first-child {
|
|
23531
|
+
._table_1auke_467 > :first-child {
|
|
23549
23532
|
border-top-left-radius: inherit;
|
|
23550
23533
|
border-top-right-radius: inherit;
|
|
23551
23534
|
}
|
|
23552
|
-
.
|
|
23535
|
+
._table_1auke_467 > :first-child > :first-child {
|
|
23553
23536
|
border-top-left-radius: inherit;
|
|
23554
23537
|
border-top-right-radius: inherit;
|
|
23555
23538
|
}
|
|
23556
|
-
.
|
|
23539
|
+
._table_1auke_467 > :first-child > :first-child > :first-child {
|
|
23557
23540
|
border-top-left-radius: inherit;
|
|
23558
23541
|
}
|
|
23559
|
-
.
|
|
23542
|
+
._table_1auke_467 > :first-child > :first-child > :last-child {
|
|
23560
23543
|
border-top-right-radius: inherit;
|
|
23561
23544
|
}
|
|
23562
|
-
.
|
|
23545
|
+
._table_1auke_467 > :last-child {
|
|
23563
23546
|
border-bottom-left-radius: inherit;
|
|
23564
23547
|
border-bottom-right-radius: inherit;
|
|
23565
23548
|
}
|
|
23566
|
-
.
|
|
23549
|
+
._table_1auke_467 > :last-child > :last-child {
|
|
23567
23550
|
border-bottom-left-radius: inherit;
|
|
23568
23551
|
border-bottom-right-radius: inherit;
|
|
23569
23552
|
}
|
|
23570
|
-
.
|
|
23553
|
+
._table_1auke_467 > :last-child > :last-child > :first-child {
|
|
23571
23554
|
border-bottom-left-radius: inherit;
|
|
23572
23555
|
}
|
|
23573
|
-
.
|
|
23556
|
+
._table_1auke_467 > :last-child > :last-child > :last-child {
|
|
23574
23557
|
border-bottom-right-radius: inherit;
|
|
23575
23558
|
}
|
|
23576
23559
|
th,
|
|
@@ -23581,20 +23564,17 @@ td {
|
|
|
23581
23564
|
background: inherit;
|
|
23582
23565
|
border-color: var(--color-border-table);
|
|
23583
23566
|
border-style: solid;
|
|
23584
|
-
border-
|
|
23585
|
-
border-left-width: 1px;
|
|
23586
|
-
border-right-width: 0;
|
|
23587
|
-
border-bottom-width: 1px;
|
|
23567
|
+
border-width: 0;
|
|
23588
23568
|
}
|
|
23589
|
-
|
|
23590
|
-
|
|
23591
|
-
border-
|
|
23569
|
+
th:not(:first-child),
|
|
23570
|
+
td:not(:first-child) {
|
|
23571
|
+
border-left-width: 1px;
|
|
23592
23572
|
}
|
|
23593
|
-
|
|
23594
|
-
|
|
23595
|
-
|
|
23596
|
-
|
|
23597
|
-
border-
|
|
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 {
|
|
23577
|
+
border-bottom-width: 1px;
|
|
23598
23578
|
}
|
|
23599
23579
|
@-moz-document url-prefix() {
|
|
23600
23580
|
tr {
|
|
@@ -23608,8 +23588,8 @@ tbody:first-child > tr:first-child td {
|
|
|
23608
23588
|
thead {
|
|
23609
23589
|
position: sticky;
|
|
23610
23590
|
top: 0;
|
|
23611
|
-
z-index: 4;
|
|
23612
23591
|
overflow: hidden;
|
|
23592
|
+
z-index: 5;
|
|
23613
23593
|
}
|
|
23614
23594
|
thead tr {
|
|
23615
23595
|
background-color: var(--color-background-table-header);
|
|
@@ -23620,7 +23600,7 @@ tbody {
|
|
|
23620
23600
|
tbody tr {
|
|
23621
23601
|
background-color: var(--color-background-raised);
|
|
23622
23602
|
}
|
|
23623
|
-
.
|
|
23603
|
+
._striped_1auke_547 tbody tr:nth-child(even) {
|
|
23624
23604
|
background-color: var(--color-background-table-row-tinted);
|
|
23625
23605
|
}
|
|
23626
23606
|
/*
|
|
@@ -23959,9 +23939,9 @@ html[data-theme='dark'] {
|
|
|
23959
23939
|
/*
|
|
23960
23940
|
Z-INDEX
|
|
23961
23941
|
*/
|
|
23962
|
-
.
|
|
23942
|
+
._title_jdmij_337 {
|
|
23963
23943
|
background-color: var(--color-background);
|
|
23964
|
-
border: 1px solid var(--color-border);
|
|
23944
|
+
border-bottom: 1px solid var(--color-border-table);
|
|
23965
23945
|
padding: 6.5px 12px;
|
|
23966
23946
|
display: flex;
|
|
23967
23947
|
align-items: center;
|
|
@@ -23970,7 +23950,6 @@ html[data-theme='dark'] {
|
|
|
23970
23950
|
width: 100%;
|
|
23971
23951
|
border-top-left-radius: inherit;
|
|
23972
23952
|
border-top-right-radius: inherit;
|
|
23973
|
-
margin-bottom: -1px;
|
|
23974
23953
|
}
|
|
23975
23954
|
/*
|
|
23976
23955
|
This file has shared variables that are re-used in other LESS files/modules
|
|
@@ -24661,149 +24640,148 @@ html[data-theme='dark'] {
|
|
|
24661
24640
|
/*
|
|
24662
24641
|
Z-INDEX
|
|
24663
24642
|
*/
|
|
24664
|
-
.
|
|
24643
|
+
._inputInTable_14le1_337 {
|
|
24665
24644
|
background-color: transparent;
|
|
24666
24645
|
border-radius: inherit !important;
|
|
24667
24646
|
height: var(--size);
|
|
24668
24647
|
min-height: 100%;
|
|
24669
24648
|
}
|
|
24670
|
-
.
|
|
24649
|
+
._inputInTable_14le1_337:not(:hover) {
|
|
24671
24650
|
border-color: transparent;
|
|
24672
24651
|
}
|
|
24673
|
-
.
|
|
24652
|
+
._inputHover_14le1_346 {
|
|
24674
24653
|
position: relative;
|
|
24675
24654
|
border-color: var(--color-border-hover);
|
|
24676
24655
|
z-index: 2;
|
|
24677
24656
|
}
|
|
24678
|
-
.
|
|
24657
|
+
._inputFocus_14le1_351 {
|
|
24679
24658
|
position: relative;
|
|
24680
24659
|
outline: none !important;
|
|
24681
24660
|
border-color: var(--color-border-focus) !important;
|
|
24682
24661
|
box-shadow: var(--shadow-focus);
|
|
24683
24662
|
z-index: 3;
|
|
24684
24663
|
}
|
|
24685
|
-
.
|
|
24686
|
-
.
|
|
24664
|
+
._inputError_14le1_358,
|
|
24665
|
+
._inputWarning_14le1_359 {
|
|
24687
24666
|
position: relative;
|
|
24688
24667
|
}
|
|
24689
|
-
.
|
|
24668
|
+
._inputError_14le1_358 {
|
|
24690
24669
|
z-index: 2;
|
|
24691
24670
|
border-color: var(--color-border-error) !important;
|
|
24692
24671
|
color: var(--color-text-error) !important;
|
|
24693
24672
|
background-color: var(--color-background-error);
|
|
24694
24673
|
}
|
|
24695
|
-
.
|
|
24674
|
+
._inputError_14le1_358:hover {
|
|
24696
24675
|
border-color: var(--color-border-error-hover) !important;
|
|
24697
24676
|
}
|
|
24698
|
-
.
|
|
24677
|
+
._inputError_14le1_358:focus {
|
|
24699
24678
|
position: relative;
|
|
24700
24679
|
outline: none !important;
|
|
24701
24680
|
border-color: var(--color-border-focus) !important;
|
|
24702
24681
|
box-shadow: var(--shadow-focus);
|
|
24703
24682
|
z-index: 3;
|
|
24704
24683
|
}
|
|
24705
|
-
.
|
|
24684
|
+
._inputWarning_14le1_359 {
|
|
24706
24685
|
z-index: 1;
|
|
24707
24686
|
border-color: var(--color-border-warning) !important;
|
|
24708
24687
|
color: var(--color-text-warning) !important;
|
|
24709
24688
|
background-color: var(--color-background-warning);
|
|
24710
24689
|
}
|
|
24711
|
-
.
|
|
24690
|
+
._inputWarning_14le1_359:hover {
|
|
24712
24691
|
border-color: var(--color-border-warning-hover) !important;
|
|
24713
24692
|
}
|
|
24714
|
-
.
|
|
24693
|
+
._inputWarning_14le1_359:focus {
|
|
24715
24694
|
position: relative;
|
|
24716
24695
|
outline: none !important;
|
|
24717
24696
|
border-color: var(--color-border-focus) !important;
|
|
24718
24697
|
box-shadow: var(--shadow-focus);
|
|
24719
24698
|
z-index: 3;
|
|
24720
24699
|
}
|
|
24721
|
-
.
|
|
24700
|
+
._inputDisabled_14le1_394 {
|
|
24722
24701
|
pointer-events: none;
|
|
24723
24702
|
background-color: var(--color-background-disabled);
|
|
24724
24703
|
color: var(--color-text-muted);
|
|
24725
24704
|
}
|
|
24726
|
-
.
|
|
24705
|
+
._hideScrollbars_14le1_399 {
|
|
24727
24706
|
/* Firefox */
|
|
24728
24707
|
scrollbar-width: none;
|
|
24729
24708
|
/* IE 10+ */
|
|
24730
24709
|
-ms-overflow-style: none;
|
|
24731
24710
|
/* Chrome, Safari and Opera */
|
|
24732
24711
|
}
|
|
24733
|
-
.
|
|
24712
|
+
._hideScrollbars_14le1_399::-webkit-scrollbar {
|
|
24734
24713
|
display: none;
|
|
24735
24714
|
}
|
|
24736
|
-
.
|
|
24715
|
+
._scrollbars_14le1_409 {
|
|
24737
24716
|
overflow: overlay;
|
|
24738
24717
|
--scrollbar-color: #00000040;
|
|
24739
24718
|
}
|
|
24740
|
-
.
|
|
24719
|
+
._scrollbars_14le1_409::-webkit-scrollbar {
|
|
24741
24720
|
display: block;
|
|
24742
24721
|
width: 16px;
|
|
24743
24722
|
z-index: 2;
|
|
24744
24723
|
}
|
|
24745
|
-
.
|
|
24724
|
+
._scrollbars_14le1_409::-webkit-scrollbar-button {
|
|
24746
24725
|
display: none;
|
|
24747
24726
|
}
|
|
24748
|
-
.
|
|
24727
|
+
._scrollbars_14le1_409::-webkit-scrollbar-track {
|
|
24749
24728
|
background-color: #00000000;
|
|
24750
24729
|
}
|
|
24751
|
-
.
|
|
24730
|
+
._scrollbars_14le1_409::-webkit-scrollbar-track-piece {
|
|
24752
24731
|
background-color: #00000000;
|
|
24753
24732
|
}
|
|
24754
|
-
.
|
|
24733
|
+
._scrollbars_14le1_409::-webkit-scrollbar-thumb {
|
|
24755
24734
|
background-color: #00000000;
|
|
24756
24735
|
border: 5px solid transparent;
|
|
24757
24736
|
border-radius: 24px;
|
|
24758
24737
|
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
24759
24738
|
}
|
|
24760
|
-
.
|
|
24739
|
+
._scrollbars_14le1_409::-webkit-scrollbar-corner {
|
|
24761
24740
|
background: rgba(0, 0, 0, 0);
|
|
24762
24741
|
}
|
|
24763
|
-
.
|
|
24742
|
+
._cell_14le1_436 a {
|
|
24764
24743
|
cursor: pointer;
|
|
24765
24744
|
color: var(--color-text-primary) !important;
|
|
24766
24745
|
}
|
|
24767
|
-
.
|
|
24746
|
+
._cell_14le1_436 a:hover {
|
|
24768
24747
|
color: var(--color-text-primary-hover) !important;
|
|
24769
24748
|
}
|
|
24770
|
-
.
|
|
24749
|
+
._cell_14le1_436 a:active {
|
|
24771
24750
|
color: var(--color-text-primary-active) !important;
|
|
24772
24751
|
}
|
|
24773
|
-
.
|
|
24752
|
+
._cell_14le1_436 a._disabledLink_14le1_446 {
|
|
24774
24753
|
color: var(--color-text-faint) !important;
|
|
24775
24754
|
cursor: default !important;
|
|
24776
24755
|
}
|
|
24777
|
-
.
|
|
24778
|
-
|
|
24779
|
-
height: calc(100% + 2px);
|
|
24756
|
+
._inputWrapper_14le1_450 {
|
|
24757
|
+
height: 100%;
|
|
24780
24758
|
border-radius: inherit;
|
|
24781
24759
|
}
|
|
24782
|
-
.
|
|
24783
|
-
.
|
|
24784
|
-
.
|
|
24760
|
+
._inputWrapper_14le1_450 > span,
|
|
24761
|
+
._inputWrapper_14le1_450 > span > span,
|
|
24762
|
+
._inputWrapper_14le1_450 > span > span > div {
|
|
24785
24763
|
height: 100%;
|
|
24786
24764
|
border-radius: inherit;
|
|
24787
24765
|
}
|
|
24788
|
-
.
|
|
24789
|
-
.
|
|
24766
|
+
._inputWrapper_14le1_450 > div,
|
|
24767
|
+
._inputWrapper_14le1_450 > div > span {
|
|
24790
24768
|
height: 100%;
|
|
24791
24769
|
border-radius: inherit;
|
|
24792
24770
|
}
|
|
24793
|
-
.
|
|
24771
|
+
._breakWord_14le1_465 {
|
|
24794
24772
|
word-break: break-word;
|
|
24795
24773
|
}
|
|
24796
|
-
.
|
|
24774
|
+
._inputCell_14le1_468 {
|
|
24797
24775
|
padding: 0 !important;
|
|
24798
24776
|
}
|
|
24799
|
-
.
|
|
24777
|
+
._sliderCell_14le1_471 {
|
|
24800
24778
|
padding-top: 0 !important;
|
|
24801
24779
|
padding-bottom: 0 !important;
|
|
24802
24780
|
}
|
|
24803
|
-
.
|
|
24781
|
+
._staticCell_14le1_475 {
|
|
24804
24782
|
padding: 0 !important;
|
|
24805
24783
|
}
|
|
24806
|
-
.
|
|
24784
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478 {
|
|
24807
24785
|
min-height: 100%;
|
|
24808
24786
|
padding: 6.5px 12px;
|
|
24809
24787
|
line-height: 17px;
|
|
@@ -24812,84 +24790,84 @@ html[data-theme='dark'] {
|
|
|
24812
24790
|
display: flex;
|
|
24813
24791
|
align-items: center;
|
|
24814
24792
|
}
|
|
24815
|
-
tbody .
|
|
24793
|
+
tbody ._staticCell_14le1_475 ._staticCellContent_14le1_478 {
|
|
24816
24794
|
background-color: var(--color-background-disabled);
|
|
24817
24795
|
color: var(--color-text-muted);
|
|
24818
24796
|
}
|
|
24819
|
-
.
|
|
24820
|
-
.
|
|
24797
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._error_14le1_491,
|
|
24798
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._warning_14le1_492 {
|
|
24821
24799
|
border: 1px solid transparent;
|
|
24822
24800
|
}
|
|
24823
|
-
.
|
|
24801
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._error_14le1_491 {
|
|
24824
24802
|
position: relative;
|
|
24825
24803
|
z-index: 2;
|
|
24826
24804
|
border-color: var(--color-border-error) !important;
|
|
24827
24805
|
color: var(--color-text-error) !important;
|
|
24828
24806
|
background-color: var(--color-background-error);
|
|
24829
24807
|
}
|
|
24830
|
-
.
|
|
24808
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._error_14le1_491:hover {
|
|
24831
24809
|
border-color: var(--color-border-error-hover) !important;
|
|
24832
24810
|
}
|
|
24833
|
-
.
|
|
24811
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._error_14le1_491:focus {
|
|
24834
24812
|
position: relative;
|
|
24835
24813
|
outline: none !important;
|
|
24836
24814
|
border-color: var(--color-border-focus) !important;
|
|
24837
24815
|
box-shadow: var(--shadow-focus);
|
|
24838
24816
|
z-index: 3;
|
|
24839
24817
|
}
|
|
24840
|
-
.
|
|
24818
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._warning_14le1_492 {
|
|
24841
24819
|
position: relative;
|
|
24842
24820
|
z-index: 1;
|
|
24843
24821
|
border-color: var(--color-border-warning) !important;
|
|
24844
24822
|
color: var(--color-text-warning) !important;
|
|
24845
24823
|
background-color: var(--color-background-warning);
|
|
24846
24824
|
}
|
|
24847
|
-
.
|
|
24825
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._warning_14le1_492:hover {
|
|
24848
24826
|
border-color: var(--color-border-warning-hover) !important;
|
|
24849
24827
|
}
|
|
24850
|
-
.
|
|
24828
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._warning_14le1_492:focus {
|
|
24851
24829
|
position: relative;
|
|
24852
24830
|
outline: none !important;
|
|
24853
24831
|
border-color: var(--color-border-focus) !important;
|
|
24854
24832
|
box-shadow: var(--shadow-focus);
|
|
24855
24833
|
z-index: 3;
|
|
24856
24834
|
}
|
|
24857
|
-
.
|
|
24835
|
+
._staticCell_14le1_475 ._staticCellContent_14le1_478._unit_14le1_529 {
|
|
24858
24836
|
font-weight: normal;
|
|
24859
24837
|
}
|
|
24860
|
-
.
|
|
24838
|
+
._sortingCell_14le1_532 ._staticCellContent_14le1_478 {
|
|
24861
24839
|
position: relative;
|
|
24862
24840
|
padding-right: 45px !important;
|
|
24863
24841
|
cursor: pointer !important;
|
|
24864
24842
|
}
|
|
24865
|
-
.
|
|
24843
|
+
._sortingCell_14le1_532 ._staticCellContent_14le1_478:hover {
|
|
24866
24844
|
background-color: rgba(0, 0, 0, 0.05) !important;
|
|
24867
24845
|
}
|
|
24868
|
-
.
|
|
24846
|
+
._sortingCell_14le1_532 ._sortingCellIcon_14le1_540 {
|
|
24869
24847
|
font-size: 20px;
|
|
24870
24848
|
position: absolute;
|
|
24871
24849
|
right: 8px;
|
|
24872
24850
|
top: 50%;
|
|
24873
24851
|
transform: translateY(-50%);
|
|
24874
24852
|
}
|
|
24875
|
-
.
|
|
24853
|
+
._icon_14le1_547 {
|
|
24876
24854
|
display: inline-flex;
|
|
24877
24855
|
margin-left: 8px;
|
|
24878
24856
|
}
|
|
24879
|
-
.
|
|
24857
|
+
._checkBoxCell_14le1_551 {
|
|
24880
24858
|
padding-block: 0 !important;
|
|
24881
24859
|
width: var(--size);
|
|
24882
24860
|
}
|
|
24883
|
-
.
|
|
24861
|
+
._iconCell_14le1_555 {
|
|
24884
24862
|
width: var(--size);
|
|
24885
24863
|
text-align: center;
|
|
24886
24864
|
padding: 0 !important;
|
|
24887
24865
|
}
|
|
24888
|
-
.
|
|
24866
|
+
._iconCell_14le1_555 ._iconWrapper_14le1_560 {
|
|
24889
24867
|
display: flex;
|
|
24890
24868
|
justify-content: center;
|
|
24891
24869
|
}
|
|
24892
|
-
.
|
|
24870
|
+
._actionsCell_14le1_564 {
|
|
24893
24871
|
width: var(--size-sm);
|
|
24894
24872
|
padding: 0 calc((var(--size) - var(--size-sm)) / 2) !important;
|
|
24895
24873
|
position: sticky;
|
|
@@ -24897,22 +24875,22 @@ tbody ._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479 {
|
|
|
24897
24875
|
background: inherit;
|
|
24898
24876
|
z-index: 4;
|
|
24899
24877
|
}
|
|
24900
|
-
.
|
|
24878
|
+
._rightAligned_14le1_572 {
|
|
24901
24879
|
text-align: right !important;
|
|
24902
24880
|
}
|
|
24903
|
-
.
|
|
24881
|
+
._rightAligned_14le1_572 ._staticCellContent_14le1_478 {
|
|
24904
24882
|
justify-content: flex-end;
|
|
24905
24883
|
}
|
|
24906
|
-
.
|
|
24884
|
+
._centerAligned_14le1_578 {
|
|
24907
24885
|
text-align: center !important;
|
|
24908
24886
|
}
|
|
24909
|
-
.
|
|
24887
|
+
._leftAligned_14le1_581 {
|
|
24910
24888
|
text-align: left !important;
|
|
24911
24889
|
}
|
|
24912
|
-
.
|
|
24890
|
+
._popover_14le1_584 {
|
|
24913
24891
|
padding: 6.5px 12px;
|
|
24914
24892
|
}
|
|
24915
|
-
.
|
|
24893
|
+
._disabledPointerEvents_14le1_587 {
|
|
24916
24894
|
pointer-events: none;
|
|
24917
24895
|
}
|
|
24918
24896
|
/*
|