@oliasoft-open-source/react-ui-library 3.11.0-beta-4 → 3.11.0-beta-5
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 +393 -44
- package/dist/index.js +116 -116
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -23390,103 +23390,103 @@ html[data-theme='dark'] {
|
|
|
23390
23390
|
/*
|
|
23391
23391
|
Z-INDEX
|
|
23392
23392
|
*/
|
|
23393
|
-
.
|
|
23393
|
+
._inputInTable_15p4y_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_15p4y_337:not(:hover) {
|
|
23400
23400
|
border-color: transparent;
|
|
23401
23401
|
}
|
|
23402
|
-
.
|
|
23402
|
+
._inputHover_15p4y_346 {
|
|
23403
23403
|
position: relative;
|
|
23404
23404
|
border-color: var(--color-border-hover);
|
|
23405
23405
|
z-index: 2;
|
|
23406
23406
|
}
|
|
23407
|
-
.
|
|
23407
|
+
._inputFocus_15p4y_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_15p4y_358,
|
|
23415
|
+
._inputWarning_15p4y_359 {
|
|
23416
23416
|
position: relative;
|
|
23417
23417
|
}
|
|
23418
|
-
.
|
|
23418
|
+
._inputError_15p4y_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_15p4y_358:hover {
|
|
23425
23425
|
border-color: var(--color-border-error-hover) !important;
|
|
23426
23426
|
}
|
|
23427
|
-
.
|
|
23427
|
+
._inputError_15p4y_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_15p4y_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_15p4y_359:hover {
|
|
23441
23441
|
border-color: var(--color-border-warning-hover) !important;
|
|
23442
23442
|
}
|
|
23443
|
-
.
|
|
23443
|
+
._inputWarning_15p4y_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_15p4y_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_15p4y_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_15p4y_399::-webkit-scrollbar {
|
|
23463
23463
|
display: none;
|
|
23464
23464
|
}
|
|
23465
|
-
.
|
|
23465
|
+
._scrollbars_15p4y_409 {
|
|
23466
23466
|
overflow: overlay;
|
|
23467
23467
|
--scrollbar-color: #00000040;
|
|
23468
23468
|
}
|
|
23469
|
-
.
|
|
23469
|
+
._scrollbars_15p4y_409::-webkit-scrollbar {
|
|
23470
23470
|
display: block;
|
|
23471
23471
|
width: 16px;
|
|
23472
23472
|
z-index: 2;
|
|
23473
23473
|
}
|
|
23474
|
-
.
|
|
23474
|
+
._scrollbars_15p4y_409::-webkit-scrollbar-button {
|
|
23475
23475
|
display: none;
|
|
23476
23476
|
}
|
|
23477
|
-
.
|
|
23477
|
+
._scrollbars_15p4y_409::-webkit-scrollbar-track {
|
|
23478
23478
|
background-color: #00000000;
|
|
23479
23479
|
}
|
|
23480
|
-
.
|
|
23480
|
+
._scrollbars_15p4y_409::-webkit-scrollbar-track-piece {
|
|
23481
23481
|
background-color: #00000000;
|
|
23482
23482
|
}
|
|
23483
|
-
.
|
|
23483
|
+
._scrollbars_15p4y_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_15p4y_409::-webkit-scrollbar-corner {
|
|
23490
23490
|
background: rgba(0, 0, 0, 0);
|
|
23491
23491
|
}
|
|
23492
23492
|
:root {
|
|
@@ -23499,72 +23499,78 @@ html[data-theme='dark'] {
|
|
|
23499
23499
|
--color-background-table-row-tinted: var(--color-neutral-850);
|
|
23500
23500
|
--color-border-table: black;
|
|
23501
23501
|
}
|
|
23502
|
-
.
|
|
23502
|
+
._scrollWrapper_15p4y_446 {
|
|
23503
23503
|
overflow: overlay;
|
|
23504
23504
|
--scrollbar-color: #00000040;
|
|
23505
23505
|
padding-left: 1px;
|
|
23506
23506
|
}
|
|
23507
|
-
.
|
|
23507
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar {
|
|
23508
23508
|
display: block;
|
|
23509
23509
|
width: 16px;
|
|
23510
23510
|
z-index: 2;
|
|
23511
23511
|
}
|
|
23512
|
-
.
|
|
23512
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar-button {
|
|
23513
23513
|
display: none;
|
|
23514
23514
|
}
|
|
23515
|
-
.
|
|
23515
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar-track {
|
|
23516
23516
|
background-color: #00000000;
|
|
23517
23517
|
}
|
|
23518
|
-
.
|
|
23518
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar-track-piece {
|
|
23519
23519
|
background-color: #00000000;
|
|
23520
23520
|
}
|
|
23521
|
-
.
|
|
23521
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar-thumb {
|
|
23522
23522
|
background-color: #00000000;
|
|
23523
23523
|
border: 5px solid transparent;
|
|
23524
23524
|
border-radius: 24px;
|
|
23525
23525
|
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
23526
23526
|
}
|
|
23527
|
-
.
|
|
23527
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar-corner {
|
|
23528
23528
|
background: rgba(0, 0, 0, 0);
|
|
23529
23529
|
}
|
|
23530
|
-
.
|
|
23530
|
+
._scrollWrapper_15p4y_446._bordered_15p4y_474 {
|
|
23531
23531
|
border-radius: 4px;
|
|
23532
23532
|
}
|
|
23533
|
-
.
|
|
23533
|
+
._scrollWrapper_15p4y_446 > * {
|
|
23534
|
+
margin-left: -1px;
|
|
23535
|
+
}
|
|
23536
|
+
._table_15p4y_480 {
|
|
23534
23537
|
background: var(--color-background-raised);
|
|
23535
23538
|
color: var(--color-text);
|
|
23536
23539
|
border-collapse: separate;
|
|
23537
23540
|
border-spacing: 0;
|
|
23538
23541
|
border-radius: 4px;
|
|
23539
23542
|
width: 100%;
|
|
23540
|
-
margin-left: -1px;
|
|
23541
23543
|
}
|
|
23542
|
-
.
|
|
23544
|
+
._table_15p4y_480:not(:first-child) {
|
|
23545
|
+
border-top-left-radius: 0;
|
|
23546
|
+
border-top-right-radius: 0;
|
|
23547
|
+
}
|
|
23548
|
+
._table_15p4y_480 > :first-child {
|
|
23543
23549
|
border-top-left-radius: inherit;
|
|
23544
23550
|
border-top-right-radius: inherit;
|
|
23545
23551
|
}
|
|
23546
|
-
.
|
|
23552
|
+
._table_15p4y_480 > :first-child > :first-child {
|
|
23547
23553
|
border-top-left-radius: inherit;
|
|
23548
23554
|
border-top-right-radius: inherit;
|
|
23549
23555
|
}
|
|
23550
|
-
.
|
|
23556
|
+
._table_15p4y_480 > :first-child > :first-child > :first-child {
|
|
23551
23557
|
border-top-left-radius: inherit;
|
|
23552
23558
|
}
|
|
23553
|
-
.
|
|
23559
|
+
._table_15p4y_480 > :first-child > :first-child > :last-child {
|
|
23554
23560
|
border-top-right-radius: inherit;
|
|
23555
23561
|
}
|
|
23556
|
-
.
|
|
23562
|
+
._table_15p4y_480 > :last-child {
|
|
23557
23563
|
border-bottom-left-radius: inherit;
|
|
23558
23564
|
border-bottom-right-radius: inherit;
|
|
23559
23565
|
}
|
|
23560
|
-
.
|
|
23566
|
+
._table_15p4y_480 > :last-child > :last-child {
|
|
23561
23567
|
border-bottom-left-radius: inherit;
|
|
23562
23568
|
border-bottom-right-radius: inherit;
|
|
23563
23569
|
}
|
|
23564
|
-
.
|
|
23570
|
+
._table_15p4y_480 > :last-child > :last-child > :first-child {
|
|
23565
23571
|
border-bottom-left-radius: inherit;
|
|
23566
23572
|
}
|
|
23567
|
-
.
|
|
23573
|
+
._table_15p4y_480 > :last-child > :last-child > :last-child {
|
|
23568
23574
|
border-bottom-right-radius: inherit;
|
|
23569
23575
|
}
|
|
23570
23576
|
th,
|
|
@@ -23580,8 +23586,8 @@ td {
|
|
|
23580
23586
|
border-right-width: 0;
|
|
23581
23587
|
border-bottom-width: 1px;
|
|
23582
23588
|
}
|
|
23583
|
-
.
|
|
23584
|
-
.
|
|
23589
|
+
._bordered_15p4y_474 th:last-child,
|
|
23590
|
+
._bordered_15p4y_474 td:last-child {
|
|
23585
23591
|
border-right-width: 1px;
|
|
23586
23592
|
}
|
|
23587
23593
|
thead:first-child > tr:first-child th,
|
|
@@ -23614,14 +23620,357 @@ tbody {
|
|
|
23614
23620
|
tbody tr {
|
|
23615
23621
|
background-color: var(--color-background-raised);
|
|
23616
23622
|
}
|
|
23617
|
-
.
|
|
23623
|
+
._striped_15p4y_567 tbody tr:nth-child(even) {
|
|
23618
23624
|
background-color: var(--color-background-table-row-tinted);
|
|
23619
23625
|
}
|
|
23620
|
-
|
|
23626
|
+
/*
|
|
23627
|
+
This file has shared variables that are re-used in other LESS files/modules
|
|
23628
|
+
Only use simple variables in this file
|
|
23629
|
+
*/
|
|
23630
|
+
:root {
|
|
23631
|
+
--color-primary-0: hsl(0, 0%, 100%);
|
|
23632
|
+
--color-primary-50: hsl(18.24742268, 82.90598291%, 97.5%);
|
|
23633
|
+
--color-primary-100: hsl(18.24742268, 82.90598291%, 92.5%);
|
|
23634
|
+
--color-primary-150: hsl(18.24742268, 82.90598291%, 87.5%);
|
|
23635
|
+
--color-primary-200: hsl(18.24742268, 82.90598291%, 82.5%);
|
|
23636
|
+
--color-primary-250: hsl(18.24742268, 82.90598291%, 77.5%);
|
|
23637
|
+
--color-primary-300: hsl(18.24742268, 82.90598291%, 72.5%);
|
|
23638
|
+
--color-primary-350: hsl(18.24742268, 82.90598291%, 67.5%);
|
|
23639
|
+
--color-primary-400: hsl(18.24742268, 82.90598291%, 62.5%);
|
|
23640
|
+
--color-primary-450: hsl(18.24742268, 82.90598291%, 57.5%);
|
|
23641
|
+
--color-primary-500: hsl(18.24742268, 82.90598291%, 52.5%);
|
|
23642
|
+
--color-primary-550: hsl(18.24742268, 82.90598291%, 47.5%);
|
|
23643
|
+
--color-primary-600: hsl(18.24742268, 82.90598291%, 42.5%);
|
|
23644
|
+
--color-primary-650: hsl(18.24742268, 82.90598291%, 37.5%);
|
|
23645
|
+
--color-primary-700: hsl(18.24742268, 82.90598291%, 32.5%);
|
|
23646
|
+
--color-primary-750: hsl(18.24742268, 82.90598291%, 27.5%);
|
|
23647
|
+
--color-primary-800: hsl(18.24742268, 82.90598291%, 22.5%);
|
|
23648
|
+
--color-primary-850: hsl(18.24742268, 82.90598291%, 17.5%);
|
|
23649
|
+
--color-primary-900: hsl(18.24742268, 82.90598291%, 12.5%);
|
|
23650
|
+
--color-primary-950: hsl(18.24742268, 82.90598291%, 7.5%);
|
|
23651
|
+
--color-primary-1000: hsl(18.24742268, 82.90598291%, 2.5%);
|
|
23652
|
+
--color-error-0: hsl(180, 100%, 100%);
|
|
23653
|
+
--color-error-50: hsl(0, 71.29186603%, 97.5%);
|
|
23654
|
+
--color-error-100: hsl(0, 71.29186603%, 92.5%);
|
|
23655
|
+
--color-error-150: hsl(0, 71.29186603%, 87.5%);
|
|
23656
|
+
--color-error-200: hsl(0, 71.29186603%, 82.5%);
|
|
23657
|
+
--color-error-250: hsl(0, 71.29186603%, 77.5%);
|
|
23658
|
+
--color-error-300: hsl(0, 71.29186603%, 72.5%);
|
|
23659
|
+
--color-error-350: hsl(0, 71.29186603%, 67.5%);
|
|
23660
|
+
--color-error-400: hsl(0, 71.29186603%, 62.5%);
|
|
23661
|
+
--color-error-450: hsl(0, 71.29186603%, 57.5%);
|
|
23662
|
+
--color-error-500: hsl(0, 71.29186603%, 52.5%);
|
|
23663
|
+
--color-error-550: hsl(0, 71.29186603%, 47.5%);
|
|
23664
|
+
--color-error-600: hsl(0, 71.29186603%, 42.5%);
|
|
23665
|
+
--color-error-650: hsl(0, 71.29186603%, 37.5%);
|
|
23666
|
+
--color-error-700: hsl(0, 71.29186603%, 32.5%);
|
|
23667
|
+
--color-error-750: hsl(0, 71.29186603%, 27.5%);
|
|
23668
|
+
--color-error-800: hsl(0, 71.29186603%, 22.5%);
|
|
23669
|
+
--color-error-850: hsl(0, 71.29186603%, 17.5%);
|
|
23670
|
+
--color-error-900: hsl(0, 71.29186603%, 12.5%);
|
|
23671
|
+
--color-error-950: hsl(0, 71.29186603%, 7.5%);
|
|
23672
|
+
--color-error-1000: hsl(0, 71.29186603%, 2.5%);
|
|
23673
|
+
--color-success-0: hsl(0, 0%, 100%);
|
|
23674
|
+
--color-success-50: hsl(120, 52.03252033%, 97.5%);
|
|
23675
|
+
--color-success-100: hsl(120, 52.03252033%, 92.5%);
|
|
23676
|
+
--color-success-150: hsl(120, 52.03252033%, 87.5%);
|
|
23677
|
+
--color-success-200: hsl(120, 52.03252033%, 82.5%);
|
|
23678
|
+
--color-success-250: hsl(120, 52.03252033%, 77.5%);
|
|
23679
|
+
--color-success-300: hsl(120, 52.03252033%, 72.5%);
|
|
23680
|
+
--color-success-350: hsl(120, 52.03252033%, 67.5%);
|
|
23681
|
+
--color-success-400: hsl(120, 52.03252033%, 62.5%);
|
|
23682
|
+
--color-success-450: hsl(120, 52.03252033%, 57.5%);
|
|
23683
|
+
--color-success-500: hsl(120, 52.03252033%, 52.5%);
|
|
23684
|
+
--color-success-550: hsl(120, 52.03252033%, 47.5%);
|
|
23685
|
+
--color-success-600: hsl(120, 52.03252033%, 42.5%);
|
|
23686
|
+
--color-success-650: hsl(120, 52.03252033%, 37.5%);
|
|
23687
|
+
--color-success-700: hsl(120, 52.03252033%, 32.5%);
|
|
23688
|
+
--color-success-750: hsl(120, 52.03252033%, 27.5%);
|
|
23689
|
+
--color-success-800: hsl(120, 52.03252033%, 22.5%);
|
|
23690
|
+
--color-success-850: hsl(120, 52.03252033%, 17.5%);
|
|
23691
|
+
--color-success-900: hsl(120, 52.03252033%, 12.5%);
|
|
23692
|
+
--color-success-950: hsl(120, 52.03252033%, 7.5%);
|
|
23693
|
+
--color-success-1000: hsl(120, 52.03252033%, 2.5%);
|
|
23694
|
+
--color-warning-0: hsl(240, 100%, 100%);
|
|
23695
|
+
--color-warning-50: hsl(44.9197861, 76.32653061%, 97.5%);
|
|
23696
|
+
--color-warning-100: hsl(44.9197861, 76.32653061%, 92.5%);
|
|
23697
|
+
--color-warning-150: hsl(44.9197861, 76.32653061%, 87.5%);
|
|
23698
|
+
--color-warning-200: hsl(44.9197861, 76.32653061%, 82.5%);
|
|
23699
|
+
--color-warning-250: hsl(44.9197861, 76.32653061%, 77.5%);
|
|
23700
|
+
--color-warning-300: hsl(44.9197861, 76.32653061%, 72.5%);
|
|
23701
|
+
--color-warning-350: hsl(44.9197861, 76.32653061%, 67.5%);
|
|
23702
|
+
--color-warning-400: hsl(44.9197861, 76.32653061%, 62.5%);
|
|
23703
|
+
--color-warning-450: hsl(44.9197861, 76.32653061%, 57.5%);
|
|
23704
|
+
--color-warning-500: hsl(44.9197861, 76.32653061%, 52.5%);
|
|
23705
|
+
--color-warning-550: hsl(44.9197861, 76.32653061%, 47.5%);
|
|
23706
|
+
--color-warning-600: hsl(44.9197861, 76.32653061%, 42.5%);
|
|
23707
|
+
--color-warning-650: hsl(44.9197861, 76.32653061%, 37.5%);
|
|
23708
|
+
--color-warning-700: hsl(44.9197861, 76.32653061%, 32.5%);
|
|
23709
|
+
--color-warning-750: hsl(44.9197861, 76.32653061%, 27.5%);
|
|
23710
|
+
--color-warning-800: hsl(44.9197861, 76.32653061%, 22.5%);
|
|
23711
|
+
--color-warning-850: hsl(44.9197861, 76.32653061%, 17.5%);
|
|
23712
|
+
--color-warning-900: hsl(44.9197861, 76.32653061%, 12.5%);
|
|
23713
|
+
--color-warning-950: hsl(44.9197861, 76.32653061%, 7.5%);
|
|
23714
|
+
--color-warning-1000: hsl(44.9197861, 76.32653061%, 2.5%);
|
|
23715
|
+
--color-info-0: hsl(0, 0%, 100%);
|
|
23716
|
+
--color-info-50: hsl(201.03092784, 82.90598291%, 97.5%);
|
|
23717
|
+
--color-info-100: hsl(201.03092784, 82.90598291%, 92.5%);
|
|
23718
|
+
--color-info-150: hsl(201.03092784, 82.90598291%, 87.5%);
|
|
23719
|
+
--color-info-200: hsl(201.03092784, 82.90598291%, 82.5%);
|
|
23720
|
+
--color-info-250: hsl(201.03092784, 82.90598291%, 77.5%);
|
|
23721
|
+
--color-info-300: hsl(201.03092784, 82.90598291%, 72.5%);
|
|
23722
|
+
--color-info-350: hsl(201.03092784, 82.90598291%, 67.5%);
|
|
23723
|
+
--color-info-400: hsl(201.03092784, 82.90598291%, 62.5%);
|
|
23724
|
+
--color-info-450: hsl(201.03092784, 82.90598291%, 57.5%);
|
|
23725
|
+
--color-info-500: hsl(201.03092784, 82.90598291%, 52.5%);
|
|
23726
|
+
--color-info-550: hsl(201.03092784, 82.90598291%, 47.5%);
|
|
23727
|
+
--color-info-600: hsl(201.03092784, 82.90598291%, 42.5%);
|
|
23728
|
+
--color-info-650: hsl(201.03092784, 82.90598291%, 37.5%);
|
|
23729
|
+
--color-info-700: hsl(201.03092784, 82.90598291%, 32.5%);
|
|
23730
|
+
--color-info-750: hsl(201.03092784, 82.90598291%, 27.5%);
|
|
23731
|
+
--color-info-800: hsl(201.03092784, 82.90598291%, 22.5%);
|
|
23732
|
+
--color-info-850: hsl(201.03092784, 82.90598291%, 17.5%);
|
|
23733
|
+
--color-info-900: hsl(201.03092784, 82.90598291%, 12.5%);
|
|
23734
|
+
--color-info-950: hsl(201.03092784, 82.90598291%, 7.5%);
|
|
23735
|
+
--color-info-1000: hsl(201.03092784, 82.90598291%, 2.5%);
|
|
23736
|
+
--color-neutral-0: hsl(0, 0%, 100%);
|
|
23737
|
+
--color-neutral-50: hsl(210, 10%, 97.5%);
|
|
23738
|
+
--color-neutral-100: hsl(210, 10%, 92.5%);
|
|
23739
|
+
--color-neutral-150: hsl(210, 10%, 87.5%);
|
|
23740
|
+
--color-neutral-200: hsl(210, 10%, 82.5%);
|
|
23741
|
+
--color-neutral-250: hsl(210, 10%, 77.5%);
|
|
23742
|
+
--color-neutral-300: hsl(210, 10%, 72.5%);
|
|
23743
|
+
--color-neutral-350: hsl(210, 10%, 67.5%);
|
|
23744
|
+
--color-neutral-400: hsl(210, 10%, 62.5%);
|
|
23745
|
+
--color-neutral-450: hsl(210, 10%, 57.5%);
|
|
23746
|
+
--color-neutral-500: hsl(210, 10%, 52.5%);
|
|
23747
|
+
--color-neutral-550: hsl(210, 10%, 47.5%);
|
|
23748
|
+
--color-neutral-600: hsl(210, 10%, 42.5%);
|
|
23749
|
+
--color-neutral-650: hsl(210, 10%, 37.5%);
|
|
23750
|
+
--color-neutral-700: hsl(210, 10%, 32.5%);
|
|
23751
|
+
--color-neutral-750: hsl(210, 10%, 27.5%);
|
|
23752
|
+
--color-neutral-800: hsl(210, 10%, 22.5%);
|
|
23753
|
+
--color-neutral-850: hsl(210, 10%, 17.5%);
|
|
23754
|
+
--color-neutral-900: hsl(210, 10%, 12.5%);
|
|
23755
|
+
--color-neutral-950: hsl(210, 10%, 7.5%);
|
|
23756
|
+
--color-neutral-1000: hsl(210, 10%, 2.5%);
|
|
23757
|
+
--color-primary-muted-0: hsl(0, 0%, 100%);
|
|
23758
|
+
--color-primary-muted-50: hsl(18.24742268, 57.90598291%, 97.5%);
|
|
23759
|
+
--color-primary-muted-100: hsl(18.24742268, 57.90598291%, 92.5%);
|
|
23760
|
+
--color-primary-muted-150: hsl(18.24742268, 57.90598291%, 87.5%);
|
|
23761
|
+
--color-primary-muted-200: hsl(18.24742268, 57.90598291%, 82.5%);
|
|
23762
|
+
--color-primary-muted-250: hsl(18.24742268, 57.90598291%, 77.5%);
|
|
23763
|
+
--color-primary-muted-300: hsl(18.24742268, 57.90598291%, 72.5%);
|
|
23764
|
+
--color-primary-muted-350: hsl(18.24742268, 57.90598291%, 67.5%);
|
|
23765
|
+
--color-primary-muted-400: hsl(18.24742268, 57.90598291%, 62.5%);
|
|
23766
|
+
--color-primary-muted-450: hsl(18.24742268, 57.90598291%, 57.5%);
|
|
23767
|
+
--color-primary-muted-500: hsl(18.24742268, 57.90598291%, 52.5%);
|
|
23768
|
+
--color-primary-muted-550: hsl(18.24742268, 57.90598291%, 47.5%);
|
|
23769
|
+
--color-primary-muted-600: hsl(18.24742268, 57.90598291%, 42.5%);
|
|
23770
|
+
--color-primary-muted-650: hsl(18.24742268, 57.90598291%, 37.5%);
|
|
23771
|
+
--color-primary-muted-700: hsl(18.24742268, 57.90598291%, 32.5%);
|
|
23772
|
+
--color-primary-muted-750: hsl(18.24742268, 57.90598291%, 27.5%);
|
|
23773
|
+
--color-primary-muted-800: hsl(18.24742268, 57.90598291%, 22.5%);
|
|
23774
|
+
--color-primary-muted-850: hsl(18.24742268, 57.90598291%, 17.5%);
|
|
23775
|
+
--color-primary-muted-900: hsl(18.24742268, 57.90598291%, 12.5%);
|
|
23776
|
+
--color-primary-muted-950: hsl(18.24742268, 57.90598291%, 7.5%);
|
|
23777
|
+
--color-primary-muted-1000: hsl(18.24742268, 57.90598291%, 2.5%);
|
|
23778
|
+
--color-error-muted-0: hsl(180, 100%, 100%);
|
|
23779
|
+
--color-error-muted-50: hsl(0, 46.29186603%, 97.5%);
|
|
23780
|
+
--color-error-muted-100: hsl(0, 46.29186603%, 92.5%);
|
|
23781
|
+
--color-error-muted-150: hsl(0, 46.29186603%, 87.5%);
|
|
23782
|
+
--color-error-muted-200: hsl(0, 46.29186603%, 82.5%);
|
|
23783
|
+
--color-error-muted-250: hsl(0, 46.29186603%, 77.5%);
|
|
23784
|
+
--color-error-muted-300: hsl(0, 46.29186603%, 72.5%);
|
|
23785
|
+
--color-error-muted-350: hsl(0, 46.29186603%, 67.5%);
|
|
23786
|
+
--color-error-muted-400: hsl(0, 46.29186603%, 62.5%);
|
|
23787
|
+
--color-error-muted-450: hsl(0, 46.29186603%, 57.5%);
|
|
23788
|
+
--color-error-muted-500: hsl(0, 46.29186603%, 52.5%);
|
|
23789
|
+
--color-error-muted-550: hsl(0, 46.29186603%, 47.5%);
|
|
23790
|
+
--color-error-muted-600: hsl(0, 46.29186603%, 42.5%);
|
|
23791
|
+
--color-error-muted-650: hsl(0, 46.29186603%, 37.5%);
|
|
23792
|
+
--color-error-muted-700: hsl(0, 46.29186603%, 32.5%);
|
|
23793
|
+
--color-error-muted-750: hsl(0, 46.29186603%, 27.5%);
|
|
23794
|
+
--color-error-muted-800: hsl(0, 46.29186603%, 22.5%);
|
|
23795
|
+
--color-error-muted-850: hsl(0, 46.29186603%, 17.5%);
|
|
23796
|
+
--color-error-muted-900: hsl(0, 46.29186603%, 12.5%);
|
|
23797
|
+
--color-error-muted-950: hsl(0, 46.29186603%, 7.5%);
|
|
23798
|
+
--color-error-muted-1000: hsl(0, 46.29186603%, 2.5%);
|
|
23799
|
+
--color-success-muted-0: hsl(0, 0%, 100%);
|
|
23800
|
+
--color-success-muted-50: hsl(120, 27.03252033%, 97.5%);
|
|
23801
|
+
--color-success-muted-100: hsl(120, 27.03252033%, 92.5%);
|
|
23802
|
+
--color-success-muted-150: hsl(120, 27.03252033%, 87.5%);
|
|
23803
|
+
--color-success-muted-200: hsl(120, 27.03252033%, 82.5%);
|
|
23804
|
+
--color-success-muted-250: hsl(120, 27.03252033%, 77.5%);
|
|
23805
|
+
--color-success-muted-300: hsl(120, 27.03252033%, 72.5%);
|
|
23806
|
+
--color-success-muted-350: hsl(120, 27.03252033%, 67.5%);
|
|
23807
|
+
--color-success-muted-400: hsl(120, 27.03252033%, 62.5%);
|
|
23808
|
+
--color-success-muted-450: hsl(120, 27.03252033%, 57.5%);
|
|
23809
|
+
--color-success-muted-500: hsl(120, 27.03252033%, 52.5%);
|
|
23810
|
+
--color-success-muted-550: hsl(120, 27.03252033%, 47.5%);
|
|
23811
|
+
--color-success-muted-600: hsl(120, 27.03252033%, 42.5%);
|
|
23812
|
+
--color-success-muted-650: hsl(120, 27.03252033%, 37.5%);
|
|
23813
|
+
--color-success-muted-700: hsl(120, 27.03252033%, 32.5%);
|
|
23814
|
+
--color-success-muted-750: hsl(120, 27.03252033%, 27.5%);
|
|
23815
|
+
--color-success-muted-800: hsl(120, 27.03252033%, 22.5%);
|
|
23816
|
+
--color-success-muted-850: hsl(120, 27.03252033%, 17.5%);
|
|
23817
|
+
--color-success-muted-900: hsl(120, 27.03252033%, 12.5%);
|
|
23818
|
+
--color-success-muted-950: hsl(120, 27.03252033%, 7.5%);
|
|
23819
|
+
--color-success-muted-1000: hsl(120, 27.03252033%, 2.5%);
|
|
23820
|
+
--color-warning-muted-0: hsl(240, 100%, 100%);
|
|
23821
|
+
--color-warning-muted-50: hsl(44.9197861, 51.32653061%, 97.5%);
|
|
23822
|
+
--color-warning-muted-100: hsl(44.9197861, 51.32653061%, 92.5%);
|
|
23823
|
+
--color-warning-muted-150: hsl(44.9197861, 51.32653061%, 87.5%);
|
|
23824
|
+
--color-warning-muted-200: hsl(44.9197861, 51.32653061%, 82.5%);
|
|
23825
|
+
--color-warning-muted-250: hsl(44.9197861, 51.32653061%, 77.5%);
|
|
23826
|
+
--color-warning-muted-300: hsl(44.9197861, 51.32653061%, 72.5%);
|
|
23827
|
+
--color-warning-muted-350: hsl(44.9197861, 51.32653061%, 67.5%);
|
|
23828
|
+
--color-warning-muted-400: hsl(44.9197861, 51.32653061%, 62.5%);
|
|
23829
|
+
--color-warning-muted-450: hsl(44.9197861, 51.32653061%, 57.5%);
|
|
23830
|
+
--color-warning-muted-500: hsl(44.9197861, 51.32653061%, 52.5%);
|
|
23831
|
+
--color-warning-muted-550: hsl(44.9197861, 51.32653061%, 47.5%);
|
|
23832
|
+
--color-warning-muted-600: hsl(44.9197861, 51.32653061%, 42.5%);
|
|
23833
|
+
--color-warning-muted-650: hsl(44.9197861, 51.32653061%, 37.5%);
|
|
23834
|
+
--color-warning-muted-700: hsl(44.9197861, 51.32653061%, 32.5%);
|
|
23835
|
+
--color-warning-muted-750: hsl(44.9197861, 51.32653061%, 27.5%);
|
|
23836
|
+
--color-warning-muted-800: hsl(44.9197861, 51.32653061%, 22.5%);
|
|
23837
|
+
--color-warning-muted-850: hsl(44.9197861, 51.32653061%, 17.5%);
|
|
23838
|
+
--color-warning-muted-900: hsl(44.9197861, 51.32653061%, 12.5%);
|
|
23839
|
+
--color-warning-muted-950: hsl(44.9197861, 51.32653061%, 7.5%);
|
|
23840
|
+
--color-warning-muted-1000: hsl(44.9197861, 51.32653061%, 2.5%);
|
|
23841
|
+
--color-info-muted-0: hsl(0, 0%, 100%);
|
|
23842
|
+
--color-info-muted-50: hsl(201.03092784, 57.90598291%, 97.5%);
|
|
23843
|
+
--color-info-muted-100: hsl(201.03092784, 57.90598291%, 92.5%);
|
|
23844
|
+
--color-info-muted-150: hsl(201.03092784, 57.90598291%, 87.5%);
|
|
23845
|
+
--color-info-muted-200: hsl(201.03092784, 57.90598291%, 82.5%);
|
|
23846
|
+
--color-info-muted-250: hsl(201.03092784, 57.90598291%, 77.5%);
|
|
23847
|
+
--color-info-muted-300: hsl(201.03092784, 57.90598291%, 72.5%);
|
|
23848
|
+
--color-info-muted-350: hsl(201.03092784, 57.90598291%, 67.5%);
|
|
23849
|
+
--color-info-muted-400: hsl(201.03092784, 57.90598291%, 62.5%);
|
|
23850
|
+
--color-info-muted-450: hsl(201.03092784, 57.90598291%, 57.5%);
|
|
23851
|
+
--color-info-muted-500: hsl(201.03092784, 57.90598291%, 52.5%);
|
|
23852
|
+
--color-info-muted-550: hsl(201.03092784, 57.90598291%, 47.5%);
|
|
23853
|
+
--color-info-muted-600: hsl(201.03092784, 57.90598291%, 42.5%);
|
|
23854
|
+
--color-info-muted-650: hsl(201.03092784, 57.90598291%, 37.5%);
|
|
23855
|
+
--color-info-muted-700: hsl(201.03092784, 57.90598291%, 32.5%);
|
|
23856
|
+
--color-info-muted-750: hsl(201.03092784, 57.90598291%, 27.5%);
|
|
23857
|
+
--color-info-muted-800: hsl(201.03092784, 57.90598291%, 22.5%);
|
|
23858
|
+
--color-info-muted-850: hsl(201.03092784, 57.90598291%, 17.5%);
|
|
23859
|
+
--color-info-muted-900: hsl(201.03092784, 57.90598291%, 12.5%);
|
|
23860
|
+
--color-info-muted-950: hsl(201.03092784, 57.90598291%, 7.5%);
|
|
23861
|
+
--color-info-muted-1000: hsl(201.03092784, 57.90598291%, 2.5%);
|
|
23862
|
+
}
|
|
23863
|
+
:root {
|
|
23864
|
+
color-scheme: initial;
|
|
23865
|
+
--size: 32px;
|
|
23866
|
+
--size-sm: 24px;
|
|
23867
|
+
--size-xs: 16px;
|
|
23868
|
+
--spacing-3xl: 36px;
|
|
23869
|
+
--spacing-2xl: 32px;
|
|
23870
|
+
--spacing-xl: 28px;
|
|
23871
|
+
--spacing-lg: 24px;
|
|
23872
|
+
--spacing: 20px;
|
|
23873
|
+
--spacing-sm: 16px;
|
|
23874
|
+
--spacing-xs: 12px;
|
|
23875
|
+
--spacing-2xs: 8px;
|
|
23876
|
+
--spacing-3xs: 4px;
|
|
23877
|
+
--padding-input-x: var(--spacing-xs);
|
|
23878
|
+
--padding-input-y: var(--spacing-2xs);
|
|
23879
|
+
--border-radius: 4px;
|
|
23880
|
+
--color-text: rgba(0, 0, 0, 0.87);
|
|
23881
|
+
--color-text-muted: #7d7b7a;
|
|
23882
|
+
--color-text-faint: #acabab;
|
|
23883
|
+
--color-text-error: hsl(0, 40%, 50%);
|
|
23884
|
+
--color-text-warning: var(--color-warning-700);
|
|
23885
|
+
--color-text-success: hsl(120, 40%, 50%);
|
|
23886
|
+
--color-text-info: hsl(201.03092784, 40%, 50%);
|
|
23887
|
+
--color-text-primary: #eb6429;
|
|
23888
|
+
--color-text-primary-hover: #ce4c13;
|
|
23889
|
+
--color-text-primary-active: #9f3b0f;
|
|
23890
|
+
--color-text-placeholder: rgba(0, 0, 0, 0.3);
|
|
23891
|
+
--color-background: #f5f7f9;
|
|
23892
|
+
--color-background-raised: white;
|
|
23893
|
+
--color-background-disabled: rgba(0, 0, 0, 0.025);
|
|
23894
|
+
--color-background-info: hsl(201.03092784, 40%, 90%);
|
|
23895
|
+
--color-background-error: hsl(0, 40%, 90%);
|
|
23896
|
+
--color-background-success: hsl(120, 40%, 90%);
|
|
23897
|
+
--color-background-warning: var(--color-warning-100);
|
|
23898
|
+
--color-background-primary: #eb6429;
|
|
23899
|
+
--color-background-input: white;
|
|
23900
|
+
--color-background-listitem-active: #fff0e4;
|
|
23901
|
+
--color-background-listitem-hover: #f5f7f9;
|
|
23902
|
+
--color-background-menuitem-active: #edf1f4;
|
|
23903
|
+
--color-background-menuitem-hover: #f5f7f9;
|
|
23904
|
+
--color-background-menuitem-activehover: #e5eaef;
|
|
23905
|
+
--color-border: #ddd;
|
|
23906
|
+
--color-border-checkbox: var(--color-neutral-300);
|
|
23907
|
+
--color-border-hover: var(--color-neutral-400);
|
|
23908
|
+
--color-border-focus: var(--color-info-muted-500);
|
|
23909
|
+
--color-border-error: var(--color-error-muted-300);
|
|
23910
|
+
--color-border-error-hover: var(--color-error-muted-400);
|
|
23911
|
+
--color-border-warning: var(--color-warning-muted-300);
|
|
23912
|
+
--color-border-warning-hover: var(--color-warning-muted-400);
|
|
23913
|
+
--shadow-focus: 0 0 0 2px rgba(41, 167, 235, 0.25);
|
|
23914
|
+
}
|
|
23915
|
+
html[data-theme='dark'] {
|
|
23916
|
+
color-scheme: dark;
|
|
23917
|
+
--color-text: var(--color-neutral-200);
|
|
23918
|
+
--color-text-muted: var(--color-neutral-400);
|
|
23919
|
+
--color-text-faint: var(--color-neutral-600);
|
|
23920
|
+
--color-text-primary: var(--color-primary-muted-450);
|
|
23921
|
+
--color-text-primary-active: var(--color-primary-muted-350);
|
|
23922
|
+
--color-text-primary-hover: var(--color-primary-muted-400);
|
|
23923
|
+
--color-text-error: var(--color-error-muted-300);
|
|
23924
|
+
--color-text-info: var(--color-info-muted-300);
|
|
23925
|
+
--color-text-success: var(--color-success-muted-300);
|
|
23926
|
+
--color-text-warning: var(--color-warning-muted-300);
|
|
23927
|
+
--color-text-placeholder: rgba(255, 255, 255, 0.3);
|
|
23928
|
+
--color-background: var(--color-neutral-900);
|
|
23929
|
+
--color-background-raised: var(--color-neutral-800);
|
|
23930
|
+
--color-background-disabled: rgba(0, 0, 0, 0.2);
|
|
23931
|
+
--color-background-error: var(--color-error-muted-700);
|
|
23932
|
+
--color-background-info: var(--color-info-muted-700);
|
|
23933
|
+
--color-background-success: var(--color-success-muted-700);
|
|
23934
|
+
--color-background-warning: var(--color-warning-muted-700);
|
|
23935
|
+
--color-background-primary: var(--color-primary-muted-500);
|
|
23936
|
+
--color-background-input: var(--color-neutral-750);
|
|
23937
|
+
--color-background-listitem-active: var(--color-primary-muted-750);
|
|
23938
|
+
--color-background-listitem-hover: var(--color-neutral-750);
|
|
23939
|
+
--color-background-menuitem-active: var(--color-neutral-650);
|
|
23940
|
+
--color-background-menuitem-hover: var(--color-neutral-700);
|
|
23941
|
+
--color-background-menuitem-activehover: var(--color-neutral-600);
|
|
23942
|
+
--color-border: var(--color-neutral-1000);
|
|
23943
|
+
--color-border-checkbox: var(--color-neutral-1000);
|
|
23944
|
+
--color-border-hover: var(--color-neutral-500);
|
|
23945
|
+
--color-border-focus: var(--color-info-500);
|
|
23946
|
+
--color-border-error: var(--color-neutral-1000);
|
|
23947
|
+
--color-border-warning: var(--color-neutral-1000);
|
|
23948
|
+
--shadow-focus: 0 0 0 2px rgba(41, 167, 235, 0.5);
|
|
23949
|
+
}
|
|
23950
|
+
/*
|
|
23951
|
+
LAYOUT
|
|
23952
|
+
*/
|
|
23953
|
+
/*
|
|
23954
|
+
CARDS
|
|
23955
|
+
*/
|
|
23956
|
+
/*
|
|
23957
|
+
INPUTS
|
|
23958
|
+
*/
|
|
23959
|
+
/*
|
|
23960
|
+
Z-INDEX
|
|
23961
|
+
*/
|
|
23962
|
+
._title_83v84_337 {
|
|
23963
|
+
background-color: var(--color-background);
|
|
23964
|
+
border: 1px solid var(--color-border);
|
|
23965
|
+
padding: 6.5px 12px;
|
|
23621
23966
|
display: flex;
|
|
23622
23967
|
align-items: center;
|
|
23623
23968
|
justify-content: space-between;
|
|
23624
23969
|
gap: 4px;
|
|
23970
|
+
width: 100%;
|
|
23971
|
+
border-top-left-radius: inherit;
|
|
23972
|
+
border-top-right-radius: inherit;
|
|
23973
|
+
margin-bottom: -1px;
|
|
23625
23974
|
}
|
|
23626
23975
|
/*
|
|
23627
23976
|
This file has shared variables that are re-used in other LESS files/modules
|