cax-design-system 2.1.0 → 2.3.0
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/README.md +1 -1
- package/api/public_api.d.ts +1 -0
- package/api/themegeneratorservice.d.ts +12 -0
- package/badge/badge.directive.d.ts +4 -2
- package/esm2022/accordion/accordion.mjs +3 -3
- package/esm2022/api/public_api.mjs +2 -1
- package/esm2022/api/themegeneratorservice.mjs +109 -0
- package/esm2022/autocomplete/autocomplete.mjs +3 -3
- package/esm2022/badge/badge.directive.mjs +20 -8
- package/esm2022/badge/badge.mjs +2 -2
- package/esm2022/inputnumber/inputnumber.mjs +11 -5
- package/esm2022/overlaypanel/overlaypanel.mjs +3 -3
- package/esm2022/paginator/paginator.mjs +1 -1
- package/esm2022/splitbutton/splitbutton.mjs +8 -3
- package/esm2022/splitbutton/splitbutton.module.mjs +5 -4
- package/esm2022/steps/public_api.mjs +2 -1
- package/esm2022/steps/steps.mjs +5 -143
- package/esm2022/steps/steps.module.mjs +20 -0
- package/esm2022/table/components/column-filter-form-element/column-filter-form-element.mjs +2 -2
- package/esm2022/timeline/public_api.mjs +2 -1
- package/esm2022/timeline/timeline.mjs +6 -90
- package/esm2022/timeline/timeline.module.mjs +19 -0
- package/esm2022/toggleswitch/toggleswitch.mjs +3 -3
- package/fesm2022/cax-design-system-accordion.mjs +2 -2
- package/fesm2022/cax-design-system-accordion.mjs.map +1 -1
- package/fesm2022/cax-design-system-api.mjs +108 -1
- package/fesm2022/cax-design-system-api.mjs.map +1 -1
- package/fesm2022/cax-design-system-autocomplete.mjs +2 -2
- package/fesm2022/cax-design-system-autocomplete.mjs.map +1 -1
- package/fesm2022/cax-design-system-badge.mjs +21 -9
- package/fesm2022/cax-design-system-badge.mjs.map +1 -1
- package/fesm2022/cax-design-system-inputnumber.mjs +10 -4
- package/fesm2022/cax-design-system-inputnumber.mjs.map +1 -1
- package/fesm2022/cax-design-system-overlaypanel.mjs +2 -2
- package/fesm2022/cax-design-system-overlaypanel.mjs.map +1 -1
- package/fesm2022/cax-design-system-paginator.mjs +1 -1
- package/fesm2022/cax-design-system-paginator.mjs.map +1 -1
- package/fesm2022/cax-design-system-splitbutton.mjs +11 -5
- package/fesm2022/cax-design-system-splitbutton.mjs.map +1 -1
- package/fesm2022/cax-design-system-steps.mjs +7 -128
- package/fesm2022/cax-design-system-steps.mjs.map +1 -1
- package/fesm2022/cax-design-system-table.mjs +1 -1
- package/fesm2022/cax-design-system-table.mjs.map +1 -1
- package/fesm2022/cax-design-system-timeline.mjs +6 -75
- package/fesm2022/cax-design-system-timeline.mjs.map +1 -1
- package/fesm2022/cax-design-system-toggleswitch.mjs +2 -2
- package/fesm2022/cax-design-system-toggleswitch.mjs.map +1 -1
- package/inputnumber/inputnumber.d.ts +6 -1
- package/package.json +255 -255
- package/resources/cax.min.scss +1 -1
- package/resources/cax.scss +1056 -622
- package/resources/components/accordion/accordion.scss +2 -0
- package/resources/components/autocomplete/autocomplete.scss +3 -7
- package/resources/components/badge/badge.scss +33 -0
- package/resources/components/inputnumber/inputnumber.scss +2 -9
- package/resources/components/overlaypanel/overlaypanel.scss +4 -1
- package/resources/components/splitbutton/splitbutton.scss +10 -5
- package/resources/components/steps/{steps.css → steps.scss} +10 -9
- package/resources/components/timeline/timeline.scss +134 -0
- package/resources/components/toggleswitch/toggleswitch.scss +6 -0
- package/splitbutton/splitbutton.d.ts +1 -0
- package/splitbutton/splitbutton.module.d.ts +2 -1
- package/steps/public_api.d.ts +1 -0
- package/steps/steps.d.ts +1 -9
- package/steps/steps.module.d.ts +10 -0
- package/timeline/public_api.d.ts +1 -0
- package/timeline/timeline.d.ts +1 -8
- package/timeline/timeline.module.d.ts +9 -0
- package/resources/components/timeline/timeline.css +0 -114
package/resources/cax.scss
CHANGED
|
@@ -214,6 +214,39 @@
|
|
|
214
214
|
padding: 0;
|
|
215
215
|
border-radius: 50%;
|
|
216
216
|
}
|
|
217
|
+
|
|
218
|
+
.cax-badge-button-wrapper {
|
|
219
|
+
position: relative;
|
|
220
|
+
display: inline-flex;
|
|
221
|
+
|
|
222
|
+
.cax-badge {
|
|
223
|
+
position: absolute;
|
|
224
|
+
top: -8px;
|
|
225
|
+
right: -8px;
|
|
226
|
+
transform: none;
|
|
227
|
+
min-width: 20px;
|
|
228
|
+
height: 20px;
|
|
229
|
+
line-height: 20px;
|
|
230
|
+
font-size: 12px;
|
|
231
|
+
z-index: 1;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.cax-button-badge {
|
|
236
|
+
position: relative !important;
|
|
237
|
+
|
|
238
|
+
.cax-badge {
|
|
239
|
+
position: absolute;
|
|
240
|
+
top: 0;
|
|
241
|
+
right: 0;
|
|
242
|
+
transform: translate(50%, -50%);
|
|
243
|
+
z-index: 1;
|
|
244
|
+
min-width: 1.5rem;
|
|
245
|
+
height: 1.5rem;
|
|
246
|
+
line-height: 1.5rem;
|
|
247
|
+
font-size: 0.75rem;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
217
250
|
}
|
|
218
251
|
|
|
219
252
|
@layer cax {
|
|
@@ -945,127 +978,6 @@
|
|
|
945
978
|
background-color: transparent;
|
|
946
979
|
}
|
|
947
980
|
}
|
|
948
|
-
|
|
949
|
-
.cax-autocomplete .cax-autocomplete-loader {
|
|
950
|
-
}
|
|
951
|
-
.cax-autocomplete.cax-autocomplete-dd .cax-autocomplete-loader {
|
|
952
|
-
right: 3.25rem;
|
|
953
|
-
}
|
|
954
|
-
.cax-autocomplete:not(.cax-disabled):hover .cax-autocomplete-multiple-container {
|
|
955
|
-
border-color: #52525b;
|
|
956
|
-
}
|
|
957
|
-
.cax-autocomplete:not(.cax-disabled).cax-focus .cax-autocomplete-multiple-container {
|
|
958
|
-
outline: 1px solid var(--cax-focus-ring-color);
|
|
959
|
-
outline-offset: -1px;
|
|
960
|
-
box-shadow: none;
|
|
961
|
-
border-color: #52525b;
|
|
962
|
-
}
|
|
963
|
-
.cax-autocomplete .cax-autocomplete-multiple-container {
|
|
964
|
-
padding: 0.25rem 0.75rem;
|
|
965
|
-
gap: 0.5rem;
|
|
966
|
-
}
|
|
967
|
-
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-input-token {
|
|
968
|
-
padding: 0.25rem 0;
|
|
969
|
-
}
|
|
970
|
-
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-input-token input {
|
|
971
|
-
font-family: var(--font-family);
|
|
972
|
-
font-feature-settings: var(--font-feature-settings, normal);
|
|
973
|
-
font-size: 1rem;
|
|
974
|
-
color: #ffffff;
|
|
975
|
-
padding: 0;
|
|
976
|
-
margin: 0;
|
|
977
|
-
}
|
|
978
|
-
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-token {
|
|
979
|
-
padding: 0.25rem 0.75rem;
|
|
980
|
-
background: #3f3f46;
|
|
981
|
-
color: #ffffff;
|
|
982
|
-
border-radius: 16px;
|
|
983
|
-
}
|
|
984
|
-
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-token .cax-autocomplete-token-icon {
|
|
985
|
-
margin-left: 0.5rem;
|
|
986
|
-
}
|
|
987
|
-
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-token.cax-focus {
|
|
988
|
-
background: #3f3f46;
|
|
989
|
-
color: #ffffff;
|
|
990
|
-
}
|
|
991
|
-
.cax-autocomplete.cax-invalid.cax-component > .cax-inputtext {
|
|
992
|
-
border-color: #fca5a5;
|
|
993
|
-
}
|
|
994
|
-
|
|
995
|
-
.cax-autocomplete-panel {
|
|
996
|
-
background: var(--white-100);
|
|
997
|
-
color: var(--black-100);
|
|
998
|
-
border: 1px solid var(--grey-200);
|
|
999
|
-
border-radius: 7px;
|
|
1000
|
-
box-shadow:
|
|
1001
|
-
0 4px 6px -1px rgba(0, 0, 0, 0.1),
|
|
1002
|
-
0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
|
1003
|
-
}
|
|
1004
|
-
.cax-autocomplete-panel .cax-autocomplete-items {
|
|
1005
|
-
padding: 0.25rem 0.25rem;
|
|
1006
|
-
}
|
|
1007
|
-
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item {
|
|
1008
|
-
margin: 2px 0;
|
|
1009
|
-
padding: 0.5rem 0.75rem;
|
|
1010
|
-
border: 0 none;
|
|
1011
|
-
color: var(--grey-900);
|
|
1012
|
-
background: var(--white-100);
|
|
1013
|
-
transition:
|
|
1014
|
-
background-color 0.2s,
|
|
1015
|
-
color 0.2s,
|
|
1016
|
-
border-color 0.2s,
|
|
1017
|
-
box-shadow 0.2s,
|
|
1018
|
-
outline-color 0.2s;
|
|
1019
|
-
border-radius: 4px;
|
|
1020
|
-
}
|
|
1021
|
-
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item:first-child {
|
|
1022
|
-
margin-top: 0;
|
|
1023
|
-
}
|
|
1024
|
-
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item.cax-highlight {
|
|
1025
|
-
color: var(--grey-900);
|
|
1026
|
-
background: var(--grey-100);
|
|
1027
|
-
}
|
|
1028
|
-
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item.cax-highlight.cax-focus {
|
|
1029
|
-
background: rgba(34, 211, 238, 0.24);
|
|
1030
|
-
}
|
|
1031
|
-
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item:not(.cax-highlight):not(.cax-disabled).cax-focus {
|
|
1032
|
-
color: #ffffff;
|
|
1033
|
-
background: rgba(255, 255, 255, 0.08);
|
|
1034
|
-
}
|
|
1035
|
-
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item:not(.cax-highlight):not(.cax-disabled):hover {
|
|
1036
|
-
color: var(--black-100);
|
|
1037
|
-
background: var(--grey-100);
|
|
1038
|
-
}
|
|
1039
|
-
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item-group {
|
|
1040
|
-
margin: 0;
|
|
1041
|
-
padding: 0.5rem 0.75rem;
|
|
1042
|
-
color: #71717a;
|
|
1043
|
-
background: #18181b;
|
|
1044
|
-
font-weight: 600;
|
|
1045
|
-
}
|
|
1046
|
-
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-empty-message {
|
|
1047
|
-
padding: 0.5rem 0.75rem;
|
|
1048
|
-
color: var(--grey-900);
|
|
1049
|
-
background: var(--white-100);
|
|
1050
|
-
}
|
|
1051
|
-
|
|
1052
|
-
cax-autocomplete.ng-dirty.ng-invalid > .cax-autocomplete > .cax-inputtext {
|
|
1053
|
-
border-color: #fca5a5;
|
|
1054
|
-
}
|
|
1055
|
-
|
|
1056
|
-
cax-autocomplete.cax-autocomplete-clearable .cax-inputtext {
|
|
1057
|
-
padding-left: 1.9rem;
|
|
1058
|
-
padding-right: 1.9rem;
|
|
1059
|
-
}
|
|
1060
|
-
cax-autocomplete.cax-autocomplete-clearable .cax-autocomplete-clear-icon {
|
|
1061
|
-
color: #a1a1aa;
|
|
1062
|
-
// left: 11rem;
|
|
1063
|
-
}
|
|
1064
|
-
|
|
1065
|
-
cax-autocomplete.cax-autocomplete-clearable .cax-autocomplete-dd .cax-autocomplete-clear-icon {
|
|
1066
|
-
color: #a1a1aa;
|
|
1067
|
-
right: 3.25rem;
|
|
1068
|
-
}
|
|
1069
981
|
.cax-cascadeselect {
|
|
1070
982
|
border: 1px solid var(--neutral-200);
|
|
1071
983
|
transition:
|
|
@@ -1420,43 +1332,6 @@
|
|
|
1420
1332
|
color: var(--neutral-900);
|
|
1421
1333
|
}
|
|
1422
1334
|
|
|
1423
|
-
cax-inputnumber.ng-dirty.ng-invalid > .cax-inputnumber > .cax-inputtext {
|
|
1424
|
-
border-color: #fca5a5;
|
|
1425
|
-
}
|
|
1426
|
-
|
|
1427
|
-
cax-inputnumber.cax-inputnumber-clearable .cax-inputnumber-input {
|
|
1428
|
-
padding-right: 2.5rem;
|
|
1429
|
-
}
|
|
1430
|
-
cax-inputnumber.cax-inputnumber-clearable .cax-inputnumber-clear-icon {
|
|
1431
|
-
color: #a1a1aa;
|
|
1432
|
-
right: 0.75rem;
|
|
1433
|
-
}
|
|
1434
|
-
|
|
1435
|
-
cax-inputnumber.cax-inputnumber-clearable .cax-inputnumber-buttons-stacked .cax-inputnumber-clear-icon {
|
|
1436
|
-
right: 3.25rem;
|
|
1437
|
-
}
|
|
1438
|
-
cax-inputnumber.cax-inputnumber-clearable .cax-inputnumber-buttons-horizontal .cax-inputnumber-clear-icon {
|
|
1439
|
-
right: 3.25rem;
|
|
1440
|
-
}
|
|
1441
|
-
|
|
1442
|
-
cax-inputnumber.cax-inputnumber.cax-variant-filled > .cax-inputnumber-input {
|
|
1443
|
-
background-color: #27272a;
|
|
1444
|
-
}
|
|
1445
|
-
cax-inputnumber.cax-inputnumber.cax-variant-filled > .cax-inputnumber-input:enabled:hover {
|
|
1446
|
-
background-color: var(--neutral-500);
|
|
1447
|
-
}
|
|
1448
|
-
cax-inputnumber.cax-inputnumber.cax-variant-filled > .cax-inputnumber-input:enabled:focus {
|
|
1449
|
-
background-color: #27272a;
|
|
1450
|
-
}
|
|
1451
|
-
.cax-inputnumber-input {
|
|
1452
|
-
width: 46px;
|
|
1453
|
-
height: 40px;
|
|
1454
|
-
border-radius: 5px;
|
|
1455
|
-
border: 1px solid var(--neutral-200);
|
|
1456
|
-
color: var(--neutral-500);
|
|
1457
|
-
font-weight: 400;
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
1335
|
.cax-inputotp {
|
|
1461
1336
|
display: flex;
|
|
1462
1337
|
align-items: center;
|
|
@@ -2315,22 +2190,6 @@
|
|
|
2315
2190
|
background-color: rgba(0, 0, 0, 0.4);
|
|
2316
2191
|
}
|
|
2317
2192
|
|
|
2318
|
-
.cax-splitbutton {
|
|
2319
|
-
border-radius: 6px;
|
|
2320
|
-
}
|
|
2321
|
-
.cax-splitbutton.cax-button-rounded {
|
|
2322
|
-
border-radius: 2rem;
|
|
2323
|
-
}
|
|
2324
|
-
.cax-splitbutton.cax-button-rounded > .cax-button {
|
|
2325
|
-
border-radius: 2rem;
|
|
2326
|
-
}
|
|
2327
|
-
.cax-splitbutton.cax-button-raised {
|
|
2328
|
-
box-shadow:
|
|
2329
|
-
0 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
2330
|
-
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
2331
|
-
0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
2332
|
-
}
|
|
2333
|
-
|
|
2334
2193
|
.cax-carousel .cax-carousel-content .cax-carousel-prev,
|
|
2335
2194
|
.cax-carousel .cax-carousel-content .cax-carousel-next {
|
|
2336
2195
|
width: 1.75rem;
|
|
@@ -2825,32 +2684,6 @@
|
|
|
2825
2684
|
background: #18181b;
|
|
2826
2685
|
margin: 0;
|
|
2827
2686
|
}
|
|
2828
|
-
|
|
2829
|
-
.cax-timeline .cax-timeline-event-marker {
|
|
2830
|
-
border: 2px solid #3f3f46;
|
|
2831
|
-
border-radius: 50%;
|
|
2832
|
-
width: 1.125rem;
|
|
2833
|
-
height: 1.125rem;
|
|
2834
|
-
background-color: #020617;
|
|
2835
|
-
}
|
|
2836
|
-
.cax-timeline .cax-timeline-event-connector {
|
|
2837
|
-
background-color: #3f3f46;
|
|
2838
|
-
}
|
|
2839
|
-
.cax-timeline.cax-timeline-vertical .cax-timeline-event-opposite,
|
|
2840
|
-
.cax-timeline.cax-timeline-vertical .cax-timeline-event-content {
|
|
2841
|
-
padding: 0 1rem;
|
|
2842
|
-
}
|
|
2843
|
-
.cax-timeline.cax-timeline-vertical .cax-timeline-event-connector {
|
|
2844
|
-
width: 2px;
|
|
2845
|
-
}
|
|
2846
|
-
.cax-timeline.cax-timeline-horizontal .cax-timeline-event-opposite,
|
|
2847
|
-
.cax-timeline.cax-timeline-horizontal .cax-timeline-event-content {
|
|
2848
|
-
padding: 1rem 0;
|
|
2849
|
-
}
|
|
2850
|
-
.cax-timeline.cax-timeline-horizontal .cax-timeline-event-connector {
|
|
2851
|
-
height: 2px;
|
|
2852
|
-
}
|
|
2853
|
-
|
|
2854
2687
|
.cax-tree {
|
|
2855
2688
|
border: 1px solid var(--neutral-200);
|
|
2856
2689
|
background: var(--white-100);
|
|
@@ -3299,74 +3132,7 @@
|
|
|
3299
3132
|
border-bottom-right-radius: 6px;
|
|
3300
3133
|
}
|
|
3301
3134
|
|
|
3302
|
-
|
|
3303
|
-
padding: 1.125rem 1.125rem 1.125rem 1.125rem;
|
|
3304
|
-
border: 1px solid #e0e5eb;
|
|
3305
|
-
color: var(--neutral-900);
|
|
3306
|
-
background: var(--neutral-300);
|
|
3307
|
-
font-weight: 600;
|
|
3308
|
-
border-radius: 6px;
|
|
3309
|
-
font-size: 16px;
|
|
3310
|
-
border-bottom: 1px solid #e0e5eb;
|
|
3311
|
-
transition:
|
|
3312
|
-
background-color 0.2s,
|
|
3313
|
-
color 0.2s,
|
|
3314
|
-
border-color 0.2s,
|
|
3315
|
-
box-shadow 0.2s,
|
|
3316
|
-
outline-color 0.2s;
|
|
3317
|
-
}
|
|
3318
|
-
.cax-accordion .cax-accordion-header .cax-accordion-header-link .cax-accordion-toggle-icon {
|
|
3319
|
-
margin-right: 0.5rem;
|
|
3320
|
-
}
|
|
3321
|
-
|
|
3322
|
-
.cax-accordion .cax-accordion-header:not(.cax-disabled).cax-highlight .cax-accordion-header-link {
|
|
3323
|
-
background: var(--neutral-300);
|
|
3324
|
-
border-color: 1px solid #e0e5eb;
|
|
3325
|
-
color: var(--neutral-900);
|
|
3326
|
-
border-bottom-right-radius: 0;
|
|
3327
|
-
border-bottom-left-radius: 0;
|
|
3328
|
-
}
|
|
3329
|
-
|
|
3330
|
-
.cax-accordion .cax-accordion-content {
|
|
3331
|
-
padding: 0 1.125rem 1.125rem 1.125rem;
|
|
3332
|
-
border: 1px solid #e0e5eb;
|
|
3333
|
-
background: var(--white-100);
|
|
3334
|
-
color: var(--neutral-900);
|
|
3335
|
-
font-size: 0.875rem;
|
|
3336
|
-
border-top-right-radius: 0;
|
|
3337
|
-
border-top-left-radius: 0;
|
|
3338
|
-
border-bottom-right-radius: 6px;
|
|
3339
|
-
border-bottom-left-radius: 6px;
|
|
3340
|
-
}
|
|
3341
|
-
.cax-accordion cax-accordiontab .cax-accordion-tab {
|
|
3342
|
-
margin-bottom: 0;
|
|
3343
|
-
}
|
|
3344
|
-
.cax-accordion cax-accordiontab .cax-accordion-header .cax-accordion-header-link {
|
|
3345
|
-
border-radius: 0;
|
|
3346
|
-
}
|
|
3347
|
-
.cax-accordion cax-accordiontab .cax-accordion-content {
|
|
3348
|
-
border-radius: 0;
|
|
3349
|
-
}
|
|
3350
|
-
.cax-accordion cax-accordiontab:not(:first-child) .cax-accordion-header .cax-accordion-header-link {
|
|
3351
|
-
border-top: 0 none;
|
|
3352
|
-
}
|
|
3353
|
-
.cax-accordion cax-accordiontab:not(:first-child) .cax-accordion-header:not(.cax-highlight):not(.cax-disabled):hover .cax-accordion-header-link,
|
|
3354
|
-
.cax-accordion cax-accordiontab:not(:first-child) .cax-accordion-header:not(.cax-disabled).cax-highlight:hover .cax-accordion-header-link {
|
|
3355
|
-
border-top: 0 none;
|
|
3356
|
-
}
|
|
3357
|
-
.cax-accordion cax-accordiontab:first-child .cax-accordion-header .cax-accordion-header-link {
|
|
3358
|
-
border-top-right-radius: 6px;
|
|
3359
|
-
border-top-left-radius: 6px;
|
|
3360
|
-
}
|
|
3361
|
-
.cax-accordion cax-accordiontab:last-child .cax-accordion-header:not(.cax-highlight) .cax-accordion-header-link {
|
|
3362
|
-
border-bottom-right-radius: 6px;
|
|
3363
|
-
border-bottom-left-radius: 6px;
|
|
3364
|
-
}
|
|
3365
|
-
.cax-accordion cax-accordiontab:last-child .cax-accordion-content {
|
|
3366
|
-
border-bottom-right-radius: 6px;
|
|
3367
|
-
border-bottom-left-radius: 6px;
|
|
3368
|
-
}
|
|
3369
|
-
|
|
3135
|
+
|
|
3370
3136
|
.cax-card {
|
|
3371
3137
|
background: var(--white-900);
|
|
3372
3138
|
color: var(--neutral-900);
|
|
@@ -3921,52 +3687,6 @@
|
|
|
3921
3687
|
margin-left: 1rem;
|
|
3922
3688
|
}
|
|
3923
3689
|
|
|
3924
|
-
.cax-overlaypanel {
|
|
3925
|
-
background: var(--neutral-100);
|
|
3926
|
-
color: var(--neutral-700);
|
|
3927
|
-
border: 1px solid var(--neutral-700);
|
|
3928
|
-
border-radius: 7px;
|
|
3929
|
-
}
|
|
3930
|
-
.cax-overlaypanel .cax-overlaypanel-content {
|
|
3931
|
-
padding: 0 1.125rem 1.125rem 1.125rem;
|
|
3932
|
-
}
|
|
3933
|
-
.cax-overlaypanel .cax-overlaypanel-close {
|
|
3934
|
-
background: #22d3ee;
|
|
3935
|
-
color: #020617;
|
|
3936
|
-
width: 1.75rem;
|
|
3937
|
-
height: 1.75rem;
|
|
3938
|
-
transition:
|
|
3939
|
-
background-color 0.2s,
|
|
3940
|
-
color 0.2s,
|
|
3941
|
-
border-color 0.2s,
|
|
3942
|
-
box-shadow 0.2s,
|
|
3943
|
-
outline-color 0.2s;
|
|
3944
|
-
border-radius: 50%;
|
|
3945
|
-
position: absolute;
|
|
3946
|
-
top: -0.875rem;
|
|
3947
|
-
right: -0.875rem;
|
|
3948
|
-
}
|
|
3949
|
-
.cax-overlaypanel .cax-overlaypanel-close:enabled:hover {
|
|
3950
|
-
background: #67e8f9;
|
|
3951
|
-
color: #020617;
|
|
3952
|
-
}
|
|
3953
|
-
.cax-overlaypanel:after {
|
|
3954
|
-
border: solid transparent;
|
|
3955
|
-
border-color: rgba(24, 24, 27, 0);
|
|
3956
|
-
border-bottom-color: #18181b;
|
|
3957
|
-
}
|
|
3958
|
-
.cax-overlaypanel:before {
|
|
3959
|
-
border: solid transparent;
|
|
3960
|
-
border-color: rgba(63, 63, 70, 0);
|
|
3961
|
-
border-bottom-color: #3c3c43;
|
|
3962
|
-
}
|
|
3963
|
-
.cax-overlaypanel.cax-overlaypanel-flipped:after {
|
|
3964
|
-
border-top-color: #18181b;
|
|
3965
|
-
}
|
|
3966
|
-
.cax-overlaypanel.cax-overlaypanel-flipped:before {
|
|
3967
|
-
border-top-color: #3f3f46;
|
|
3968
|
-
}
|
|
3969
|
-
|
|
3970
3690
|
.cax-tooltip .cax-tooltip-text {
|
|
3971
3691
|
background: var(--neutral-800);
|
|
3972
3692
|
color: #ffffff;
|
|
@@ -5045,58 +4765,7 @@
|
|
|
5045
4765
|
padding-left: 0.5rem;
|
|
5046
4766
|
padding-right: 0.5rem;
|
|
5047
4767
|
}
|
|
5048
|
-
|
|
5049
|
-
.cax-steps .cax-steps-item .cax-menuitem-link {
|
|
5050
|
-
background: transparent;
|
|
5051
|
-
transition:
|
|
5052
|
-
background-color 0.2s,
|
|
5053
|
-
color 0.2s,
|
|
5054
|
-
border-color 0.2s,
|
|
5055
|
-
box-shadow 0.2s,
|
|
5056
|
-
outline-color 0.2s;
|
|
5057
|
-
border-radius: 6px;
|
|
5058
|
-
background: #18181b;
|
|
5059
|
-
}
|
|
5060
|
-
.cax-steps .cax-steps-item .cax-menuitem-link .cax-steps-number {
|
|
5061
|
-
color: #a1a1aa;
|
|
5062
|
-
border: 1px solid #3f3f46;
|
|
5063
|
-
background: #18181b;
|
|
5064
|
-
min-width: 2rem;
|
|
5065
|
-
height: 2rem;
|
|
5066
|
-
line-height: 2rem;
|
|
5067
|
-
font-size: 1.143rem;
|
|
5068
|
-
z-index: 1;
|
|
5069
|
-
border-radius: 50%;
|
|
5070
|
-
}
|
|
5071
|
-
.cax-steps .cax-steps-item .cax-menuitem-link .cax-steps-title {
|
|
5072
|
-
margin-top: 0.5rem;
|
|
5073
|
-
color: #ffffff;
|
|
5074
|
-
}
|
|
5075
|
-
.cax-steps .cax-steps-item .cax-menuitem-link:not(.cax-disabled):focus-visible {
|
|
5076
|
-
outline: 1px solid var(--cax-focus-ring-color);
|
|
5077
|
-
outline-offset: 2px;
|
|
5078
|
-
box-shadow: none;
|
|
5079
|
-
}
|
|
5080
|
-
.cax-steps .cax-steps-item.cax-highlight .cax-steps-number {
|
|
5081
|
-
background: rgba(34, 211, 238, 0.16);
|
|
5082
|
-
color: rgba(255, 255, 255, 0.87);
|
|
5083
|
-
}
|
|
5084
|
-
.cax-steps .cax-steps-item.cax-highlight .cax-steps-title {
|
|
5085
|
-
font-weight: 500;
|
|
5086
|
-
color: #ffffff;
|
|
5087
|
-
}
|
|
5088
|
-
.cax-steps .cax-steps-item:before {
|
|
5089
|
-
content: ' ';
|
|
5090
|
-
border-top: 1px solid #3f3f46;
|
|
5091
|
-
width: 100%;
|
|
5092
|
-
top: 50%;
|
|
5093
|
-
left: 0;
|
|
5094
|
-
display: block;
|
|
5095
|
-
position: absolute;
|
|
5096
|
-
margin-top: -1rem;
|
|
5097
|
-
}
|
|
5098
|
-
|
|
5099
|
-
.cax-tabmenu .cax-tabmenu-nav {
|
|
4768
|
+
.cax-tabmenu .cax-tabmenu-nav {
|
|
5100
4769
|
background: #18181b;
|
|
5101
4770
|
border: 1px solid #3f3f46;
|
|
5102
4771
|
border-width: 0 0 1px 0;
|
|
@@ -5176,15 +4845,18 @@
|
|
|
5176
4845
|
}
|
|
5177
4846
|
|
|
5178
4847
|
.cax-tieredmenu {
|
|
5179
|
-
padding:
|
|
5180
|
-
color:
|
|
5181
|
-
border: 1px solid
|
|
5182
|
-
border-radius:
|
|
5183
|
-
width:
|
|
4848
|
+
padding: var(--space-150) var(--space-50) var(--space-150) var(--space-50);
|
|
4849
|
+
color: var(--white-100);
|
|
4850
|
+
border: 1px solid var(--neutral-200);
|
|
4851
|
+
border-radius: var(--radius-100);
|
|
4852
|
+
min-width: 9.5rem;
|
|
5184
4853
|
}
|
|
5185
4854
|
.cax-tieredmenu.cax-tieredmenu-overlay {
|
|
5186
4855
|
background: var(--white-100);
|
|
5187
|
-
border: 1px solid
|
|
4856
|
+
border: 1px solid var(--neutral-200);
|
|
4857
|
+
box-shadow:
|
|
4858
|
+
var(--shadow-lg-1) #16181d14,
|
|
4859
|
+
var(--shadow-lg-2) #16181d14;
|
|
5188
4860
|
}
|
|
5189
4861
|
.cax-tieredmenu .cax-tieredmenu-root-list {
|
|
5190
4862
|
outline: 0 none;
|
|
@@ -5199,7 +4871,7 @@
|
|
|
5199
4871
|
border-radius: 6px;
|
|
5200
4872
|
}
|
|
5201
4873
|
.cax-tieredmenu .cax-menuitem > .cax-menuitem-content {
|
|
5202
|
-
color:
|
|
4874
|
+
color: var(--white-100);
|
|
5203
4875
|
transition:
|
|
5204
4876
|
background-color 0.2s,
|
|
5205
4877
|
color 0.2s,
|
|
@@ -5740,23 +5412,6 @@
|
|
|
5740
5412
|
}
|
|
5741
5413
|
}
|
|
5742
5414
|
@layer cax {
|
|
5743
|
-
.cax-accordion .cax-accordion-header .cax-accordion-header-link {
|
|
5744
|
-
border-radius: 6px !important;
|
|
5745
|
-
flex-direction: row-reverse;
|
|
5746
|
-
justify-content: space-between;
|
|
5747
|
-
}
|
|
5748
|
-
.cax-accordion .cax-accordion-header .cax-accordion-header-link .cax-accordion-toggle-icon {
|
|
5749
|
-
transform: rotate(90deg);
|
|
5750
|
-
}
|
|
5751
|
-
.cax-accordion .cax-accordion-header.cax-highlight .cax-accordion-toggle-icon {
|
|
5752
|
-
transform: rotate(-180deg);
|
|
5753
|
-
}
|
|
5754
|
-
.cax-accordion .cax-accordion-header:not(.cax-disabled) .cax-accordion-header-link:focus-visible {
|
|
5755
|
-
outline-offset: -2px;
|
|
5756
|
-
}
|
|
5757
|
-
.cax-accordion cax-accordiontab:last-of-type .cax-accordion-tab {
|
|
5758
|
-
border-bottom: 0 none;
|
|
5759
|
-
}
|
|
5760
5415
|
|
|
5761
5416
|
.cax-autocomplete .cax-autocomplete-multiple-container {
|
|
5762
5417
|
padding: 0.25rem 0.25rem;
|
|
@@ -6006,73 +5661,6 @@
|
|
|
6006
5661
|
// padding: 0.5rem;
|
|
6007
5662
|
}
|
|
6008
5663
|
|
|
6009
|
-
.cax-inputnumber.cax-inputnumber-buttons-stacked {
|
|
6010
|
-
position: relative;
|
|
6011
|
-
}
|
|
6012
|
-
.cax-inputnumber.cax-inputnumber-buttons-stacked .cax-inputnumber-input {
|
|
6013
|
-
border-top-right-radius: 5px;
|
|
6014
|
-
border-bottom-right-radius: 5px;
|
|
6015
|
-
}
|
|
6016
|
-
.cax-inputnumber.cax-inputnumber-buttons-stacked .cax-inputnumber-button-group {
|
|
6017
|
-
position: absolute;
|
|
6018
|
-
top: 1px;
|
|
6019
|
-
right: 1px;
|
|
6020
|
-
height: calc(100% - 2px);
|
|
6021
|
-
}
|
|
6022
|
-
.cax-inputnumber.cax-inputnumber-buttons-stacked .cax-inputnumber-button {
|
|
6023
|
-
border-top-right-radius: 5px;
|
|
6024
|
-
border-bottom-right-radius: 5px;
|
|
6025
|
-
background-color: transparent;
|
|
6026
|
-
border: 0 none;
|
|
6027
|
-
color: #a1a1aa;
|
|
6028
|
-
}
|
|
6029
|
-
.cax-inputnumber.cax-inputnumber-buttons-stacked .cax-inputnumber-button:hover {
|
|
6030
|
-
background-color: rgba(255, 255, 255, 0.03);
|
|
6031
|
-
color: #ffffff;
|
|
6032
|
-
}
|
|
6033
|
-
.cax-inputnumber.cax-inputnumber-buttons-stacked .cax-inputnumber-button:active {
|
|
6034
|
-
background-color: rgba(255, 255, 255, 0.08);
|
|
6035
|
-
color: #ffffff;
|
|
6036
|
-
}
|
|
6037
|
-
.cax-inputnumber.cax-inputnumber-buttons-horizontal .cax-inputnumber-button {
|
|
6038
|
-
background-color: transparent;
|
|
6039
|
-
border: 1px solid #3f3f46;
|
|
6040
|
-
color: #a1a1aa;
|
|
6041
|
-
}
|
|
6042
|
-
.cax-inputnumber.cax-inputnumber-buttons-horizontal .cax-inputnumber-button:hover {
|
|
6043
|
-
background-color: rgba(255, 255, 255, 0.03);
|
|
6044
|
-
color: #ffffff;
|
|
6045
|
-
}
|
|
6046
|
-
.cax-inputnumber.cax-inputnumber-buttons-horizontal .cax-inputnumber-button:active {
|
|
6047
|
-
background-color: rgba(255, 255, 255, 0.08);
|
|
6048
|
-
color: #ffffff;
|
|
6049
|
-
}
|
|
6050
|
-
.cax-inputnumber.cax-inputnumber-buttons-horizontal .cax-inputnumber-button.cax-inputnumber-button-up {
|
|
6051
|
-
border-left: 0 none;
|
|
6052
|
-
}
|
|
6053
|
-
.cax-inputnumber.cax-inputnumber-buttons-horizontal .cax-inputnumber-button.cax-inputnumber-button-down {
|
|
6054
|
-
border-right: 0 none;
|
|
6055
|
-
}
|
|
6056
|
-
.cax-inputnumber.cax-inputnumber-buttons-vertical .cax-inputnumber-button {
|
|
6057
|
-
background-color: transparent;
|
|
6058
|
-
border: 1px solid #3f3f46;
|
|
6059
|
-
color: #a1a1aa;
|
|
6060
|
-
}
|
|
6061
|
-
.cax-inputnumber.cax-inputnumber-buttons-vertical .cax-inputnumber-button:hover {
|
|
6062
|
-
background-color: rgba(255, 255, 255, 0.03);
|
|
6063
|
-
color: #ffffff;
|
|
6064
|
-
}
|
|
6065
|
-
.cax-inputnumber.cax-inputnumber-buttons-vertical .cax-inputnumber-button:active {
|
|
6066
|
-
background-color: rgba(255, 255, 255, 0.08);
|
|
6067
|
-
color: #ffffff;
|
|
6068
|
-
}
|
|
6069
|
-
.cax-inputnumber.cax-inputnumber-buttons-vertical .cax-inputnumber-button.cax-inputnumber-button-up {
|
|
6070
|
-
border-bottom: 0 none;
|
|
6071
|
-
}
|
|
6072
|
-
.cax-inputnumber.cax-inputnumber-buttons-vertical .cax-inputnumber-button.cax-inputnumber-button-down {
|
|
6073
|
-
border-top: 0 none;
|
|
6074
|
-
}
|
|
6075
|
-
|
|
6076
5664
|
.cax-inputswitch .cax-inputswitch-slider {
|
|
6077
5665
|
border: 0 none;
|
|
6078
5666
|
}
|
|
@@ -6341,40 +5929,6 @@
|
|
|
6341
5929
|
border-top-left-radius: 6px;
|
|
6342
5930
|
}
|
|
6343
5931
|
|
|
6344
|
-
.cax-overlaypanel {
|
|
6345
|
-
box-shadow: none;
|
|
6346
|
-
}
|
|
6347
|
-
.cax-overlaypanel .cax-overlaypanel-content {
|
|
6348
|
-
padding: 0.75rem;
|
|
6349
|
-
}
|
|
6350
|
-
.cax-overlaypanel .cax-overlaypanel-close {
|
|
6351
|
-
width: 1.75rem;
|
|
6352
|
-
height: 1.75rem;
|
|
6353
|
-
color: #a1a1aa;
|
|
6354
|
-
border: 0 none;
|
|
6355
|
-
background: var(--white-100);
|
|
6356
|
-
border-radius: 50%;
|
|
6357
|
-
transition:
|
|
6358
|
-
background-color 0.2s,
|
|
6359
|
-
color 0.2s,
|
|
6360
|
-
border-color 0.2s,
|
|
6361
|
-
box-shadow 0.2s,
|
|
6362
|
-
outline-color 0.2s;
|
|
6363
|
-
position: absolute;
|
|
6364
|
-
top: 0.25rem;
|
|
6365
|
-
right: 0.25rem;
|
|
6366
|
-
}
|
|
6367
|
-
.cax-overlaypanel .cax-overlaypanel-close:enabled:hover {
|
|
6368
|
-
color: #ffffff;
|
|
6369
|
-
border-color: transparent;
|
|
6370
|
-
background: rgba(255, 255, 255, 0.03);
|
|
6371
|
-
}
|
|
6372
|
-
.cax-overlaypanel .cax-overlaypanel-close:focus-visible {
|
|
6373
|
-
outline: 1px solid var(--cax-focus-ring-color);
|
|
6374
|
-
outline-offset: 2px;
|
|
6375
|
-
box-shadow: none;
|
|
6376
|
-
}
|
|
6377
|
-
|
|
6378
5932
|
.cax-panel {
|
|
6379
5933
|
border: 1px solid #3f3f46;
|
|
6380
5934
|
border-radius: 6px;
|
|
@@ -6561,61 +6115,6 @@
|
|
|
6561
6115
|
.cax-stepper .cax-stepper-header.cax-highlight .cax-stepper-title {
|
|
6562
6116
|
color: #22d3ee;
|
|
6563
6117
|
}
|
|
6564
|
-
|
|
6565
|
-
.cax-steps .cax-steps-item .cax-menuitem-link .cax-steps-number {
|
|
6566
|
-
border-width: 2px;
|
|
6567
|
-
transition:
|
|
6568
|
-
background-color 0.2s,
|
|
6569
|
-
color 0.2s,
|
|
6570
|
-
border-color 0.2s,
|
|
6571
|
-
box-shadow 0.2s,
|
|
6572
|
-
outline-color 0.2s;
|
|
6573
|
-
}
|
|
6574
|
-
.cax-steps .cax-steps-item .cax-menuitem-link .cax-steps-title {
|
|
6575
|
-
font-weight: 500;
|
|
6576
|
-
transition:
|
|
6577
|
-
background-color 0.2s,
|
|
6578
|
-
color 0.2s,
|
|
6579
|
-
border-color 0.2s,
|
|
6580
|
-
box-shadow 0.2s,
|
|
6581
|
-
outline-color 0.2s;
|
|
6582
|
-
}
|
|
6583
|
-
.cax-steps .cax-steps-item .cax-steps-number {
|
|
6584
|
-
position: relative;
|
|
6585
|
-
font-weight: 500;
|
|
6586
|
-
}
|
|
6587
|
-
.cax-steps .cax-steps-item .cax-steps-number::after {
|
|
6588
|
-
content: ' ';
|
|
6589
|
-
position: absolute;
|
|
6590
|
-
width: 100%;
|
|
6591
|
-
height: 100%;
|
|
6592
|
-
border-radius: 50%;
|
|
6593
|
-
box-shadow:
|
|
6594
|
-
0px 0.5px 0px 0px rgba(0, 0, 0, 0.06),
|
|
6595
|
-
0px 1px 1px 0px rgba(0, 0, 0, 0.12);
|
|
6596
|
-
}
|
|
6597
|
-
.cax-steps .cax-steps-item.cax-highlight .cax-steps-number {
|
|
6598
|
-
background: #18181b;
|
|
6599
|
-
color: #22d3ee;
|
|
6600
|
-
}
|
|
6601
|
-
.cax-steps .cax-steps-item.cax-highlight .cax-steps-title {
|
|
6602
|
-
color: #22d3ee;
|
|
6603
|
-
}
|
|
6604
|
-
.cax-steps .cax-steps-item.cax-disabled {
|
|
6605
|
-
opacity: 1;
|
|
6606
|
-
}
|
|
6607
|
-
.cax-steps .cax-steps-item:before {
|
|
6608
|
-
border-top-width: 2px;
|
|
6609
|
-
margin-top: calc(-1rem + 1px);
|
|
6610
|
-
}
|
|
6611
|
-
.cax-steps .cax-steps-item:first-child::before {
|
|
6612
|
-
width: calc(50% + 1rem);
|
|
6613
|
-
transform: translateX(100%);
|
|
6614
|
-
}
|
|
6615
|
-
.cax-steps .cax-steps-item:last-child::before {
|
|
6616
|
-
width: 50%;
|
|
6617
|
-
}
|
|
6618
|
-
|
|
6619
6118
|
.cax-tabmenu .cax-tabmenu-ink-bar {
|
|
6620
6119
|
z-index: 1;
|
|
6621
6120
|
display: block;
|
|
@@ -6653,31 +6152,6 @@
|
|
|
6653
6152
|
.cax-terminal .cax-terminal-response {
|
|
6654
6153
|
margin: 2px 0;
|
|
6655
6154
|
}
|
|
6656
|
-
|
|
6657
|
-
.cax-timeline .cax-timeline-event-marker {
|
|
6658
|
-
display: inline-flex;
|
|
6659
|
-
align-items: center;
|
|
6660
|
-
justify-content: center;
|
|
6661
|
-
position: relative;
|
|
6662
|
-
}
|
|
6663
|
-
.cax-timeline .cax-timeline-event-marker::before {
|
|
6664
|
-
content: ' ';
|
|
6665
|
-
border-radius: 50%;
|
|
6666
|
-
width: 0.375rem;
|
|
6667
|
-
height: 0.375rem;
|
|
6668
|
-
background-color: #22d3ee;
|
|
6669
|
-
}
|
|
6670
|
-
.cax-timeline .cax-timeline-event-marker::after {
|
|
6671
|
-
content: ' ';
|
|
6672
|
-
position: absolute;
|
|
6673
|
-
width: 100%;
|
|
6674
|
-
height: 100%;
|
|
6675
|
-
border-radius: 50%;
|
|
6676
|
-
box-shadow:
|
|
6677
|
-
0px 0.5px 0px 0px rgba(0, 0, 0, 0.06),
|
|
6678
|
-
0px 1px 1px 0px rgba(0, 0, 0, 0.12);
|
|
6679
|
-
}
|
|
6680
|
-
|
|
6681
6155
|
.cax-togglebutton.cax-button {
|
|
6682
6156
|
padding: 0.25rem;
|
|
6683
6157
|
}
|
|
@@ -8338,7 +7812,7 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
|
|
|
8338
7812
|
font-weight: 500;
|
|
8339
7813
|
width: 100%;
|
|
8340
7814
|
min-width: 0;
|
|
8341
|
-
background:
|
|
7815
|
+
background: transparent;
|
|
8342
7816
|
padding: 8px 10px 8px 10px;
|
|
8343
7817
|
transition:
|
|
8344
7818
|
background-color 0.2s,
|
|
@@ -8347,7 +7821,6 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
|
|
|
8347
7821
|
box-shadow 0.2s,
|
|
8348
7822
|
outline-color 0.2s;
|
|
8349
7823
|
appearance: none;
|
|
8350
|
-
border-radius: 8px;
|
|
8351
7824
|
}
|
|
8352
7825
|
|
|
8353
7826
|
.cax-input-size-sm {
|
|
@@ -8512,7 +7985,6 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
|
|
|
8512
7985
|
}
|
|
8513
7986
|
.cax-inputtext {
|
|
8514
7987
|
border: 1px solid var(--neutral-200);
|
|
8515
|
-
|
|
8516
7988
|
&:hover {
|
|
8517
7989
|
border: 1px solid var(--neutral-300);
|
|
8518
7990
|
}
|
|
@@ -8599,7 +8071,7 @@ input.cax-input-invalid:not(:disabled):focus,
|
|
|
8599
8071
|
|
|
8600
8072
|
.cax-input-icon-left > .cax-icon-wrapper.cax-icon,
|
|
8601
8073
|
.cax-input-icon-left > i:first-of-type {
|
|
8602
|
-
left: 0.
|
|
8074
|
+
left: 0.6rem;
|
|
8603
8075
|
color: var(--neutral-750);
|
|
8604
8076
|
}
|
|
8605
8077
|
|
|
@@ -8990,7 +8462,7 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
8990
8462
|
}
|
|
8991
8463
|
|
|
8992
8464
|
.cax-paginator {
|
|
8993
|
-
background: transparent;
|
|
8465
|
+
background: transparent !important;
|
|
8994
8466
|
color: var(--neutral-900);
|
|
8995
8467
|
border-width: 0;
|
|
8996
8468
|
padding: 8px 16px;
|
|
@@ -9177,6 +8649,22 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
9177
8649
|
}
|
|
9178
8650
|
}
|
|
9179
8651
|
|
|
8652
|
+
.cax-splitbutton {
|
|
8653
|
+
border-radius: var(--radius-75);
|
|
8654
|
+
}
|
|
8655
|
+
.cax-splitbutton.cax-button-rounded {
|
|
8656
|
+
border-radius: var(--radius-400);
|
|
8657
|
+
}
|
|
8658
|
+
.cax-splitbutton.cax-button-rounded > .cax-button {
|
|
8659
|
+
border-radius: var(--radius-400);
|
|
8660
|
+
}
|
|
8661
|
+
.cax-splitbutton.cax-button-raised {
|
|
8662
|
+
box-shadow:
|
|
8663
|
+
0 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
8664
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
8665
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
8666
|
+
}
|
|
8667
|
+
|
|
9180
8668
|
.cax-button {
|
|
9181
8669
|
color: var(--white-100);
|
|
9182
8670
|
background: var(--primary-500);
|
|
@@ -9198,7 +8686,7 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
9198
8686
|
}
|
|
9199
8687
|
.cax-button:not(:disabled):active {
|
|
9200
8688
|
background: var(--primary-500);
|
|
9201
|
-
color: var(--
|
|
8689
|
+
color: var(--white-100);
|
|
9202
8690
|
border-color: var(--primary-500);
|
|
9203
8691
|
}
|
|
9204
8692
|
.cax-button.cax-button-outlined {
|
|
@@ -9270,14 +8758,7 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
9270
8758
|
.cax-button .cax-button-icon-top {
|
|
9271
8759
|
margin-bottom: var(--space-100);
|
|
9272
8760
|
}
|
|
9273
|
-
|
|
9274
|
-
margin-left: var(--space-100);
|
|
9275
|
-
min-width: 1rem;
|
|
9276
|
-
height: 1rem;
|
|
9277
|
-
line-height: 1rem;
|
|
9278
|
-
color: var(--white-100);
|
|
9279
|
-
background-color: var(--error-600);
|
|
9280
|
-
}
|
|
8761
|
+
|
|
9281
8762
|
.cax-button.cax-button-raised {
|
|
9282
8763
|
box-shadow:
|
|
9283
8764
|
0 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
@@ -9441,9 +8922,8 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
9441
8922
|
.cax-button.cax-button-secondary:not(:disabled):active,
|
|
9442
8923
|
.cax-button-group.cax-button-secondary > .cax-button:not(:disabled):active,
|
|
9443
8924
|
.cax-splitbutton.cax-button-secondary > .cax-button:not(:disabled):active {
|
|
9444
|
-
background: var(--neutral-
|
|
8925
|
+
background: var(--neutral-75);
|
|
9445
8926
|
color: var(--neutral-900);
|
|
9446
|
-
border-color: 1px solid var(--neutral-150);
|
|
9447
8927
|
}
|
|
9448
8928
|
.cax-button.cax-button-secondary.cax-button-outlined,
|
|
9449
8929
|
.cax-button-group.cax-button-secondary > .cax-button.cax-button-outlined,
|
|
@@ -10566,45 +10046,155 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
10566
10046
|
}
|
|
10567
10047
|
}
|
|
10568
10048
|
|
|
10569
|
-
.cax-
|
|
10570
|
-
|
|
10571
|
-
|
|
10572
|
-
|
|
10573
|
-
|
|
10574
|
-
|
|
10575
|
-
|
|
10576
|
-
|
|
10577
|
-
|
|
10578
|
-
|
|
10579
|
-
|
|
10049
|
+
.cax-steps .cax-steps-item .cax-menuitem-link {
|
|
10050
|
+
background: transparent;
|
|
10051
|
+
border-radius: 6px;
|
|
10052
|
+
}
|
|
10053
|
+
.cax-steps .cax-steps-item .cax-menuitem-link .cax-steps-number {
|
|
10054
|
+
color: var(--neutral-700);
|
|
10055
|
+
border: 1px solid var(--neutral-25);
|
|
10056
|
+
background: var(--neutral-25);
|
|
10057
|
+
min-width: 2rem;
|
|
10058
|
+
height: 2rem;
|
|
10059
|
+
line-height: 2rem;
|
|
10060
|
+
font-size: 1.143rem;
|
|
10061
|
+
z-index: 1;
|
|
10062
|
+
border-radius: 50%;
|
|
10063
|
+
}
|
|
10064
|
+
.cax-steps .cax-steps-item .cax-menuitem-link .cax-steps-title {
|
|
10065
|
+
margin-top: 0.5rem;
|
|
10066
|
+
color: var(--neutral-700);
|
|
10067
|
+
font-weight: 500;
|
|
10068
|
+
font-size: 16px;
|
|
10069
|
+
}
|
|
10070
|
+
.cax-steps .cax-steps-item .cax-menuitem-link:not(.cax-disabled):focus-visible {
|
|
10071
|
+
outline: 1px solid var(--cax-focus-ring-color);
|
|
10072
|
+
outline-offset: 2px;
|
|
10073
|
+
box-shadow: none;
|
|
10074
|
+
}
|
|
10075
|
+
.cax-steps .cax-steps-item.cax-highlight .cax-steps-number {
|
|
10076
|
+
background: rgba(34, 211, 238, 0.16);
|
|
10077
|
+
color: rgba(255, 255, 255, 0.87);
|
|
10580
10078
|
}
|
|
10581
10079
|
|
|
10582
|
-
.cax-
|
|
10583
|
-
|
|
10584
|
-
|
|
10080
|
+
.cax-steps .cax-steps-item.cax-highlight .cax-steps-title {
|
|
10081
|
+
font-weight: 500;
|
|
10082
|
+
color: var(--white-100);
|
|
10083
|
+
}
|
|
10084
|
+
.cax-steps .cax-steps-item:before {
|
|
10085
|
+
content: ' ';
|
|
10086
|
+
border-top: 1px solid var(--neutral-400);
|
|
10087
|
+
width: 100%;
|
|
10088
|
+
top: 50%;
|
|
10089
|
+
left: -50%;
|
|
10090
|
+
right: 50%;
|
|
10091
|
+
display: block;
|
|
10092
|
+
position: absolute;
|
|
10093
|
+
margin-top: -1rem;
|
|
10585
10094
|
}
|
|
10586
10095
|
|
|
10587
|
-
.cax-
|
|
10588
|
-
|
|
10589
|
-
border-color: var(--neutral-300);
|
|
10096
|
+
.cax-steps-item.cax-highlight::before {
|
|
10097
|
+
border-top: 1px solid var(--primary-500) !important;
|
|
10590
10098
|
}
|
|
10591
10099
|
|
|
10592
|
-
.cax-
|
|
10593
|
-
|
|
10594
|
-
border-color: var(--primary-500);
|
|
10100
|
+
.cax-steps-item:first-child::before {
|
|
10101
|
+
display: none;
|
|
10595
10102
|
}
|
|
10596
10103
|
|
|
10597
|
-
.cax-
|
|
10598
|
-
|
|
10599
|
-
|
|
10600
|
-
|
|
10601
|
-
|
|
10602
|
-
|
|
10603
|
-
|
|
10604
|
-
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10104
|
+
.cax-steps .cax-steps-item .cax-menuitem-link .cax-steps-number {
|
|
10105
|
+
border-width: 2px;
|
|
10106
|
+
transition:
|
|
10107
|
+
background-color 0.2s,
|
|
10108
|
+
color 0.2s,
|
|
10109
|
+
border-color 0.2s,
|
|
10110
|
+
box-shadow 0.2s,
|
|
10111
|
+
outline-color 0.2s;
|
|
10112
|
+
}
|
|
10113
|
+
.cax-steps .cax-steps-item .cax-menuitem-link .cax-steps-title {
|
|
10114
|
+
font-weight: 500;
|
|
10115
|
+
transition:
|
|
10116
|
+
background-color 0.2s,
|
|
10117
|
+
color 0.2s,
|
|
10118
|
+
border-color 0.2s,
|
|
10119
|
+
box-shadow 0.2s,
|
|
10120
|
+
outline-color 0.2s;
|
|
10121
|
+
}
|
|
10122
|
+
.cax-steps .cax-steps-item .cax-steps-number {
|
|
10123
|
+
position: relative;
|
|
10124
|
+
font-weight: 500;
|
|
10125
|
+
}
|
|
10126
|
+
.cax-steps .cax-steps-item .cax-steps-number::after {
|
|
10127
|
+
content: ' ';
|
|
10128
|
+
position: absolute;
|
|
10129
|
+
width: 100%;
|
|
10130
|
+
height: 100%;
|
|
10131
|
+
border-radius: 50%;
|
|
10132
|
+
box-shadow:
|
|
10133
|
+
0px 0.5px 0px 0px rgba(0, 0, 0, 0.06),
|
|
10134
|
+
0px 1px 1px 0px rgba(0, 0, 0, 0.12);
|
|
10135
|
+
}
|
|
10136
|
+
.cax-steps .cax-steps-item.cax-highlight .cax-steps-number {
|
|
10137
|
+
background: #f0f4fe;
|
|
10138
|
+
color: var(--primary-500);
|
|
10139
|
+
font-weight: 500;
|
|
10140
|
+
border: var(--primary-500);
|
|
10141
|
+
}
|
|
10142
|
+
.cax-steps .cax-steps-item.cax-highlight .cax-steps-title {
|
|
10143
|
+
color: var(--primary-500);
|
|
10144
|
+
}
|
|
10145
|
+
.cax-steps .cax-steps-item.cax-disabled {
|
|
10146
|
+
opacity: 1;
|
|
10147
|
+
}
|
|
10148
|
+
.cax-steps .cax-steps-item:before {
|
|
10149
|
+
border-top-width: 1px;
|
|
10150
|
+
margin-top: calc(-1rem + 1px);
|
|
10151
|
+
}
|
|
10152
|
+
|
|
10153
|
+
.cax-toggleswitch-track {
|
|
10154
|
+
display: block;
|
|
10155
|
+
height: 24px;
|
|
10156
|
+
width: 40px;
|
|
10157
|
+
border-radius: 9999px;
|
|
10158
|
+
cursor: pointer;
|
|
10159
|
+
transition:
|
|
10160
|
+
background-color 0.2s,
|
|
10161
|
+
border-color 0.2s;
|
|
10162
|
+
position: relative;
|
|
10163
|
+
background-color: var(--neutral-50);
|
|
10164
|
+
border: 1px solid var(--neutral-100);
|
|
10165
|
+
}
|
|
10166
|
+
|
|
10167
|
+
.cax-toggleswitch:checked ~ .cax-toggleswitch-track {
|
|
10168
|
+
background-color: var(--primary-500);
|
|
10169
|
+
border: 1px solid var(--primary-500);
|
|
10170
|
+
}
|
|
10171
|
+
|
|
10172
|
+
/* Update hover styles for unchecked state */
|
|
10173
|
+
.cax-toggleswitchmaindiv:hover .cax-toggleswitch-track:not(:has(~ .cax-toggleswitch:checked)),
|
|
10174
|
+
.cax-toggle-thumb:hover ~ .cax-toggleswitch-track:not(:has(~ .cax-toggleswitch:checked)) {
|
|
10175
|
+
background-color: var(--neutral-100);
|
|
10176
|
+
border-color: var(--neutral-300);
|
|
10177
|
+
}
|
|
10178
|
+
|
|
10179
|
+
/* Consolidate hover styles for checked state */
|
|
10180
|
+
.cax-toggleswitch:checked ~ .cax-toggleswitch-track,
|
|
10181
|
+
.cax-toggleswitch:checked ~ .cax-toggleswitchmaindiv:hover .cax-toggleswitch-track,
|
|
10182
|
+
.cax-toggleswitch:checked ~ .cax-toggle-thumb:hover ~ .cax-toggleswitch-track {
|
|
10183
|
+
background-color: var(--primary-600) !important;
|
|
10184
|
+
border-color: var(--primary-600) !important;
|
|
10185
|
+
}
|
|
10186
|
+
|
|
10187
|
+
.cax-toggle-thumb {
|
|
10188
|
+
position: absolute;
|
|
10189
|
+
display: flex;
|
|
10190
|
+
cursor: pointer;
|
|
10191
|
+
align-items: center;
|
|
10192
|
+
justify-content: center;
|
|
10193
|
+
height: 16px;
|
|
10194
|
+
width: 16px;
|
|
10195
|
+
top: 50%;
|
|
10196
|
+
left: 3px;
|
|
10197
|
+
transform: translateY(-50%);
|
|
10608
10198
|
border-radius: 50%;
|
|
10609
10199
|
background-color: var(--white-100);
|
|
10610
10200
|
transition:
|
|
@@ -10618,10 +10208,6 @@ cax-inputmask.cax-inputmask-clearable .cax-inputmask-clear-icon {
|
|
|
10618
10208
|
background-color: var(--white-100);
|
|
10619
10209
|
}
|
|
10620
10210
|
|
|
10621
|
-
.cax-toggleswitch:checked ~ .cax-toggle-thumb:hover {
|
|
10622
|
-
box-shadow: 0 0 6px var(--primary-600);
|
|
10623
|
-
}
|
|
10624
|
-
|
|
10625
10211
|
.cax-toggleswitch-size-sm {
|
|
10626
10212
|
.cax-toggleswitch-track {
|
|
10627
10213
|
height: 15px;
|
|
@@ -11447,3 +11033,851 @@ cax-dropdown.ng-dirty.ng-invalid > .cax-dropdown {
|
|
|
11447
11033
|
.cax-toast .cax-toast-message.cax-toast-message-contrast .cax-toast-icon-close:hover {
|
|
11448
11034
|
background: #f4f4f5;
|
|
11449
11035
|
}
|
|
11036
|
+
.cax-skeleton {
|
|
11037
|
+
background-color: var(--neutral-100);
|
|
11038
|
+
border-radius: 6px;
|
|
11039
|
+
animation: cax-skeleton-fade 1.2s ease-in-out infinite;
|
|
11040
|
+
}
|
|
11041
|
+
|
|
11042
|
+
@keyframes cax-skeleton-fade {
|
|
11043
|
+
0% {
|
|
11044
|
+
background-color: var(--neutral-100);
|
|
11045
|
+
}
|
|
11046
|
+
50% {
|
|
11047
|
+
background-color: var(--grey-400);
|
|
11048
|
+
}
|
|
11049
|
+
100% {
|
|
11050
|
+
background-color: var(--neutral-100);
|
|
11051
|
+
}
|
|
11052
|
+
}
|
|
11053
|
+
|
|
11054
|
+
.cax-overlaypanel {
|
|
11055
|
+
background: var(--white-100);
|
|
11056
|
+
color: var(--neutral-900);
|
|
11057
|
+
border: 1px solid var(--neutral-300);
|
|
11058
|
+
border-radius: 8px;
|
|
11059
|
+
}
|
|
11060
|
+
.cax-overlaypanel .cax-overlaypanel-content {
|
|
11061
|
+
padding: 0 1.125rem 1.125rem 1.125rem;
|
|
11062
|
+
}
|
|
11063
|
+
.cax-overlaypanel .cax-overlaypanel-close {
|
|
11064
|
+
background: transparent;
|
|
11065
|
+
color: var(--neutral-300);
|
|
11066
|
+
width: 1.75rem;
|
|
11067
|
+
height: 1.75rem;
|
|
11068
|
+
font-size: 20px;
|
|
11069
|
+
transition:
|
|
11070
|
+
background-color 0.2s,
|
|
11071
|
+
color 0.2s,
|
|
11072
|
+
border-color 0.2s,
|
|
11073
|
+
box-shadow 0.2s,
|
|
11074
|
+
outline-color 0.2s;
|
|
11075
|
+
border-radius: 50%;
|
|
11076
|
+
position: absolute;
|
|
11077
|
+
top: -0.875rem;
|
|
11078
|
+
right: -0.875rem;
|
|
11079
|
+
}
|
|
11080
|
+
.cax-overlaypanel:after {
|
|
11081
|
+
border: solid transparent;
|
|
11082
|
+
border-color: rgba(24, 24, 27, 0);
|
|
11083
|
+
border-bottom-color: #18181b;
|
|
11084
|
+
}
|
|
11085
|
+
.cax-overlaypanel:before {
|
|
11086
|
+
border: solid transparent;
|
|
11087
|
+
border-color: rgba(63, 63, 70, 0);
|
|
11088
|
+
border-bottom-color: #3c3c43;
|
|
11089
|
+
}
|
|
11090
|
+
.cax-overlaypanel.cax-overlaypanel-flipped:after {
|
|
11091
|
+
border-top-color: #18181b;
|
|
11092
|
+
}
|
|
11093
|
+
.cax-overlaypanel.cax-overlaypanel-flipped:before {
|
|
11094
|
+
border-top-color: #3f3f46;
|
|
11095
|
+
}
|
|
11096
|
+
|
|
11097
|
+
.cax-overlaypanel {
|
|
11098
|
+
box-shadow: none;
|
|
11099
|
+
}
|
|
11100
|
+
.cax-overlaypanel .cax-overlaypanel-content {
|
|
11101
|
+
padding: 12px;
|
|
11102
|
+
}
|
|
11103
|
+
.cax-overlaypanel .cax-overlaypanel-close {
|
|
11104
|
+
width: 1.75rem;
|
|
11105
|
+
height: 1.75rem;
|
|
11106
|
+
border: 0 none;
|
|
11107
|
+
border-radius: 50%;
|
|
11108
|
+
transition:
|
|
11109
|
+
background-color 0.2s,
|
|
11110
|
+
color 0.2s,
|
|
11111
|
+
border-color 0.2s,
|
|
11112
|
+
box-shadow 0.2s,
|
|
11113
|
+
outline-color 0.2s;
|
|
11114
|
+
position: absolute;
|
|
11115
|
+
top: 0.25rem;
|
|
11116
|
+
right: 0.25rem;
|
|
11117
|
+
}
|
|
11118
|
+
|
|
11119
|
+
.cax-overlaypanel .cax-overlaypanel-close:focus-visible {
|
|
11120
|
+
outline: 1px solid var(--cax-focus-ring-color);
|
|
11121
|
+
outline-offset: 2px;
|
|
11122
|
+
box-shadow: none;
|
|
11123
|
+
}
|
|
11124
|
+
|
|
11125
|
+
|
|
11126
|
+
.cax-accordion .cax-accordion-header .cax-accordion-header-link {
|
|
11127
|
+
padding: var(--space-200) 17.5px var(--space-200) 17.5px;
|
|
11128
|
+
border: 1px solid var(--neutral-200);
|
|
11129
|
+
color: var(--neutral-900);
|
|
11130
|
+
background: var(--neutral-75);
|
|
11131
|
+
font-weight: 600;
|
|
11132
|
+
border-radius: 6px;
|
|
11133
|
+
font-size: 20px;
|
|
11134
|
+
border-bottom: 1px solid var(--neutral-200);
|
|
11135
|
+
transition:
|
|
11136
|
+
background-color 0.2s,
|
|
11137
|
+
color 0.2s,
|
|
11138
|
+
border-color 0.2s,
|
|
11139
|
+
box-shadow 0.2s,
|
|
11140
|
+
outline-color 0.2s;
|
|
11141
|
+
}
|
|
11142
|
+
.cax-accordion .cax-accordion-header .cax-accordion-header-link .cax-accordion-toggle-icon {
|
|
11143
|
+
margin-right: 0.5rem;
|
|
11144
|
+
}
|
|
11145
|
+
|
|
11146
|
+
.cax-accordion .cax-accordion-header:not(.cax-disabled).cax-highlight .cax-accordion-header-link {
|
|
11147
|
+
background: var(--neutral-75);
|
|
11148
|
+
border: 1px solid var(--neutral-200);
|
|
11149
|
+
color: var(--neutral-900);
|
|
11150
|
+
border-bottom-right-radius: 0;
|
|
11151
|
+
border-bottom-left-radius: 0;
|
|
11152
|
+
}
|
|
11153
|
+
|
|
11154
|
+
.cax-accordion .cax-accordion-content {
|
|
11155
|
+
padding: 0 1.125rem 1.125rem 1.125rem;
|
|
11156
|
+
border: 1px solid #e0e5eb;
|
|
11157
|
+
background: var(--white-100);
|
|
11158
|
+
color: var(--neutral-900);
|
|
11159
|
+
font-size: 20px;
|
|
11160
|
+
border-top-right-radius: 0;
|
|
11161
|
+
border-top-left-radius: 0;
|
|
11162
|
+
border-bottom-right-radius: 6px;
|
|
11163
|
+
border-bottom-left-radius: 6px;
|
|
11164
|
+
}
|
|
11165
|
+
.cax-accordion cax-accordiontab .cax-accordion-tab {
|
|
11166
|
+
margin-bottom: 0;
|
|
11167
|
+
}
|
|
11168
|
+
.cax-accordion cax-accordiontab .cax-accordion-header .cax-accordion-header-link {
|
|
11169
|
+
border-radius: 0;
|
|
11170
|
+
}
|
|
11171
|
+
.cax-accordion cax-accordiontab .cax-accordion-content {
|
|
11172
|
+
border-radius: 0;
|
|
11173
|
+
}
|
|
11174
|
+
.cax-accordion cax-accordiontab:not(:first-child) .cax-accordion-header .cax-accordion-header-link {
|
|
11175
|
+
border-top: 0 none;
|
|
11176
|
+
}
|
|
11177
|
+
.cax-accordion cax-accordiontab:not(:first-child) .cax-accordion-header:not(.cax-highlight):not(.cax-disabled):hover .cax-accordion-header-link,
|
|
11178
|
+
.cax-accordion cax-accordiontab:not(:first-child) .cax-accordion-header:not(.cax-disabled).cax-highlight:hover .cax-accordion-header-link {
|
|
11179
|
+
border-top: 0 none;
|
|
11180
|
+
}
|
|
11181
|
+
.cax-accordion cax-accordiontab:first-child .cax-accordion-header .cax-accordion-header-link {
|
|
11182
|
+
border-top-right-radius: var(--radius-150);
|
|
11183
|
+
border-top-left-radius: var(--radius-150);
|
|
11184
|
+
}
|
|
11185
|
+
.cax-accordion cax-accordiontab:last-child .cax-accordion-header:not(.cax-highlight) .cax-accordion-header-link {
|
|
11186
|
+
border-bottom-right-radius: var(--radius-150);
|
|
11187
|
+
border-bottom-left-radius: var(--radius-150);
|
|
11188
|
+
}
|
|
11189
|
+
.cax-accordion cax-accordiontab:last-child .cax-accordion-content {
|
|
11190
|
+
border-bottom-right-radius: var(--radius-150);
|
|
11191
|
+
border-bottom-left-radius: var(--radius-150);
|
|
11192
|
+
}
|
|
11193
|
+
|
|
11194
|
+
.cax-accordion .cax-accordion-header .cax-accordion-header-link {
|
|
11195
|
+
// border-radius: 6px !important;
|
|
11196
|
+
flex-direction: row-reverse;
|
|
11197
|
+
justify-content: space-between;
|
|
11198
|
+
}
|
|
11199
|
+
.cax-accordion .cax-accordion-header .cax-accordion-header-link .cax-accordion-toggle-icon {
|
|
11200
|
+
transform: rotate(90deg);
|
|
11201
|
+
}
|
|
11202
|
+
.cax-accordion .cax-accordion-header.cax-highlight .cax-accordion-toggle-icon {
|
|
11203
|
+
transform: rotate(-180deg);
|
|
11204
|
+
}
|
|
11205
|
+
.cax-accordion .cax-accordion-header:not(.cax-disabled) .cax-accordion-header-link:focus-visible {
|
|
11206
|
+
outline-offset: -2px;
|
|
11207
|
+
}
|
|
11208
|
+
.cax-accordion cax-accordiontab:last-of-type .cax-accordion-tab {
|
|
11209
|
+
border-bottom: 0 none;
|
|
11210
|
+
}
|
|
11211
|
+
|
|
11212
|
+
.cax-timeline .cax-timeline-event-marker {
|
|
11213
|
+
border: 1px solid var(--primary-500);
|
|
11214
|
+
border-radius: 50%;
|
|
11215
|
+
width: 1.125rem;
|
|
11216
|
+
height: 1.125rem;
|
|
11217
|
+
background-color: var(--primary-25);
|
|
11218
|
+
}
|
|
11219
|
+
.cax-timeline .cax-timeline-event-connector {
|
|
11220
|
+
background-color: var(--primary-500);
|
|
11221
|
+
}
|
|
11222
|
+
.cax-timeline.cax-timeline-vertical .cax-timeline-event-opposite,
|
|
11223
|
+
.cax-timeline.cax-timeline-vertical .cax-timeline-event-content {
|
|
11224
|
+
padding-bottom: 1rem;
|
|
11225
|
+
}
|
|
11226
|
+
|
|
11227
|
+
.cax-timeline-event-content:hover {
|
|
11228
|
+
background: var(--neutral-75);
|
|
11229
|
+
}
|
|
11230
|
+
|
|
11231
|
+
.cax-timeline.cax-timeline-vertical .cax-timeline-event-connector {
|
|
11232
|
+
width: 1px;
|
|
11233
|
+
}
|
|
11234
|
+
.cax-timeline.cax-timeline-horizontal .cax-timeline-event-opposite,
|
|
11235
|
+
.cax-timeline.cax-timeline-horizontal .cax-timeline-event-content {
|
|
11236
|
+
padding: 1rem 0;
|
|
11237
|
+
}
|
|
11238
|
+
.cax-timeline.cax-timeline-horizontal .cax-timeline-event-connector {
|
|
11239
|
+
height: 2px;
|
|
11240
|
+
}
|
|
11241
|
+
.cax-timeline .cax-timeline-event-marker {
|
|
11242
|
+
display: inline-flex;
|
|
11243
|
+
align-items: center;
|
|
11244
|
+
justify-content: center;
|
|
11245
|
+
position: relative;
|
|
11246
|
+
color: var(--primary-500);
|
|
11247
|
+
font-size: 10px;
|
|
11248
|
+
font-weight: 600;
|
|
11249
|
+
}
|
|
11250
|
+
.cax-timeline .cax-timeline-event-marker::after {
|
|
11251
|
+
content: ' ';
|
|
11252
|
+
position: absolute;
|
|
11253
|
+
width: 100%;
|
|
11254
|
+
height: 100%;
|
|
11255
|
+
border-radius: 50%;
|
|
11256
|
+
box-shadow:
|
|
11257
|
+
0px 0.5px 0px 0px rgba(0, 0, 0, 0.06),
|
|
11258
|
+
0px 1px 1px 0px rgba(0, 0, 0, 0.12);
|
|
11259
|
+
}
|
|
11260
|
+
|
|
11261
|
+
.cax-inputnumber {
|
|
11262
|
+
position: relative;
|
|
11263
|
+
display: inline-flex;
|
|
11264
|
+
align-items: center;
|
|
11265
|
+
.cax-inputnumber-button {
|
|
11266
|
+
width: 37px;
|
|
11267
|
+
border: 1px solid var(--neutral-150);
|
|
11268
|
+
}
|
|
11269
|
+
// Modify button layouts
|
|
11270
|
+
&.cax-inputnumber-buttons-stacked {
|
|
11271
|
+
.cax-inputnumber-button-group {
|
|
11272
|
+
position: relative;
|
|
11273
|
+
display: flex;
|
|
11274
|
+
flex-direction: column;
|
|
11275
|
+
border: 1px solid var(--neutral-150);
|
|
11276
|
+
border-radius: 0px 8px 8px 0px;
|
|
11277
|
+
height: 32px;
|
|
11278
|
+
.cax-button {
|
|
11279
|
+
min-width: 37px;
|
|
11280
|
+
height: 15.5px;
|
|
11281
|
+
border: none;
|
|
11282
|
+
i,
|
|
11283
|
+
.cax-icon {
|
|
11284
|
+
display: inline-flex;
|
|
11285
|
+
font-size: 1rem;
|
|
11286
|
+
}
|
|
11287
|
+
&:active,
|
|
11288
|
+
&:focus {
|
|
11289
|
+
position: relative;
|
|
11290
|
+
z-index: 1;
|
|
11291
|
+
|
|
11292
|
+
&::after {
|
|
11293
|
+
content: '';
|
|
11294
|
+
position: absolute;
|
|
11295
|
+
left: -1px;
|
|
11296
|
+
right: -1px;
|
|
11297
|
+
height: 100%;
|
|
11298
|
+
border: 1px solid var(--blue-500);
|
|
11299
|
+
}
|
|
11300
|
+
}
|
|
11301
|
+
|
|
11302
|
+
&:first-child:active::after,
|
|
11303
|
+
&:first-child:focus::after {
|
|
11304
|
+
top: -1px;
|
|
11305
|
+
border-radius: 0 8px 0 0;
|
|
11306
|
+
}
|
|
11307
|
+
|
|
11308
|
+
&:last-child:active::after,
|
|
11309
|
+
&:last-child:focus::after {
|
|
11310
|
+
bottom: -1px;
|
|
11311
|
+
border-radius: 0 0 8px 0;
|
|
11312
|
+
}
|
|
11313
|
+
}
|
|
11314
|
+
|
|
11315
|
+
// Remove previous border color changes
|
|
11316
|
+
&:has(.cax-button:active),
|
|
11317
|
+
&:has(.cax-button:focus) {
|
|
11318
|
+
border-color: var(--neutral-150);
|
|
11319
|
+
}
|
|
11320
|
+
}
|
|
11321
|
+
}
|
|
11322
|
+
|
|
11323
|
+
&.cax-inputnumber-buttons-horizontal {
|
|
11324
|
+
.cax-button.cax-inputnumber-button {
|
|
11325
|
+
min-width: 32px;
|
|
11326
|
+
height: 32px;
|
|
11327
|
+
display: flex;
|
|
11328
|
+
align-items: center;
|
|
11329
|
+
justify-content: center;
|
|
11330
|
+
|
|
11331
|
+
i,
|
|
11332
|
+
.cax-icon {
|
|
11333
|
+
display: inline-flex;
|
|
11334
|
+
font-size: 1.5rem;
|
|
11335
|
+
}
|
|
11336
|
+
}
|
|
11337
|
+
.cax-inputnumber-input {
|
|
11338
|
+
padding: 7px 10.5px;
|
|
11339
|
+
}
|
|
11340
|
+
|
|
11341
|
+
.cax-input-prefix,
|
|
11342
|
+
.cax-input-prefix-icon {
|
|
11343
|
+
display: none;
|
|
11344
|
+
}
|
|
11345
|
+
}
|
|
11346
|
+
|
|
11347
|
+
&.cax-inputnumber-buttons-vertical {
|
|
11348
|
+
.cax-input-prefix,
|
|
11349
|
+
.cax-input-prefix-icon {
|
|
11350
|
+
display: none;
|
|
11351
|
+
}
|
|
11352
|
+
}
|
|
11353
|
+
|
|
11354
|
+
// Input styles
|
|
11355
|
+
.cax-inputnumber-input {
|
|
11356
|
+
width: 100%;
|
|
11357
|
+
height: 32px;
|
|
11358
|
+
padding: 7px 10.5px;
|
|
11359
|
+
border: 1px solid var(--neutral-200);
|
|
11360
|
+
transition: all 0.2s;
|
|
11361
|
+
&:hover {
|
|
11362
|
+
border-color: var(--neutral-300);
|
|
11363
|
+
}
|
|
11364
|
+
&:focus {
|
|
11365
|
+
outline: none;
|
|
11366
|
+
border-color: var(--blue-500);
|
|
11367
|
+
}
|
|
11368
|
+
&:disabled {
|
|
11369
|
+
opacity: 0.6;
|
|
11370
|
+
cursor: not-allowed;
|
|
11371
|
+
|
|
11372
|
+
& + .cax-input-prefix,
|
|
11373
|
+
& + .cax-input-prefix-icon,
|
|
11374
|
+
& ~ .cax-input-suffix,
|
|
11375
|
+
& ~ i,
|
|
11376
|
+
& ~ .cax-icon {
|
|
11377
|
+
opacity: 0.6;
|
|
11378
|
+
cursor: not-allowed;
|
|
11379
|
+
color: var(--neutral-400);
|
|
11380
|
+
}
|
|
11381
|
+
}
|
|
11382
|
+
}
|
|
11383
|
+
|
|
11384
|
+
&.cax-input-icon-left {
|
|
11385
|
+
.cax-inputnumber-input {
|
|
11386
|
+
padding-left: 2.5rem;
|
|
11387
|
+
}
|
|
11388
|
+
}
|
|
11389
|
+
|
|
11390
|
+
&.cax-disabled {
|
|
11391
|
+
.cax-input-prefix,
|
|
11392
|
+
.cax-input-prefix-icon,
|
|
11393
|
+
.cax-input-suffix,
|
|
11394
|
+
i,
|
|
11395
|
+
.cax-icon {
|
|
11396
|
+
opacity: 0.6;
|
|
11397
|
+
cursor: not-allowed;
|
|
11398
|
+
color: var(--neutral-400);
|
|
11399
|
+
}
|
|
11400
|
+
}
|
|
11401
|
+
|
|
11402
|
+
input.cax-inputnumber-input {
|
|
11403
|
+
font-weight: 500;
|
|
11404
|
+
box-shadow: none;
|
|
11405
|
+
&[inputmode='symbol'] {
|
|
11406
|
+
letter-spacing: 0px;
|
|
11407
|
+
}
|
|
11408
|
+
&[inputmode='decimal'] {
|
|
11409
|
+
letter-spacing: 0px;
|
|
11410
|
+
}
|
|
11411
|
+
}
|
|
11412
|
+
|
|
11413
|
+
.cax-input-prefix,
|
|
11414
|
+
.cax-input-prefix-icon {
|
|
11415
|
+
position: absolute;
|
|
11416
|
+
top: 50%;
|
|
11417
|
+
left: 0.75rem;
|
|
11418
|
+
transform: translateY(-50%);
|
|
11419
|
+
color: var(--neutral-750);
|
|
11420
|
+
z-index: 1;
|
|
11421
|
+
display: flex;
|
|
11422
|
+
align-items: center;
|
|
11423
|
+
justify-content: center;
|
|
11424
|
+
|
|
11425
|
+
i {
|
|
11426
|
+
display: flex;
|
|
11427
|
+
align-items: center;
|
|
11428
|
+
justify-content: center;
|
|
11429
|
+
width: 16px;
|
|
11430
|
+
height: 16px;
|
|
11431
|
+
margin-right: 4px;
|
|
11432
|
+
}
|
|
11433
|
+
& + .cax-inputnumber-input {
|
|
11434
|
+
letter-spacing: 0px;
|
|
11435
|
+
padding-left: 2.75rem;
|
|
11436
|
+
text-indent: 20px;
|
|
11437
|
+
&[inputmode='symbol'] {
|
|
11438
|
+
text-indent: 24px;
|
|
11439
|
+
}
|
|
11440
|
+
}
|
|
11441
|
+
}
|
|
11442
|
+
|
|
11443
|
+
&.cax-input-icon-left {
|
|
11444
|
+
.cax-inputnumber-input {
|
|
11445
|
+
padding-left: 2.5rem;
|
|
11446
|
+
}
|
|
11447
|
+
}
|
|
11448
|
+
.cax-inputnumber-input {
|
|
11449
|
+
&:not(.cax-filled) {
|
|
11450
|
+
&::placeholder {
|
|
11451
|
+
opacity: 1;
|
|
11452
|
+
}
|
|
11453
|
+
}
|
|
11454
|
+
}
|
|
11455
|
+
|
|
11456
|
+
.cax-input-prefix,
|
|
11457
|
+
.cax-input-prefix-icon {
|
|
11458
|
+
position: absolute;
|
|
11459
|
+
left: 0.75rem;
|
|
11460
|
+
transform: translateY(-50%);
|
|
11461
|
+
color: var(--neutral-750);
|
|
11462
|
+
z-index: 1;
|
|
11463
|
+
display: flex;
|
|
11464
|
+
font-size: large;
|
|
11465
|
+
align-items: center;
|
|
11466
|
+
& + .cax-inputnumber-input {
|
|
11467
|
+
padding-left: 0.7rem;
|
|
11468
|
+
&::before {
|
|
11469
|
+
content: '\00a0';
|
|
11470
|
+
display: inline;
|
|
11471
|
+
}
|
|
11472
|
+
}
|
|
11473
|
+
}
|
|
11474
|
+
|
|
11475
|
+
&.cax-inputnumber-buttons-stacked,
|
|
11476
|
+
&.cax-inputnumber-buttons-horizontal,
|
|
11477
|
+
&.cax-inputnumber-buttons-vertical {
|
|
11478
|
+
.cax-inputnumber-input {
|
|
11479
|
+
padding: 7px 10.5px;
|
|
11480
|
+
}
|
|
11481
|
+
|
|
11482
|
+
&.cax-input-icon-left .cax-inputnumber-input {
|
|
11483
|
+
padding-left: 0.7rem;
|
|
11484
|
+
}
|
|
11485
|
+
}
|
|
11486
|
+
|
|
11487
|
+
&.cax-inputnumber-buttons-horizontal {
|
|
11488
|
+
.cax-inputnumber-input {
|
|
11489
|
+
padding: 7px 10.5px;
|
|
11490
|
+
}
|
|
11491
|
+
|
|
11492
|
+
.cax-input-prefix,
|
|
11493
|
+
.cax-input-prefix-icon {
|
|
11494
|
+
display: none;
|
|
11495
|
+
}
|
|
11496
|
+
}
|
|
11497
|
+
|
|
11498
|
+
&.cax-inputnumber-buttons-vertical {
|
|
11499
|
+
.cax-inputnumber-input {
|
|
11500
|
+
padding: 7px 10.5px;
|
|
11501
|
+
}
|
|
11502
|
+
|
|
11503
|
+
.cax-input-prefix,
|
|
11504
|
+
.cax-input-prefix-icon {
|
|
11505
|
+
display: none;
|
|
11506
|
+
}
|
|
11507
|
+
}
|
|
11508
|
+
|
|
11509
|
+
&.cax-inputnumber-buttons-stacked {
|
|
11510
|
+
.cax-inputnumber-input {
|
|
11511
|
+
padding: 7px 10.5px;
|
|
11512
|
+
}
|
|
11513
|
+
|
|
11514
|
+
&.cax-input-icon-left {
|
|
11515
|
+
.cax-input-prefix,
|
|
11516
|
+
.cax-input-prefix-icon {
|
|
11517
|
+
display: flex;
|
|
11518
|
+
}
|
|
11519
|
+
|
|
11520
|
+
.cax-inputnumber-input {
|
|
11521
|
+
padding-left: 0.7rem;
|
|
11522
|
+
}
|
|
11523
|
+
}
|
|
11524
|
+
}
|
|
11525
|
+
|
|
11526
|
+
input.cax-inputnumber-input {
|
|
11527
|
+
font-weight: 500;
|
|
11528
|
+
&[inputmode='symbol'] {
|
|
11529
|
+
padding-left: 2.25rem;
|
|
11530
|
+
word-spacing: 0.25rem;
|
|
11531
|
+
}
|
|
11532
|
+
}
|
|
11533
|
+
|
|
11534
|
+
&.cax-inputnumber-buttons-stacked {
|
|
11535
|
+
.cax-inputnumber-button-group {
|
|
11536
|
+
.cax-button {
|
|
11537
|
+
position: relative;
|
|
11538
|
+
min-width: 37px;
|
|
11539
|
+
height: 15.5px;
|
|
11540
|
+
border: none;
|
|
11541
|
+
|
|
11542
|
+
&:first-child {
|
|
11543
|
+
border-radius: 0 8px 0 0;
|
|
11544
|
+
border-bottom: 1px solid var(--neutral-150);
|
|
11545
|
+
|
|
11546
|
+
&:active,
|
|
11547
|
+
&:focus {
|
|
11548
|
+
border-color: var(--neutral-150);
|
|
11549
|
+
border-radius: 0 8px 0 0;
|
|
11550
|
+
}
|
|
11551
|
+
}
|
|
11552
|
+
|
|
11553
|
+
&:last-child {
|
|
11554
|
+
border-radius: 0 0 8px 0;
|
|
11555
|
+
|
|
11556
|
+
&:active,
|
|
11557
|
+
&:focus {
|
|
11558
|
+
border-color: var(--neutral-150);
|
|
11559
|
+
border-radius: 0 0 8px 0;
|
|
11560
|
+
}
|
|
11561
|
+
}
|
|
11562
|
+
|
|
11563
|
+
&:active,
|
|
11564
|
+
&:focus {
|
|
11565
|
+
border: 1px solid var(--neutral-150);
|
|
11566
|
+
z-index: 1;
|
|
11567
|
+
}
|
|
11568
|
+
|
|
11569
|
+
i,
|
|
11570
|
+
.cax-icon {
|
|
11571
|
+
display: inline-flex;
|
|
11572
|
+
font-size: 1.5rem;
|
|
11573
|
+
}
|
|
11574
|
+
}
|
|
11575
|
+
}
|
|
11576
|
+
}
|
|
11577
|
+
|
|
11578
|
+
&.cax-inputnumber-buttons-stacked {
|
|
11579
|
+
.cax-inputnumber-input {
|
|
11580
|
+
border-right: 0;
|
|
11581
|
+
border-top-right-radius: 0;
|
|
11582
|
+
border-bottom-right-radius: 0;
|
|
11583
|
+
}
|
|
11584
|
+
|
|
11585
|
+
.cax-inputnumber-button-group {
|
|
11586
|
+
border: 1px solid var(--neutral-150);
|
|
11587
|
+
border-left: 0;
|
|
11588
|
+
border-radius: 0 8px 8px 0;
|
|
11589
|
+
|
|
11590
|
+
.cax-button {
|
|
11591
|
+
border: none;
|
|
11592
|
+
border-radius: 0 !important;
|
|
11593
|
+
|
|
11594
|
+
&:first-child {
|
|
11595
|
+
border-radius: 0 8px 0 0 !important;
|
|
11596
|
+
border-bottom: 1px solid var(--neutral-150);
|
|
11597
|
+
}
|
|
11598
|
+
|
|
11599
|
+
&:last-child {
|
|
11600
|
+
border-radius: 0 0 8px 0 !important;
|
|
11601
|
+
}
|
|
11602
|
+
}
|
|
11603
|
+
}
|
|
11604
|
+
}
|
|
11605
|
+
|
|
11606
|
+
&.cax-inputnumber-buttons-horizontal {
|
|
11607
|
+
.cax-inputnumber-input {
|
|
11608
|
+
border-radius: 0;
|
|
11609
|
+
}
|
|
11610
|
+
|
|
11611
|
+
.cax-button.cax-inputnumber-button {
|
|
11612
|
+
&.cax-inputnumber-button-up {
|
|
11613
|
+
border-radius: 0 8px 8px 0 !important;
|
|
11614
|
+
}
|
|
11615
|
+
|
|
11616
|
+
&.cax-inputnumber-button-down {
|
|
11617
|
+
border-radius: 8px 0 0 8px !important;
|
|
11618
|
+
}
|
|
11619
|
+
}
|
|
11620
|
+
}
|
|
11621
|
+
|
|
11622
|
+
&.cax-inputnumber-buttons-vertical {
|
|
11623
|
+
.cax-inputnumber-input {
|
|
11624
|
+
border-radius: 0;
|
|
11625
|
+
}
|
|
11626
|
+
|
|
11627
|
+
.cax-button.cax-inputnumber-button {
|
|
11628
|
+
&.cax-inputnumber-button-up {
|
|
11629
|
+
border-radius: 8px 8px 0 0 !important;
|
|
11630
|
+
}
|
|
11631
|
+
|
|
11632
|
+
&.cax-inputnumber-button-down {
|
|
11633
|
+
border-radius: 0 0 8px 8px !important;
|
|
11634
|
+
}
|
|
11635
|
+
}
|
|
11636
|
+
}
|
|
11637
|
+
}
|
|
11638
|
+
|
|
11639
|
+
.cax-input-prefix,
|
|
11640
|
+
.cax-input-prefix-icon {
|
|
11641
|
+
&:not(:first-child) {
|
|
11642
|
+
margin-left: 0;
|
|
11643
|
+
}
|
|
11644
|
+
}
|
|
11645
|
+
|
|
11646
|
+
.cax-input-icon-left > i,
|
|
11647
|
+
.cax-input-icon-left > .cax-icon-wrapper,
|
|
11648
|
+
.cax-input-icon-right > i,
|
|
11649
|
+
.cax-input-icon-right > .cax-icon-wrapper {
|
|
11650
|
+
margin-top: -1px;
|
|
11651
|
+
transform: translateY(-50%);
|
|
11652
|
+
position: absolute;
|
|
11653
|
+
top: 50%;
|
|
11654
|
+
}
|
|
11655
|
+
|
|
11656
|
+
.cax-inputnumber-input {
|
|
11657
|
+
border: 1px solid var(--neutral-200);
|
|
11658
|
+
color: var(--neutral-900);
|
|
11659
|
+
}
|
|
11660
|
+
|
|
11661
|
+
.cax-inputnumber.cax-inputnumber-buttons-stacked {
|
|
11662
|
+
position: relative;
|
|
11663
|
+
}
|
|
11664
|
+
.cax-inputnumber.cax-inputnumber-buttons-stacked .cax-inputnumber-button {
|
|
11665
|
+
height: calc(100% - 2px);
|
|
11666
|
+
background-color: var(--neutral-75);
|
|
11667
|
+
color: var(--neutral-900);
|
|
11668
|
+
}
|
|
11669
|
+
.cax-inputnumber.cax-inputnumber-buttons-stacked .cax-inputnumber-button:hover {
|
|
11670
|
+
background-color: var(--neutral-150);
|
|
11671
|
+
color: var(--neutral-900);
|
|
11672
|
+
}
|
|
11673
|
+
.cax-inputnumber.cax-inputnumber-buttons-stacked .cax-inputnumber-button:active {
|
|
11674
|
+
background-color: var(--neutral-150);
|
|
11675
|
+
color: var(--neutral-900);
|
|
11676
|
+
}
|
|
11677
|
+
|
|
11678
|
+
.cax-inputnumber.cax-inputnumber-buttons-horizontal .cax-inputnumber-button {
|
|
11679
|
+
background-color: var(--neutral-75);
|
|
11680
|
+
border: 1px solid var(--neutral-150);
|
|
11681
|
+
color: var(--neutral-900);
|
|
11682
|
+
}
|
|
11683
|
+
.cax-inputnumber.cax-inputnumber-buttons-horizontal .cax-inputnumber-button:hover {
|
|
11684
|
+
background-color: var(--neutral-150);
|
|
11685
|
+
color: var(--neutral-900);
|
|
11686
|
+
}
|
|
11687
|
+
.cax-inputnumber.cax-inputnumber-buttons-horizontal .cax-inputnumber-button:active {
|
|
11688
|
+
background-color: var(--neutral-150);
|
|
11689
|
+
color: var(--neutral-900);
|
|
11690
|
+
}
|
|
11691
|
+
.cax-inputnumber.cax-inputnumber-buttons-horizontal .cax-inputnumber-button.cax-inputnumber-button-up {
|
|
11692
|
+
border-left: 0 none;
|
|
11693
|
+
}
|
|
11694
|
+
.cax-inputnumber.cax-inputnumber-buttons-horizontal .cax-inputnumber-button.cax-inputnumber-button-down {
|
|
11695
|
+
border-right: 0 none;
|
|
11696
|
+
}
|
|
11697
|
+
.cax-inputnumber.cax-inputnumber-buttons-vertical .cax-inputnumber-button {
|
|
11698
|
+
background-color: var(--neutral-75);
|
|
11699
|
+
border: 1px solid var(--neutral-150);
|
|
11700
|
+
color: var(--neutral-900);
|
|
11701
|
+
}
|
|
11702
|
+
.cax-inputnumber.cax-inputnumber-buttons-vertical .cax-inputnumber-button:hover {
|
|
11703
|
+
background-color: var(--neutral-150);
|
|
11704
|
+
color: var(--neutral-900);
|
|
11705
|
+
}
|
|
11706
|
+
.cax-inputnumber.cax-inputnumber-buttons-vertical .cax-inputnumber-button:active {
|
|
11707
|
+
background-color: var(--neutral-150);
|
|
11708
|
+
color: var(--neutral-900);
|
|
11709
|
+
}
|
|
11710
|
+
.cax-inputnumber.cax-inputnumber-buttons-vertical .cax-inputnumber-button.cax-inputnumber-button-up {
|
|
11711
|
+
border-bottom: 0 none;
|
|
11712
|
+
}
|
|
11713
|
+
.cax-inputnumber.cax-inputnumber-buttons-vertical .cax-inputnumber-button.cax-inputnumber-button-down {
|
|
11714
|
+
border-top: 0 none;
|
|
11715
|
+
}
|
|
11716
|
+
|
|
11717
|
+
cax-inputnumber.ng-dirty.ng-invalid > .cax-inputnumber > .cax-inputtext {
|
|
11718
|
+
border-color: var(--error-600);
|
|
11719
|
+
}
|
|
11720
|
+
|
|
11721
|
+
cax-inputnumber.cax-inputnumber-clearable .cax-inputnumber-input {
|
|
11722
|
+
padding-right: 2.5rem;
|
|
11723
|
+
}
|
|
11724
|
+
cax-inputnumber.cax-inputnumber-clearable .cax-inputnumber-clear-icon {
|
|
11725
|
+
color: var(--neutral-400);
|
|
11726
|
+
right: 0.75rem;
|
|
11727
|
+
}
|
|
11728
|
+
|
|
11729
|
+
cax-inputnumber.cax-inputnumber-clearable .cax-inputnumber-buttons-stacked .cax-inputnumber-clear-icon {
|
|
11730
|
+
right: 3.25rem;
|
|
11731
|
+
}
|
|
11732
|
+
cax-inputnumber.cax-inputnumber-clearable .cax-inputnumber-buttons-horizontal .cax-inputnumber-clear-icon {
|
|
11733
|
+
right: 3.25rem;
|
|
11734
|
+
}
|
|
11735
|
+
|
|
11736
|
+
cax-inputnumber.cax-inputnumber.cax-variant-filled > .cax-inputnumber-input {
|
|
11737
|
+
background-color: #27272a;
|
|
11738
|
+
}
|
|
11739
|
+
cax-inputnumber.cax-inputnumber.cax-variant-filled > .cax-inputnumber-input:enabled:hover {
|
|
11740
|
+
background-color: var(--neutral-500);
|
|
11741
|
+
}
|
|
11742
|
+
cax-inputnumber.cax-inputnumber.cax-variant-filled > .cax-inputnumber-input:enabled:focus {
|
|
11743
|
+
background-color: #27272a;
|
|
11744
|
+
}
|
|
11745
|
+
.cax-autocomplete .cax-autocomplete-loader {
|
|
11746
|
+
}
|
|
11747
|
+
.cax-autocomplete.cax-autocomplete-dd .cax-autocomplete-loader {
|
|
11748
|
+
right: 3.25rem;
|
|
11749
|
+
}
|
|
11750
|
+
.cax-autocomplete:not(.cax-disabled):hover .cax-autocomplete-multiple-container {
|
|
11751
|
+
border-color: #52525b;
|
|
11752
|
+
}
|
|
11753
|
+
.cax-autocomplete:not(.cax-disabled).cax-focus .cax-autocomplete-multiple-container {
|
|
11754
|
+
outline: 1px solid var(--cax-focus-ring-color);
|
|
11755
|
+
outline-offset: -1px;
|
|
11756
|
+
box-shadow: none;
|
|
11757
|
+
border-color: #52525b;
|
|
11758
|
+
}
|
|
11759
|
+
.cax-autocomplete .cax-autocomplete-multiple-container {
|
|
11760
|
+
padding: 0.25rem 0.75rem;
|
|
11761
|
+
gap: 0.5rem;
|
|
11762
|
+
}
|
|
11763
|
+
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-input-token {
|
|
11764
|
+
padding: 0.25rem 0;
|
|
11765
|
+
}
|
|
11766
|
+
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-input-token input {
|
|
11767
|
+
font-family: var(--font-family);
|
|
11768
|
+
font-feature-settings: var(--font-feature-settings, normal);
|
|
11769
|
+
font-size: 1rem;
|
|
11770
|
+
color: var(--white-100);
|
|
11771
|
+
padding: 0;
|
|
11772
|
+
margin: 0;
|
|
11773
|
+
}
|
|
11774
|
+
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-token {
|
|
11775
|
+
padding: 0.25rem 0.75rem;
|
|
11776
|
+
background: #3f3f46;
|
|
11777
|
+
color: var(--white-100);
|
|
11778
|
+
border-radius: 16px;
|
|
11779
|
+
}
|
|
11780
|
+
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-token .cax-autocomplete-token-icon {
|
|
11781
|
+
margin-left: 0.5rem;
|
|
11782
|
+
}
|
|
11783
|
+
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-token.cax-focus {
|
|
11784
|
+
background: #3f3f46;
|
|
11785
|
+
color: var(--black-100);
|
|
11786
|
+
}
|
|
11787
|
+
.cax-autocomplete.cax-invalid.cax-component > .cax-inputtext {
|
|
11788
|
+
border-color: var(--error-600);
|
|
11789
|
+
}
|
|
11790
|
+
|
|
11791
|
+
.cax-autocomplete-panel {
|
|
11792
|
+
background: var(--white-100);
|
|
11793
|
+
color: var(--black-100);
|
|
11794
|
+
border: 1px solid var(--grey-200);
|
|
11795
|
+
border-radius: 7px;
|
|
11796
|
+
box-shadow:
|
|
11797
|
+
0 4px 6px -1px rgba(0, 0, 0, 0.1),
|
|
11798
|
+
0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
|
11799
|
+
}
|
|
11800
|
+
.cax-autocomplete-panel .cax-autocomplete-items {
|
|
11801
|
+
padding: 0.25rem 0.25rem;
|
|
11802
|
+
}
|
|
11803
|
+
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item {
|
|
11804
|
+
margin: 2px 0;
|
|
11805
|
+
padding: 0.5rem 0.75rem;
|
|
11806
|
+
border: 0 none;
|
|
11807
|
+
color: var(--grey-900);
|
|
11808
|
+
background: var(--white-100);
|
|
11809
|
+
transition:
|
|
11810
|
+
background-color 0.2s,
|
|
11811
|
+
color 0.2s,
|
|
11812
|
+
border-color 0.2s,
|
|
11813
|
+
box-shadow 0.2s,
|
|
11814
|
+
outline-color 0.2s;
|
|
11815
|
+
border-radius: 4px;
|
|
11816
|
+
}
|
|
11817
|
+
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item:first-child {
|
|
11818
|
+
margin-top: 0;
|
|
11819
|
+
}
|
|
11820
|
+
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item.cax-highlight {
|
|
11821
|
+
color: var(--grey-900);
|
|
11822
|
+
background: var(--grey-100);
|
|
11823
|
+
}
|
|
11824
|
+
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item.cax-highlight.cax-focus {
|
|
11825
|
+
background: rgba(34, 211, 238, 0.24);
|
|
11826
|
+
}
|
|
11827
|
+
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item:not(.cax-highlight):not(.cax-disabled).cax-focus {
|
|
11828
|
+
color: var(--white-100);
|
|
11829
|
+
background: rgba(255, 255, 255, 0.08);
|
|
11830
|
+
}
|
|
11831
|
+
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item:not(.cax-highlight):not(.cax-disabled):hover {
|
|
11832
|
+
color: var(--black-100);
|
|
11833
|
+
background: var(--grey-100);
|
|
11834
|
+
}
|
|
11835
|
+
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-item-group {
|
|
11836
|
+
margin: 0;
|
|
11837
|
+
padding: 0.5rem 0.75rem;
|
|
11838
|
+
color: #71717a;
|
|
11839
|
+
background: #18181b;
|
|
11840
|
+
font-weight: 600;
|
|
11841
|
+
}
|
|
11842
|
+
.cax-autocomplete-panel .cax-autocomplete-items .cax-autocomplete-empty-message {
|
|
11843
|
+
padding: 0.5rem 0.75rem;
|
|
11844
|
+
color: var(--grey-900);
|
|
11845
|
+
background: var(--white-100);
|
|
11846
|
+
}
|
|
11847
|
+
|
|
11848
|
+
cax-autocomplete.ng-dirty.ng-invalid > .cax-autocomplete > .cax-inputtext {
|
|
11849
|
+
border-color: var(--error-600);
|
|
11850
|
+
}
|
|
11851
|
+
|
|
11852
|
+
cax-autocomplete.cax-autocomplete-clearable .cax-inputtext {
|
|
11853
|
+
padding-left: 1.9rem;
|
|
11854
|
+
padding-right: 1.9rem;
|
|
11855
|
+
}
|
|
11856
|
+
cax-autocomplete.cax-autocomplete-clearable .cax-autocomplete-clear-icon {
|
|
11857
|
+
color: var(--neutral-300);
|
|
11858
|
+
}
|
|
11859
|
+
|
|
11860
|
+
cax-autocomplete.cax-autocomplete-clearable .cax-autocomplete-dd .cax-autocomplete-clear-icon {
|
|
11861
|
+
color: var(--neutral-300);
|
|
11862
|
+
right: 3.25rem;
|
|
11863
|
+
}
|
|
11864
|
+
.cax-autocomplete .cax-autocomplete-multiple-container {
|
|
11865
|
+
padding: 0.25rem 0.25rem;
|
|
11866
|
+
gap: 0.25rem;
|
|
11867
|
+
}
|
|
11868
|
+
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-token {
|
|
11869
|
+
border-radius: 4px;
|
|
11870
|
+
margin: 0;
|
|
11871
|
+
}
|
|
11872
|
+
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-token .cax-autocomplete-token-icon {
|
|
11873
|
+
margin-left: 0.375rem;
|
|
11874
|
+
}
|
|
11875
|
+
.cax-autocomplete .cax-autocomplete-multiple-container .cax-autocomplete-input-token {
|
|
11876
|
+
margin-left: 0.5rem;
|
|
11877
|
+
}
|
|
11878
|
+
.cax-autocomplete .cax-autocomplete-multiple-container:has(.cax-autocomplete-token) .cax-autocomplete-input-token {
|
|
11879
|
+
margin-left: 0.5rem;
|
|
11880
|
+
}
|
|
11881
|
+
.cax-autocomplete.cax-disabled {
|
|
11882
|
+
opacity: 1;
|
|
11883
|
+
}
|