@empathyco/x-components 3.1.0-alpha.1 → 3.1.0-alpha.2
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.
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
.x-uppercase {
|
|
3
|
+
text-transform: uppercase;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.x-lowercase {
|
|
7
|
+
text-transform: lowercase;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.x-capitalize {
|
|
11
|
+
text-transform: capitalize;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.x-normal-case {
|
|
15
|
+
text-transform: none;
|
|
16
|
+
}
|
|
17
|
+
|
|
2
18
|
.x-underline {
|
|
3
19
|
-webkit-text-decoration-line: underline;
|
|
4
20
|
text-decoration-line: underline;
|
|
@@ -963,21 +979,6 @@
|
|
|
963
979
|
.x-line-height--loose {
|
|
964
980
|
line-height: 2 !important;
|
|
965
981
|
}
|
|
966
|
-
.x-uppercase {
|
|
967
|
-
text-transform: uppercase;
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
.x-lowercase {
|
|
971
|
-
text-transform: lowercase;
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
.x-capitalize {
|
|
975
|
-
text-transform: capitalize;
|
|
976
|
-
}
|
|
977
|
-
|
|
978
|
-
.x-normal-case {
|
|
979
|
-
text-transform: none;
|
|
980
|
-
}
|
|
981
982
|
.x-line-clamp--2 {
|
|
982
983
|
overflow: hidden !important;
|
|
983
984
|
display: -webkit-box !important;
|
|
@@ -1101,49 +1102,6 @@
|
|
|
1101
1102
|
font-size: var(--x-size-base-20) !important;
|
|
1102
1103
|
line-height: 1.5;
|
|
1103
1104
|
}
|
|
1104
|
-
.x-flex-1 {
|
|
1105
|
-
flex: 1 1 0% !important;
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
|
-
.x-flex-auto {
|
|
1109
|
-
flex: 1 1 auto !important;
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
.x-flex-initial {
|
|
1113
|
-
flex: 0 1 auto !important;
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
.x-flex-no-shrink {
|
|
1117
|
-
flex: 1 0 auto !important;
|
|
1118
|
-
}
|
|
1119
|
-
|
|
1120
|
-
.x-flex-none {
|
|
1121
|
-
flex: none !important;
|
|
1122
|
-
}
|
|
1123
|
-
|
|
1124
|
-
.x-self-auto {
|
|
1125
|
-
align-self: auto !important;
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
|
-
.x-self-start {
|
|
1129
|
-
align-self: flex-start !important;
|
|
1130
|
-
}
|
|
1131
|
-
|
|
1132
|
-
.x-self-end {
|
|
1133
|
-
align-self: flex-end !important;
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
.x-self-center {
|
|
1137
|
-
align-self: center !important;
|
|
1138
|
-
}
|
|
1139
|
-
|
|
1140
|
-
.x-self-stretch {
|
|
1141
|
-
align-self: stretch !important;
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
.x-self-baseline {
|
|
1145
|
-
align-self: baseline !important;
|
|
1146
|
-
}
|
|
1147
1105
|
.x-font-color--lead {
|
|
1148
1106
|
color: var(--x-color-base-lead) !important;
|
|
1149
1107
|
}
|
|
@@ -1187,17 +1145,48 @@
|
|
|
1187
1145
|
.x-font-color--transparent {
|
|
1188
1146
|
color: var(--x-color-base-transparent) !important;
|
|
1189
1147
|
}
|
|
1190
|
-
.
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1148
|
+
.x-flex-1 {
|
|
1149
|
+
flex: 1 1 0% !important;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.x-flex-auto {
|
|
1153
|
+
flex: 1 1 auto !important;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
.x-flex-initial {
|
|
1157
|
+
flex: 0 1 auto !important;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.x-flex-no-shrink {
|
|
1161
|
+
flex: 1 0 auto !important;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.x-flex-none {
|
|
1165
|
+
flex: none !important;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.x-self-auto {
|
|
1169
|
+
align-self: auto !important;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.x-self-start {
|
|
1173
|
+
align-self: flex-start !important;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.x-self-end {
|
|
1177
|
+
align-self: flex-end !important;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.x-self-center {
|
|
1181
|
+
align-self: center !important;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.x-self-stretch {
|
|
1185
|
+
align-self: stretch !important;
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.x-self-baseline {
|
|
1189
|
+
align-self: baseline !important;
|
|
1201
1190
|
}
|
|
1202
1191
|
.x-fill--lead {
|
|
1203
1192
|
fill: var(--x-color-base-lead) !important;
|
|
@@ -1242,6 +1231,18 @@
|
|
|
1242
1231
|
.x-fill--transparent {
|
|
1243
1232
|
fill: var(--x-color-base-transparent) !important;
|
|
1244
1233
|
}
|
|
1234
|
+
.dev-mode .slot-helper {
|
|
1235
|
+
font-family: inherit;
|
|
1236
|
+
color: grey;
|
|
1237
|
+
box-sizing: border-box;
|
|
1238
|
+
display: flex;
|
|
1239
|
+
height: 100%;
|
|
1240
|
+
width: 100%;
|
|
1241
|
+
justify-content: center;
|
|
1242
|
+
align-items: center;
|
|
1243
|
+
border: dashed 1px grey;
|
|
1244
|
+
border-radius: 10px;
|
|
1245
|
+
}
|
|
1245
1246
|
/* Material Elevations extracted from:
|
|
1246
1247
|
https://gist.github.com/serglo/f9f0be9a66fd6755a0bda85f9c64e85f
|
|
1247
1248
|
*/
|
|
@@ -1443,49 +1444,6 @@
|
|
|
1443
1444
|
.x-shadow--bottom-10 {
|
|
1444
1445
|
box-shadow: var(--x-string-box-shadow-bottom-10) !important;
|
|
1445
1446
|
}
|
|
1446
|
-
.x-border-color--lead {
|
|
1447
|
-
border-color: var(--x-color-base-lead) !important;
|
|
1448
|
-
}
|
|
1449
|
-
|
|
1450
|
-
.x-border-color--auxiliary {
|
|
1451
|
-
border-color: var(--x-color-base-auxiliary) !important;
|
|
1452
|
-
}
|
|
1453
|
-
|
|
1454
|
-
.x-border-color--neutral-10 {
|
|
1455
|
-
border-color: var(--x-color-base-neutral-10) !important;
|
|
1456
|
-
}
|
|
1457
|
-
|
|
1458
|
-
.x-border-color--neutral-35 {
|
|
1459
|
-
border-color: var(--x-color-base-neutral-35) !important;
|
|
1460
|
-
}
|
|
1461
|
-
|
|
1462
|
-
.x-border-color--neutral-70 {
|
|
1463
|
-
border-color: var(--x-color-base-neutral-70) !important;
|
|
1464
|
-
}
|
|
1465
|
-
|
|
1466
|
-
.x-border-color--neutral-95 {
|
|
1467
|
-
border-color: var(--x-color-base-neutral-95) !important;
|
|
1468
|
-
}
|
|
1469
|
-
|
|
1470
|
-
.x-border-color--neutral-100 {
|
|
1471
|
-
border-color: var(--x-color-base-neutral-100) !important;
|
|
1472
|
-
}
|
|
1473
|
-
|
|
1474
|
-
.x-border-color--accent {
|
|
1475
|
-
border-color: var(--x-color-base-accent) !important;
|
|
1476
|
-
}
|
|
1477
|
-
|
|
1478
|
-
.x-border-color--enable {
|
|
1479
|
-
border-color: var(--x-color-base-enable) !important;
|
|
1480
|
-
}
|
|
1481
|
-
|
|
1482
|
-
.x-border-color--disable {
|
|
1483
|
-
border-color: var(--x-color-base-disable) !important;
|
|
1484
|
-
}
|
|
1485
|
-
|
|
1486
|
-
.x-border-color--transparent {
|
|
1487
|
-
border-color: var(--x-color-base-transparent) !important;
|
|
1488
|
-
}
|
|
1489
1447
|
*[class*=x-border-width--] {
|
|
1490
1448
|
border-width: 0;
|
|
1491
1449
|
}
|
|
@@ -3328,6 +3286,49 @@
|
|
|
3328
3286
|
[dir="rtl"] .x-border-radius--bottom-right-20 {
|
|
3329
3287
|
border-bottom-left-radius: var(--x-size-base-20) !important;
|
|
3330
3288
|
}
|
|
3289
|
+
.x-border-color--lead {
|
|
3290
|
+
border-color: var(--x-color-base-lead) !important;
|
|
3291
|
+
}
|
|
3292
|
+
|
|
3293
|
+
.x-border-color--auxiliary {
|
|
3294
|
+
border-color: var(--x-color-base-auxiliary) !important;
|
|
3295
|
+
}
|
|
3296
|
+
|
|
3297
|
+
.x-border-color--neutral-10 {
|
|
3298
|
+
border-color: var(--x-color-base-neutral-10) !important;
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3301
|
+
.x-border-color--neutral-35 {
|
|
3302
|
+
border-color: var(--x-color-base-neutral-35) !important;
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
|
+
.x-border-color--neutral-70 {
|
|
3306
|
+
border-color: var(--x-color-base-neutral-70) !important;
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
.x-border-color--neutral-95 {
|
|
3310
|
+
border-color: var(--x-color-base-neutral-95) !important;
|
|
3311
|
+
}
|
|
3312
|
+
|
|
3313
|
+
.x-border-color--neutral-100 {
|
|
3314
|
+
border-color: var(--x-color-base-neutral-100) !important;
|
|
3315
|
+
}
|
|
3316
|
+
|
|
3317
|
+
.x-border-color--accent {
|
|
3318
|
+
border-color: var(--x-color-base-accent) !important;
|
|
3319
|
+
}
|
|
3320
|
+
|
|
3321
|
+
.x-border-color--enable {
|
|
3322
|
+
border-color: var(--x-color-base-enable) !important;
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3325
|
+
.x-border-color--disable {
|
|
3326
|
+
border-color: var(--x-color-base-disable) !important;
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3329
|
+
.x-border-color--transparent {
|
|
3330
|
+
border-color: var(--x-color-base-transparent) !important;
|
|
3331
|
+
}
|
|
3331
3332
|
.x-background--lead {
|
|
3332
3333
|
background-color: var(--x-color-base-lead) !important;
|
|
3333
3334
|
}
|
|
@@ -3389,6 +3390,9 @@
|
|
|
3389
3390
|
:root {
|
|
3390
3391
|
--x-color-text-secondary: var(--x-color-base-neutral-35);
|
|
3391
3392
|
}
|
|
3393
|
+
.x-text--secondary {
|
|
3394
|
+
--x-color-text-default: var(--x-color-text-secondary);
|
|
3395
|
+
}
|
|
3392
3396
|
.x-text--light.x-text {
|
|
3393
3397
|
--x-number-font-weight-text: var(--x-number-font-weight-base-light);
|
|
3394
3398
|
}
|
|
@@ -3404,9 +3408,6 @@
|
|
|
3404
3408
|
.x-text--light.x-small {
|
|
3405
3409
|
--x-number-font-weight-small: var(--x-number-font-weight-base-light);
|
|
3406
3410
|
}
|
|
3407
|
-
.x-text--secondary {
|
|
3408
|
-
--x-color-text-default: var(--x-color-text-secondary);
|
|
3409
|
-
}
|
|
3410
3411
|
:root {
|
|
3411
3412
|
--x-font-family-base: "Montserrat", sans-serif;
|
|
3412
3413
|
--x-size-font-base-xs: 12px;
|
|
@@ -3447,21 +3448,6 @@
|
|
|
3447
3448
|
--x-size-line-height-small: var(--x-size-line-height-base-s);
|
|
3448
3449
|
--x-string-text-decoration-small: none;
|
|
3449
3450
|
}
|
|
3450
|
-
.x-text--bold.x-text {
|
|
3451
|
-
--x-number-font-weight-text: var(--x-number-font-weight-base-bold);
|
|
3452
|
-
}
|
|
3453
|
-
.x-text--bold.x-title1 {
|
|
3454
|
-
--x-number-font-weight-title1: var(--x-number-font-weight-base-bold);
|
|
3455
|
-
}
|
|
3456
|
-
.x-text--bold.x-title2 {
|
|
3457
|
-
--x-number-font-weight-title2: var(--x-number-font-weight-base-bold);
|
|
3458
|
-
}
|
|
3459
|
-
.x-text--bold.x-title3 {
|
|
3460
|
-
--x-number-font-weight-title3: var(--x-number-font-weight-base-bold);
|
|
3461
|
-
}
|
|
3462
|
-
.x-text--bold.x-small {
|
|
3463
|
-
--x-number-font-weight-small: var(--x-number-font-weight-base-bold);
|
|
3464
|
-
}
|
|
3465
3451
|
:root {
|
|
3466
3452
|
--x-font-family-base: "Montserrat", sans-serif;
|
|
3467
3453
|
--x-size-font-base-xs: 12px;
|
|
@@ -3564,14 +3550,29 @@
|
|
|
3564
3550
|
overflow: hidden;
|
|
3565
3551
|
white-space: nowrap;
|
|
3566
3552
|
}
|
|
3567
|
-
|
|
3568
|
-
--x-
|
|
3553
|
+
.x-text--bold.x-text {
|
|
3554
|
+
--x-number-font-weight-text: var(--x-number-font-weight-base-bold);
|
|
3569
3555
|
}
|
|
3570
|
-
.x-text--
|
|
3571
|
-
--x-
|
|
3556
|
+
.x-text--bold.x-title1 {
|
|
3557
|
+
--x-number-font-weight-title1: var(--x-number-font-weight-base-bold);
|
|
3572
3558
|
}
|
|
3573
|
-
|
|
3574
|
-
--x-
|
|
3559
|
+
.x-text--bold.x-title2 {
|
|
3560
|
+
--x-number-font-weight-title2: var(--x-number-font-weight-base-bold);
|
|
3561
|
+
}
|
|
3562
|
+
.x-text--bold.x-title3 {
|
|
3563
|
+
--x-number-font-weight-title3: var(--x-number-font-weight-base-bold);
|
|
3564
|
+
}
|
|
3565
|
+
.x-text--bold.x-small {
|
|
3566
|
+
--x-number-font-weight-small: var(--x-number-font-weight-base-bold);
|
|
3567
|
+
}
|
|
3568
|
+
:root {
|
|
3569
|
+
--x-color-text-accent: var(--x-color-base-accent);
|
|
3570
|
+
}
|
|
3571
|
+
.x-text--accent {
|
|
3572
|
+
--x-color-text-default: var(--x-color-text-accent);
|
|
3573
|
+
}
|
|
3574
|
+
:root {
|
|
3575
|
+
--x-size-border-radius-tag-pill: var(--x-size-border-radius-base-pill);
|
|
3575
3576
|
--x-size-border-radius-top-left-tag-pill: var(--x-size-border-radius-tag-pill);
|
|
3576
3577
|
--x-size-border-radius-top-right-tag-pill: var(--x-size-border-radius-tag-pill);
|
|
3577
3578
|
--x-size-border-radius-bottom-right-tag-pill: var(--x-size-border-radius-tag-pill);
|
|
@@ -3911,6 +3912,24 @@
|
|
|
3911
3912
|
--x-size-border-radius-bottom-right-tag-card: var(--x-size-border-radius-tag-card);
|
|
3912
3913
|
--x-size-border-radius-bottom-left-tag-card: var(--x-size-border-radius-tag-card);
|
|
3913
3914
|
}
|
|
3915
|
+
:root {
|
|
3916
|
+
--x-size-border-radius-tag-card: var(--x-size-border-radius-base-s);
|
|
3917
|
+
--x-size-border-radius-top-left-tag-card: var(--x-size-border-radius-tag-card);
|
|
3918
|
+
--x-size-border-radius-top-right-tag-card: var(--x-size-border-radius-tag-card);
|
|
3919
|
+
--x-size-border-radius-bottom-right-tag-card: var(--x-size-border-radius-tag-card);
|
|
3920
|
+
--x-size-border-radius-bottom-left-tag-card: var(--x-size-border-radius-tag-card);
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
.x-tag--card.x-tag,
|
|
3924
|
+
.x-tag--card .x-tag {
|
|
3925
|
+
--x-size-border-radius-tag-default: var(--x-size-border-radius-tag-card);
|
|
3926
|
+
--x-size-border-radius-top-left-tag-default: var(--x-size-border-radius-top-left-tag-card);
|
|
3927
|
+
--x-size-border-radius-top-right-tag-default: var(--x-size-border-radius-top-right-tag-card);
|
|
3928
|
+
--x-size-border-radius-bottom-right-tag-default: var(
|
|
3929
|
+
--x-size-border-radius-bottom-right-tag-card
|
|
3930
|
+
);
|
|
3931
|
+
--x-size-border-radius-bottom-left-tag-default: var(--x-size-border-radius-bottom-left-tag-card);
|
|
3932
|
+
}
|
|
3914
3933
|
:root {
|
|
3915
3934
|
--x-color-text-suggestion-group-default: var(--x-color-text-suggestion-default);
|
|
3916
3935
|
--x-color-text-suggestion-group-matching-part-default: var(
|
|
@@ -3952,24 +3971,6 @@
|
|
|
3952
3971
|
--x-size-line-height-suggestion-group-default: var(--x-size-line-height-suggestion-default);
|
|
3953
3972
|
--x-number-font-weight-suggestion-group-default: var(--x-number-font-weight-suggestion-default);
|
|
3954
3973
|
}
|
|
3955
|
-
:root {
|
|
3956
|
-
--x-size-border-radius-tag-card: var(--x-size-border-radius-base-s);
|
|
3957
|
-
--x-size-border-radius-top-left-tag-card: var(--x-size-border-radius-tag-card);
|
|
3958
|
-
--x-size-border-radius-top-right-tag-card: var(--x-size-border-radius-tag-card);
|
|
3959
|
-
--x-size-border-radius-bottom-right-tag-card: var(--x-size-border-radius-tag-card);
|
|
3960
|
-
--x-size-border-radius-bottom-left-tag-card: var(--x-size-border-radius-tag-card);
|
|
3961
|
-
}
|
|
3962
|
-
|
|
3963
|
-
.x-tag--card.x-tag,
|
|
3964
|
-
.x-tag--card .x-tag {
|
|
3965
|
-
--x-size-border-radius-tag-default: var(--x-size-border-radius-tag-card);
|
|
3966
|
-
--x-size-border-radius-top-left-tag-default: var(--x-size-border-radius-top-left-tag-card);
|
|
3967
|
-
--x-size-border-radius-top-right-tag-default: var(--x-size-border-radius-top-right-tag-card);
|
|
3968
|
-
--x-size-border-radius-bottom-right-tag-default: var(
|
|
3969
|
-
--x-size-border-radius-bottom-right-tag-card
|
|
3970
|
-
);
|
|
3971
|
-
--x-size-border-radius-bottom-left-tag-default: var(--x-size-border-radius-bottom-left-tag-card);
|
|
3972
|
-
}
|
|
3973
3974
|
:root {
|
|
3974
3975
|
--x-color-text-suggestion-group-default: var(--x-color-text-suggestion-default);
|
|
3975
3976
|
--x-color-text-suggestion-group-matching-part-default: var(
|
|
@@ -4176,12 +4177,6 @@
|
|
|
4176
4177
|
--x-number-font-weight-suggestion-default-matching
|
|
4177
4178
|
);
|
|
4178
4179
|
}
|
|
4179
|
-
:root {
|
|
4180
|
-
--x-color-background-sliding-panel: var(--x-color-base-neutral-100);
|
|
4181
|
-
--x-size-width-sliding-panel-gradient: var(--x-size-base-09);
|
|
4182
|
-
--x-size-padding-sliding-panel-button: var(--x-size-base-03);
|
|
4183
|
-
--x-size-horizontal-margin-sliding-panel-button-overflow: var(--x-size-base-02);
|
|
4184
|
-
}
|
|
4185
4180
|
:root {
|
|
4186
4181
|
--x-string-align-items-suggestion-default: center;
|
|
4187
4182
|
--x-color-text-suggestion-default: var(--x-color-text-default);
|
|
@@ -4404,6 +4399,12 @@
|
|
|
4404
4399
|
--x-color-text-suggestion-default-matching-curated
|
|
4405
4400
|
);
|
|
4406
4401
|
}
|
|
4402
|
+
:root {
|
|
4403
|
+
--x-color-background-sliding-panel: var(--x-color-base-neutral-100);
|
|
4404
|
+
--x-size-width-sliding-panel-gradient: var(--x-size-base-09);
|
|
4405
|
+
--x-size-padding-sliding-panel-button: var(--x-size-base-03);
|
|
4406
|
+
--x-size-horizontal-margin-sliding-panel-button-overflow: var(--x-size-base-02);
|
|
4407
|
+
}
|
|
4407
4408
|
.x-sliding-panel {
|
|
4408
4409
|
z-index: 0;
|
|
4409
4410
|
background-color: var(--x-color-background-sliding-panel);
|
|
@@ -4566,14 +4567,6 @@
|
|
|
4566
4567
|
--x-size-gap-row-19: var(--x-size-base-19);
|
|
4567
4568
|
--x-size-gap-row-20: var(--x-size-base-20);
|
|
4568
4569
|
}
|
|
4569
|
-
:root {
|
|
4570
|
-
--x-size-gap-row: 0;
|
|
4571
|
-
--x-size-padding-row: 0;
|
|
4572
|
-
--x-size-justify-row: stretch;
|
|
4573
|
-
--x-size-align-row: center;
|
|
4574
|
-
--x-size-span-row-item: 1;
|
|
4575
|
-
--x-size-start-row-item: 0;
|
|
4576
|
-
}
|
|
4577
4570
|
:root {
|
|
4578
4571
|
--x-size-gap-row-01: var(--x-size-base-01);
|
|
4579
4572
|
--x-size-gap-row-02: var(--x-size-base-02);
|
|
@@ -4677,21 +4670,12 @@
|
|
|
4677
4670
|
--x-size-gap-row: var(--x-size-gap-row-20);
|
|
4678
4671
|
}
|
|
4679
4672
|
:root {
|
|
4680
|
-
--x-
|
|
4681
|
-
--x-
|
|
4682
|
-
--x-
|
|
4683
|
-
--x-
|
|
4684
|
-
--x-
|
|
4685
|
-
--x-size-
|
|
4686
|
-
--x-size-padding-result-overlay-default: 0;
|
|
4687
|
-
--x-size-padding-result-description-default: 0;
|
|
4688
|
-
--x-size-gap-result-default: var(--x-size-base-03);
|
|
4689
|
-
--x-size-padding-result-picture-default: 0;
|
|
4690
|
-
--x-size-border-radius-result-default: var(--x-size-border-radius-base-none);
|
|
4691
|
-
--x-size-border-width-result-default: 0;
|
|
4692
|
-
--x-size-border-width-result-overlay-default: 0;
|
|
4693
|
-
--x-size-border-width-result-description-default: 0;
|
|
4694
|
-
--x-size-border-width-result-picture-default: 0;
|
|
4673
|
+
--x-size-gap-row: 0;
|
|
4674
|
+
--x-size-padding-row: 0;
|
|
4675
|
+
--x-size-justify-row: stretch;
|
|
4676
|
+
--x-size-align-row: center;
|
|
4677
|
+
--x-size-span-row-item: 1;
|
|
4678
|
+
--x-size-start-row-item: 0;
|
|
4695
4679
|
}
|
|
4696
4680
|
:root {
|
|
4697
4681
|
--x-size-gap-row: 0;
|
|
@@ -4838,6 +4822,23 @@
|
|
|
4838
4822
|
--x-size-border-width-result-description-default: 0;
|
|
4839
4823
|
--x-size-border-width-result-picture-default: 0;
|
|
4840
4824
|
}
|
|
4825
|
+
:root {
|
|
4826
|
+
--x-color-border-result-default: var(--x-color-base-lead);
|
|
4827
|
+
--x-color-border-result-overlay-default: var(--x-color-border-result-default);
|
|
4828
|
+
--x-color-border-result-description-default: var(--x-color-border-result-default);
|
|
4829
|
+
--x-color-border-result-picture-default: var(--x-color-border-result-default);
|
|
4830
|
+
--x-color-background-result-default: transparent;
|
|
4831
|
+
--x-size-padding-result-default: 0;
|
|
4832
|
+
--x-size-padding-result-overlay-default: 0;
|
|
4833
|
+
--x-size-padding-result-description-default: 0;
|
|
4834
|
+
--x-size-gap-result-default: var(--x-size-base-03);
|
|
4835
|
+
--x-size-padding-result-picture-default: 0;
|
|
4836
|
+
--x-size-border-radius-result-default: var(--x-size-border-radius-base-none);
|
|
4837
|
+
--x-size-border-width-result-default: 0;
|
|
4838
|
+
--x-size-border-width-result-overlay-default: 0;
|
|
4839
|
+
--x-size-border-width-result-description-default: 0;
|
|
4840
|
+
--x-size-border-width-result-picture-default: 0;
|
|
4841
|
+
}
|
|
4841
4842
|
|
|
4842
4843
|
.x-result {
|
|
4843
4844
|
display: grid;
|
|
@@ -4894,6 +4895,11 @@
|
|
|
4894
4895
|
:root {
|
|
4895
4896
|
--x-size-border-radius-result-card: var(--x-size-border-radius-base-s);
|
|
4896
4897
|
}
|
|
4898
|
+
|
|
4899
|
+
.x-result.x-result--card {
|
|
4900
|
+
overflow: hidden;
|
|
4901
|
+
--x-size-border-radius-result-default: var(--x-size-border-radius-result-card);
|
|
4902
|
+
}
|
|
4897
4903
|
:root {
|
|
4898
4904
|
--x-size-height-progress-bar-line-default: var(--x-size-base-02);
|
|
4899
4905
|
--x-size-width-progress-bar-line-default: var(--x-size-base-20);
|
|
@@ -4903,14 +4909,6 @@
|
|
|
4903
4909
|
--x-size-border-radius-progress-bar-default: var(--x-size-border-radius-base-pill);
|
|
4904
4910
|
--x-size-border-width-progress-bar-default: 0;
|
|
4905
4911
|
}
|
|
4906
|
-
:root {
|
|
4907
|
-
--x-size-border-radius-result-card: var(--x-size-border-radius-base-s);
|
|
4908
|
-
}
|
|
4909
|
-
|
|
4910
|
-
.x-result.x-result--card {
|
|
4911
|
-
overflow: hidden;
|
|
4912
|
-
--x-size-border-radius-result-default: var(--x-size-border-radius-result-card);
|
|
4913
|
-
}
|
|
4914
4912
|
:root {
|
|
4915
4913
|
--x-size-height-progress-bar-line-default: var(--x-size-base-02);
|
|
4916
4914
|
--x-size-width-progress-bar-line-default: var(--x-size-base-20);
|
|
@@ -4940,9 +4938,6 @@
|
|
|
4940
4938
|
--x-number-zoom-scale-picture: 1.1;
|
|
4941
4939
|
--x-number-zoom-duration-picture: 0.3s;
|
|
4942
4940
|
}
|
|
4943
|
-
:root {
|
|
4944
|
-
--x-number-aspect-ratio-picture: 1;
|
|
4945
|
-
}
|
|
4946
4941
|
:root {
|
|
4947
4942
|
--x-number-zoom-scale-picture: 1.1;
|
|
4948
4943
|
--x-number-zoom-duration-picture: 0.3s;
|
|
@@ -4957,6 +4952,9 @@
|
|
|
4957
4952
|
:root {
|
|
4958
4953
|
--x-number-aspect-ratio-picture: 1;
|
|
4959
4954
|
}
|
|
4955
|
+
:root {
|
|
4956
|
+
--x-number-aspect-ratio-picture: 1;
|
|
4957
|
+
}
|
|
4960
4958
|
|
|
4961
4959
|
.x-picture--fixed-ratio.x-picture {
|
|
4962
4960
|
aspect-ratio: var(--x-number-aspect-ratio-picture);
|
|
@@ -4980,6 +4978,24 @@
|
|
|
4980
4978
|
--x-mix-blend-mode-picture-fallback-default: var(--x-mix-blend-mode-picture-default);
|
|
4981
4979
|
--x-mix-blend-mode-picture-placeholder-default: var(--x-mix-blend-mode-picture-default);
|
|
4982
4980
|
}
|
|
4981
|
+
:root {
|
|
4982
|
+
--x-size-border-radius-picture-default: 0;
|
|
4983
|
+
--x-size-border-radius-top-picture-default: var(--x-size-border-radius-picture-default);
|
|
4984
|
+
--x-size-border-radius-right-picture-default: var(--x-size-border-radius-picture-default);
|
|
4985
|
+
--x-size-border-radius-bottom-picture-default: var(--x-size-border-radius-picture-default);
|
|
4986
|
+
--x-size-border-radius-left-picture-default: var(--x-size-border-radius-picture-default);
|
|
4987
|
+
--x-color-background-picture-default: transparent;
|
|
4988
|
+
--x-color-fill-picture-placeholder-path-default: var(--x-color-base-neutral-70);
|
|
4989
|
+
--x-color-fill-picture-placeholder-rect-default: var(--x-color-base-neutral-95);
|
|
4990
|
+
--x-color-fill-picture-fallback-path-default: var(--x-color-base-neutral-70);
|
|
4991
|
+
--x-color-fill-picture-fallback-rect-default: var(--x-color-base-neutral-95);
|
|
4992
|
+
--x-object-fit-picture-default: contain;
|
|
4993
|
+
--x-object-fit-picture-fallback-default: var(--x-object-fit-picture-default);
|
|
4994
|
+
--x-object-fit-picture-placeholder-default: var(--x-object-fit-picture-default);
|
|
4995
|
+
--x-mix-blend-mode-picture-default: normal;
|
|
4996
|
+
--x-mix-blend-mode-picture-fallback-default: var(--x-mix-blend-mode-picture-default);
|
|
4997
|
+
--x-mix-blend-mode-picture-placeholder-default: var(--x-mix-blend-mode-picture-default);
|
|
4998
|
+
}
|
|
4983
4999
|
|
|
4984
5000
|
.x-picture {
|
|
4985
5001
|
display: block;
|
|
@@ -5018,24 +5034,6 @@
|
|
|
5018
5034
|
.x-picture-image--placeholder > path {
|
|
5019
5035
|
fill: var(--x-color-fill-picture-placeholder-path-default) !important;
|
|
5020
5036
|
}
|
|
5021
|
-
:root {
|
|
5022
|
-
--x-size-border-radius-picture-default: 0;
|
|
5023
|
-
--x-size-border-radius-top-picture-default: var(--x-size-border-radius-picture-default);
|
|
5024
|
-
--x-size-border-radius-right-picture-default: var(--x-size-border-radius-picture-default);
|
|
5025
|
-
--x-size-border-radius-bottom-picture-default: var(--x-size-border-radius-picture-default);
|
|
5026
|
-
--x-size-border-radius-left-picture-default: var(--x-size-border-radius-picture-default);
|
|
5027
|
-
--x-color-background-picture-default: transparent;
|
|
5028
|
-
--x-color-fill-picture-placeholder-path-default: var(--x-color-base-neutral-70);
|
|
5029
|
-
--x-color-fill-picture-placeholder-rect-default: var(--x-color-base-neutral-95);
|
|
5030
|
-
--x-color-fill-picture-fallback-path-default: var(--x-color-base-neutral-70);
|
|
5031
|
-
--x-color-fill-picture-fallback-rect-default: var(--x-color-base-neutral-95);
|
|
5032
|
-
--x-object-fit-picture-default: contain;
|
|
5033
|
-
--x-object-fit-picture-fallback-default: var(--x-object-fit-picture-default);
|
|
5034
|
-
--x-object-fit-picture-placeholder-default: var(--x-object-fit-picture-default);
|
|
5035
|
-
--x-mix-blend-mode-picture-default: normal;
|
|
5036
|
-
--x-mix-blend-mode-picture-fallback-default: var(--x-mix-blend-mode-picture-default);
|
|
5037
|
-
--x-mix-blend-mode-picture-placeholder-default: var(--x-mix-blend-mode-picture-default);
|
|
5038
|
-
}
|
|
5039
5037
|
:root {
|
|
5040
5038
|
--x-color-background-picture-cover-hover-from: rgba(0, 0, 0, 0);
|
|
5041
5039
|
--x-color-background-picture-cover-hover-to: rgba(0, 0, 0, 0.5);
|
|
@@ -5092,6 +5090,21 @@
|
|
|
5092
5090
|
--x-size-border-radius-bottom-picture-card: var(--x-size-border-radius-picture-card);
|
|
5093
5091
|
--x-size-border-radius-left-picture-card: var(--x-size-border-radius-picture-card);
|
|
5094
5092
|
}
|
|
5093
|
+
:root {
|
|
5094
|
+
--x-size-border-radius-picture-card: var(--x-size-border-radius-base-s);
|
|
5095
|
+
--x-size-border-radius-top-picture-card: var(--x-size-border-radius-picture-card);
|
|
5096
|
+
--x-size-border-radius-right-picture-card: var(--x-size-border-radius-picture-card);
|
|
5097
|
+
--x-size-border-radius-bottom-picture-card: var(--x-size-border-radius-picture-card);
|
|
5098
|
+
--x-size-border-radius-left-picture-card: var(--x-size-border-radius-picture-card);
|
|
5099
|
+
}
|
|
5100
|
+
|
|
5101
|
+
.x-picture--card.x-picture {
|
|
5102
|
+
--x-size-border-radius-picture-default: var(--x-size-border-radius-picture-card);
|
|
5103
|
+
--x-size-border-radius-top-picture-default: var(--x-size-border-radius-top-picture-card);
|
|
5104
|
+
--x-size-border-radius-right-picture-default: var(--x-size-border-radius-right-picture-card);
|
|
5105
|
+
--x-size-border-radius-bottom-picture-default: var(--x-size-border-radius-bottom-picture-card);
|
|
5106
|
+
--x-size-border-radius-left-picture-default: var(--x-size-border-radius-left-picture-card);
|
|
5107
|
+
}
|
|
5095
5108
|
:root {
|
|
5096
5109
|
--x-color-background-option-list-button-default: transparent;
|
|
5097
5110
|
--x-color-border-option-list-button-default: transparent;
|
|
@@ -5172,66 +5185,6 @@
|
|
|
5172
5185
|
--x-number-font-weight-option-list-button-default: var(--x-number-font-weight-base-regular);
|
|
5173
5186
|
--x-number-font-weight-option-list-button-default-selected: var(--x-number-font-weight-base-bold);
|
|
5174
5187
|
}
|
|
5175
|
-
:root {
|
|
5176
|
-
--x-size-border-radius-picture-card: var(--x-size-border-radius-base-s);
|
|
5177
|
-
--x-size-border-radius-top-picture-card: var(--x-size-border-radius-picture-card);
|
|
5178
|
-
--x-size-border-radius-right-picture-card: var(--x-size-border-radius-picture-card);
|
|
5179
|
-
--x-size-border-radius-bottom-picture-card: var(--x-size-border-radius-picture-card);
|
|
5180
|
-
--x-size-border-radius-left-picture-card: var(--x-size-border-radius-picture-card);
|
|
5181
|
-
}
|
|
5182
|
-
|
|
5183
|
-
.x-picture--card.x-picture {
|
|
5184
|
-
--x-size-border-radius-picture-default: var(--x-size-border-radius-picture-card);
|
|
5185
|
-
--x-size-border-radius-top-picture-default: var(--x-size-border-radius-top-picture-card);
|
|
5186
|
-
--x-size-border-radius-right-picture-default: var(--x-size-border-radius-right-picture-card);
|
|
5187
|
-
--x-size-border-radius-bottom-picture-default: var(--x-size-border-radius-bottom-picture-card);
|
|
5188
|
-
--x-size-border-radius-left-picture-default: var(--x-size-border-radius-left-picture-card);
|
|
5189
|
-
}
|
|
5190
|
-
:root {
|
|
5191
|
-
--x-color-text-option-list-button-bottom-hover: var(--x-color-base-neutral-10);
|
|
5192
|
-
--x-color-text-option-list-button-bottom-selected-hover: var(
|
|
5193
|
-
--x-color-text-option-list-button-bottom-selected
|
|
5194
|
-
);
|
|
5195
|
-
--x-color-text-option-list-button-bottom: var(--x-color-base-neutral-35);
|
|
5196
|
-
--x-color-text-option-list-button-bottom-selected: var(--x-color-text-default);
|
|
5197
|
-
--x-color-border-option-list-item-bottom: transparent;
|
|
5198
|
-
--x-color-border-top-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5199
|
-
--x-color-border-right-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5200
|
-
--x-color-border-bottom-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5201
|
-
--x-color-border-left-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5202
|
-
--x-color-border-option-list-item-bottom-selected: var(--x-color-base-neutral-10);
|
|
5203
|
-
--x-color-border-top-option-list-item-bottom-selected: var(
|
|
5204
|
-
--x-color-border-option-list-item-bottom
|
|
5205
|
-
);
|
|
5206
|
-
--x-color-border-right-option-list-item-bottom-selected: var(
|
|
5207
|
-
--x-color-border-option-list-item-bottom
|
|
5208
|
-
);
|
|
5209
|
-
--x-color-border-bottom-option-list-item-bottom-selected: var(
|
|
5210
|
-
--x-color-border-option-list-item-bottom-selected
|
|
5211
|
-
);
|
|
5212
|
-
--x-color-border-left-option-list-item-bottom-selected: var(
|
|
5213
|
-
--x-color-border-option-list-item-bottom
|
|
5214
|
-
);
|
|
5215
|
-
--x-size-border-width-option-list-item-bottom: var(--x-size-border-width-base);
|
|
5216
|
-
--x-size-border-width-top-option-list-item-bottom: 0;
|
|
5217
|
-
--x-size-border-width-right-option-list-item-bottom: 0;
|
|
5218
|
-
--x-size-border-width-bottom-option-list-item-bottom: var(
|
|
5219
|
-
--x-size-border-width-option-list-item-bottom
|
|
5220
|
-
);
|
|
5221
|
-
--x-size-border-width-left-option-list-item-bottom: 0;
|
|
5222
|
-
--x-size-border-width-top-option-list-item-bottom-selected: 0;
|
|
5223
|
-
--x-size-border-width-right-option-list-item-bottom-selected: 0;
|
|
5224
|
-
--x-size-border-width-bottom-option-list-item-bottom-selected: var(
|
|
5225
|
-
--x-size-border-width-option-list-item-bottom
|
|
5226
|
-
);
|
|
5227
|
-
--x-size-border-width-left-option-list-item-bottom-selected: 0;
|
|
5228
|
-
--x-size-font-option-list-button-bottom: var(--x-size-font-text);
|
|
5229
|
-
--x-font-decoration-option-list-button-bottom-hover: none;
|
|
5230
|
-
--x-number-font-weight-option-list-button-bottom: var(--x-number-font-weight-base-regular);
|
|
5231
|
-
--x-number-font-weight-option-list-button-bottom-selected: var(
|
|
5232
|
-
--x-number-font-weight-base-regular
|
|
5233
|
-
);
|
|
5234
|
-
}
|
|
5235
5188
|
:root {
|
|
5236
5189
|
--x-color-background-option-list-button-default: transparent;
|
|
5237
5190
|
--x-color-border-option-list-button-default: transparent;
|
|
@@ -5424,10 +5377,6 @@
|
|
|
5424
5377
|
-webkit-text-decoration: var(--x-font-decoration-option-list-button-default-hover);
|
|
5425
5378
|
text-decoration: var(--x-font-decoration-option-list-button-default-hover);
|
|
5426
5379
|
}
|
|
5427
|
-
:root {
|
|
5428
|
-
--x-modal-overlay-color: rgb(0, 0, 0);
|
|
5429
|
-
--x-modal-overlay-opacity: 0.7;
|
|
5430
|
-
}
|
|
5431
5380
|
:root {
|
|
5432
5381
|
--x-color-text-option-list-button-bottom-hover: var(--x-color-base-neutral-10);
|
|
5433
5382
|
--x-color-text-option-list-button-bottom-selected-hover: var(
|
|
@@ -5473,14 +5422,59 @@
|
|
|
5473
5422
|
--x-number-font-weight-base-regular
|
|
5474
5423
|
);
|
|
5475
5424
|
}
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
--x-color-text-option-list-button-default-hover: var(
|
|
5481
|
-
--x-color-text-option-list-button-bottom-hover
|
|
5425
|
+
:root {
|
|
5426
|
+
--x-color-text-option-list-button-bottom-hover: var(--x-color-base-neutral-10);
|
|
5427
|
+
--x-color-text-option-list-button-bottom-selected-hover: var(
|
|
5428
|
+
--x-color-text-option-list-button-bottom-selected
|
|
5482
5429
|
);
|
|
5483
|
-
--x-color-
|
|
5430
|
+
--x-color-text-option-list-button-bottom: var(--x-color-base-neutral-35);
|
|
5431
|
+
--x-color-text-option-list-button-bottom-selected: var(--x-color-text-default);
|
|
5432
|
+
--x-color-border-option-list-item-bottom: transparent;
|
|
5433
|
+
--x-color-border-top-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5434
|
+
--x-color-border-right-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5435
|
+
--x-color-border-bottom-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5436
|
+
--x-color-border-left-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5437
|
+
--x-color-border-option-list-item-bottom-selected: var(--x-color-base-neutral-10);
|
|
5438
|
+
--x-color-border-top-option-list-item-bottom-selected: var(
|
|
5439
|
+
--x-color-border-option-list-item-bottom
|
|
5440
|
+
);
|
|
5441
|
+
--x-color-border-right-option-list-item-bottom-selected: var(
|
|
5442
|
+
--x-color-border-option-list-item-bottom
|
|
5443
|
+
);
|
|
5444
|
+
--x-color-border-bottom-option-list-item-bottom-selected: var(
|
|
5445
|
+
--x-color-border-option-list-item-bottom-selected
|
|
5446
|
+
);
|
|
5447
|
+
--x-color-border-left-option-list-item-bottom-selected: var(
|
|
5448
|
+
--x-color-border-option-list-item-bottom
|
|
5449
|
+
);
|
|
5450
|
+
--x-size-border-width-option-list-item-bottom: var(--x-size-border-width-base);
|
|
5451
|
+
--x-size-border-width-top-option-list-item-bottom: 0;
|
|
5452
|
+
--x-size-border-width-right-option-list-item-bottom: 0;
|
|
5453
|
+
--x-size-border-width-bottom-option-list-item-bottom: var(
|
|
5454
|
+
--x-size-border-width-option-list-item-bottom
|
|
5455
|
+
);
|
|
5456
|
+
--x-size-border-width-left-option-list-item-bottom: 0;
|
|
5457
|
+
--x-size-border-width-top-option-list-item-bottom-selected: 0;
|
|
5458
|
+
--x-size-border-width-right-option-list-item-bottom-selected: 0;
|
|
5459
|
+
--x-size-border-width-bottom-option-list-item-bottom-selected: var(
|
|
5460
|
+
--x-size-border-width-option-list-item-bottom
|
|
5461
|
+
);
|
|
5462
|
+
--x-size-border-width-left-option-list-item-bottom-selected: 0;
|
|
5463
|
+
--x-size-font-option-list-button-bottom: var(--x-size-font-text);
|
|
5464
|
+
--x-font-decoration-option-list-button-bottom-hover: none;
|
|
5465
|
+
--x-number-font-weight-option-list-button-bottom: var(--x-number-font-weight-base-regular);
|
|
5466
|
+
--x-number-font-weight-option-list-button-bottom-selected: var(
|
|
5467
|
+
--x-number-font-weight-base-regular
|
|
5468
|
+
);
|
|
5469
|
+
}
|
|
5470
|
+
|
|
5471
|
+
.x-option-list--bottom.x-option-list,
|
|
5472
|
+
.x-option-list--bottom .x-option-list {
|
|
5473
|
+
--x-color-text-option-list-button-default: var(--x-color-text-option-list-button-bottom);
|
|
5474
|
+
--x-color-text-option-list-button-default-hover: var(
|
|
5475
|
+
--x-color-text-option-list-button-bottom-hover
|
|
5476
|
+
);
|
|
5477
|
+
--x-color-border-option-list-item-default: var(--x-color-border-option-list-item-bottom);
|
|
5484
5478
|
--x-color-border-top-option-list-item-default: var(--x-color-border-top-option-list-item-bottom);
|
|
5485
5479
|
--x-color-border-right-option-list-item-default: var(
|
|
5486
5480
|
--x-color-border-top-option-list-item-bottom
|
|
@@ -5563,12 +5557,15 @@
|
|
|
5563
5557
|
--x-modal-overlay-color: rgb(0, 0, 0);
|
|
5564
5558
|
--x-modal-overlay-opacity: 0.7;
|
|
5565
5559
|
}
|
|
5560
|
+
:root {
|
|
5561
|
+
--x-modal-overlay-color: rgb(0, 0, 0);
|
|
5562
|
+
--x-modal-overlay-opacity: 0.7;
|
|
5563
|
+
}
|
|
5566
5564
|
|
|
5567
5565
|
.x-modal__overlay {
|
|
5568
5566
|
background-color: var(--x-modal-overlay-color) !important;
|
|
5569
5567
|
opacity: var(--x-modal-overlay-opacity) !important;
|
|
5570
5568
|
}
|
|
5571
|
-
|
|
5572
5569
|
:root {
|
|
5573
5570
|
--x-string-justify-message-default: center;
|
|
5574
5571
|
--x-size-gap-message-default: var(--x-size-base-03);
|
|
@@ -6569,15 +6566,6 @@
|
|
|
6569
6566
|
--x-size-align-list: stretch;
|
|
6570
6567
|
--x-size-align-list-stretch: stretch;
|
|
6571
6568
|
}
|
|
6572
|
-
:root {
|
|
6573
|
-
--x-size-border-radius-input-group-pill: var(--x-size-border-radius-base-pill);
|
|
6574
|
-
--x-size-border-radius-top-left-input-group-pill: var(--x-size-border-radius-input-group-pill);
|
|
6575
|
-
--x-size-border-radius-top-right-input-group-pill: var(--x-size-border-radius-input-group-pill);
|
|
6576
|
-
--x-size-border-radius-bottom-right-input-group-pill: var(
|
|
6577
|
-
--x-size-border-radius-input-group-pill
|
|
6578
|
-
);
|
|
6579
|
-
--x-size-border-radius-bottom-left-input-group-pill: var(--x-size-border-radius-input-group-pill);
|
|
6580
|
-
}
|
|
6581
6569
|
:root {
|
|
6582
6570
|
--x-string-flow-list: column nowrap;
|
|
6583
6571
|
--x-size-padding-list: 0;
|
|
@@ -6735,6 +6723,15 @@
|
|
|
6735
6723
|
);
|
|
6736
6724
|
--x-size-border-radius-bottom-left-input-group-pill: var(--x-size-border-radius-input-group-pill);
|
|
6737
6725
|
}
|
|
6726
|
+
:root {
|
|
6727
|
+
--x-size-border-radius-input-group-pill: var(--x-size-border-radius-base-pill);
|
|
6728
|
+
--x-size-border-radius-top-left-input-group-pill: var(--x-size-border-radius-input-group-pill);
|
|
6729
|
+
--x-size-border-radius-top-right-input-group-pill: var(--x-size-border-radius-input-group-pill);
|
|
6730
|
+
--x-size-border-radius-bottom-right-input-group-pill: var(
|
|
6731
|
+
--x-size-border-radius-input-group-pill
|
|
6732
|
+
);
|
|
6733
|
+
--x-size-border-radius-bottom-left-input-group-pill: var(--x-size-border-radius-input-group-pill);
|
|
6734
|
+
}
|
|
6738
6735
|
|
|
6739
6736
|
.x-input-group--pill.x-input-group,
|
|
6740
6737
|
.x-input-group--pill .x-input-group {
|
|
@@ -7312,15 +7309,15 @@
|
|
|
7312
7309
|
--x-size-width-icon-s: var(--x-size-base-03);
|
|
7313
7310
|
--x-size-height-icon-s: var(--x-size-base-03);
|
|
7314
7311
|
}
|
|
7312
|
+
:root {
|
|
7313
|
+
--x-size-width-icon-s: var(--x-size-base-03);
|
|
7314
|
+
--x-size-height-icon-s: var(--x-size-base-03);
|
|
7315
|
+
}
|
|
7315
7316
|
|
|
7316
7317
|
.x-icon--s {
|
|
7317
7318
|
--x-size-width-icon-default: var(--x-size-width-icon-s);
|
|
7318
7319
|
--x-size-height-icon-default: var(--x-size-height-icon-s);
|
|
7319
7320
|
}
|
|
7320
|
-
:root {
|
|
7321
|
-
--x-size-width-icon-s: var(--x-size-base-03);
|
|
7322
|
-
--x-size-height-icon-s: var(--x-size-base-03);
|
|
7323
|
-
}
|
|
7324
7321
|
:root {
|
|
7325
7322
|
--x-size-width-icon-m: var(--x-size-base-05);
|
|
7326
7323
|
--x-size-height-icon-m: var(--x-size-base-05);
|
|
@@ -7356,6 +7353,15 @@
|
|
|
7356
7353
|
--x-string-stroke-linejoin-icon-default: mitter;
|
|
7357
7354
|
--x-size-stroke-width-icon-default: 1px;
|
|
7358
7355
|
}
|
|
7356
|
+
:root {
|
|
7357
|
+
--x-color-stroke-icon-default: currentColor;
|
|
7358
|
+
--x-color-fill-icon-default: none;
|
|
7359
|
+
--x-size-width-icon-default: var(--x-size-width-icon-m);
|
|
7360
|
+
--x-size-height-icon-default: var(--x-size-height-icon-m);
|
|
7361
|
+
--x-string-stroke-linecap-icon-default: butt;
|
|
7362
|
+
--x-string-stroke-linejoin-icon-default: mitter;
|
|
7363
|
+
--x-size-stroke-width-icon-default: 1px;
|
|
7364
|
+
}
|
|
7359
7365
|
|
|
7360
7366
|
.x-icon {
|
|
7361
7367
|
stroke: var(--x-color-stroke-icon-default);
|
|
@@ -7377,15 +7383,6 @@
|
|
|
7377
7383
|
stroke: none;
|
|
7378
7384
|
fill: var(--x-color-stroke-icon-default);
|
|
7379
7385
|
}
|
|
7380
|
-
:root {
|
|
7381
|
-
--x-color-stroke-icon-default: currentColor;
|
|
7382
|
-
--x-color-fill-icon-default: none;
|
|
7383
|
-
--x-size-width-icon-default: var(--x-size-width-icon-m);
|
|
7384
|
-
--x-size-height-icon-default: var(--x-size-height-icon-m);
|
|
7385
|
-
--x-string-stroke-linecap-icon-default: butt;
|
|
7386
|
-
--x-string-stroke-linejoin-icon-default: mitter;
|
|
7387
|
-
--x-size-stroke-width-icon-default: 1px;
|
|
7388
|
-
}
|
|
7389
7386
|
:root {
|
|
7390
7387
|
--x-size-padding-grid: 0;
|
|
7391
7388
|
--x-size-gap-grid: var(--x-size-base-03);
|
|
@@ -7494,6 +7491,38 @@
|
|
|
7494
7491
|
);
|
|
7495
7492
|
--x-size-line-height-filter-default: var(--x-size-line-height-text);
|
|
7496
7493
|
}
|
|
7494
|
+
:root {
|
|
7495
|
+
--x-color-background-filter-default: transparent;
|
|
7496
|
+
--x-color-border-filter-default: var(--x-color-background-filter-default);
|
|
7497
|
+
--x-color-text-filter-default: var(--x-color-text-default);
|
|
7498
|
+
--x-color-background-filter-default-selected: var(--x-color-background-filter-default);
|
|
7499
|
+
--x-color-border-filter-default-selected: var(--x-color-border-filter-default);
|
|
7500
|
+
--x-color-text-filter-default-selected: var(--x-color-text-filter-default);
|
|
7501
|
+
--x-size-border-width-filter-default: var(--x-size-border-width-base);
|
|
7502
|
+
--x-size-border-width-top-filter-default: var(--x-size-border-width-filter-default);
|
|
7503
|
+
--x-size-border-width-right-filter-default: var(--x-size-border-width-filter-default);
|
|
7504
|
+
--x-size-border-width-bottom-filter-default: var(--x-size-border-width-filter-default);
|
|
7505
|
+
--x-size-border-width-left-filter-default: var(--x-size-border-width-filter-default);
|
|
7506
|
+
--x-size-border-radius-filter-default: var(--x-size-border-radius-base-none);
|
|
7507
|
+
--x-size-border-radius-top-left-filter-default: var(--x-size-border-radius-filter-default);
|
|
7508
|
+
--x-size-border-radius-top-right-filter-default: var(--x-size-border-radius-filter-default);
|
|
7509
|
+
--x-size-border-radius-bottom-right-filter-default: var(--x-size-border-radius-filter-default);
|
|
7510
|
+
--x-size-border-radius-bottom-left-filter-default: var(--x-size-border-radius-filter-default);
|
|
7511
|
+
--x-size-padding-top-filter-default: var(--x-size-base-03);
|
|
7512
|
+
--x-size-padding-right-filter-default: 0;
|
|
7513
|
+
--x-size-padding-bottom-filter-default: var(--x-size-base-03);
|
|
7514
|
+
--x-size-padding-left-filter-default: 0;
|
|
7515
|
+
--x-size-gap-filter-default: var(--x-size-base-03);
|
|
7516
|
+
--x-font-family-filter-default: var(--x-font-family-text);
|
|
7517
|
+
--x-size-font-filter-default: var(--x-size-font-text);
|
|
7518
|
+
--x-number-font-weight-filter-default: var(--x-number-font-weight-base-regular);
|
|
7519
|
+
--x-number-font-weight-filter-default-selected: var(--x-number-font-weight-base-bold);
|
|
7520
|
+
--x-number-font-weight-filter-count-default: var(--x-number-font-weight-base-light);
|
|
7521
|
+
--x-number-font-weight-filter-count-default-selected: var(
|
|
7522
|
+
--x-number-font-weight-filter-count-default
|
|
7523
|
+
);
|
|
7524
|
+
--x-size-line-height-filter-default: var(--x-size-line-height-text);
|
|
7525
|
+
}
|
|
7497
7526
|
|
|
7498
7527
|
[dir="ltr"] .x-filter,[dir="ltr"] .x-facet-filter {
|
|
7499
7528
|
padding-left: var(--x-size-padding-left-filter-default);
|
|
@@ -7575,38 +7604,6 @@
|
|
|
7575
7604
|
--x-number-font-weight-filter-count-default-selected
|
|
7576
7605
|
);
|
|
7577
7606
|
}
|
|
7578
|
-
:root {
|
|
7579
|
-
--x-color-background-filter-default: transparent;
|
|
7580
|
-
--x-color-border-filter-default: var(--x-color-background-filter-default);
|
|
7581
|
-
--x-color-text-filter-default: var(--x-color-text-default);
|
|
7582
|
-
--x-color-background-filter-default-selected: var(--x-color-background-filter-default);
|
|
7583
|
-
--x-color-border-filter-default-selected: var(--x-color-border-filter-default);
|
|
7584
|
-
--x-color-text-filter-default-selected: var(--x-color-text-filter-default);
|
|
7585
|
-
--x-size-border-width-filter-default: var(--x-size-border-width-base);
|
|
7586
|
-
--x-size-border-width-top-filter-default: var(--x-size-border-width-filter-default);
|
|
7587
|
-
--x-size-border-width-right-filter-default: var(--x-size-border-width-filter-default);
|
|
7588
|
-
--x-size-border-width-bottom-filter-default: var(--x-size-border-width-filter-default);
|
|
7589
|
-
--x-size-border-width-left-filter-default: var(--x-size-border-width-filter-default);
|
|
7590
|
-
--x-size-border-radius-filter-default: var(--x-size-border-radius-base-none);
|
|
7591
|
-
--x-size-border-radius-top-left-filter-default: var(--x-size-border-radius-filter-default);
|
|
7592
|
-
--x-size-border-radius-top-right-filter-default: var(--x-size-border-radius-filter-default);
|
|
7593
|
-
--x-size-border-radius-bottom-right-filter-default: var(--x-size-border-radius-filter-default);
|
|
7594
|
-
--x-size-border-radius-bottom-left-filter-default: var(--x-size-border-radius-filter-default);
|
|
7595
|
-
--x-size-padding-top-filter-default: var(--x-size-base-03);
|
|
7596
|
-
--x-size-padding-right-filter-default: 0;
|
|
7597
|
-
--x-size-padding-bottom-filter-default: var(--x-size-base-03);
|
|
7598
|
-
--x-size-padding-left-filter-default: 0;
|
|
7599
|
-
--x-size-gap-filter-default: var(--x-size-base-03);
|
|
7600
|
-
--x-font-family-filter-default: var(--x-font-family-text);
|
|
7601
|
-
--x-size-font-filter-default: var(--x-size-font-text);
|
|
7602
|
-
--x-number-font-weight-filter-default: var(--x-number-font-weight-base-regular);
|
|
7603
|
-
--x-number-font-weight-filter-default-selected: var(--x-number-font-weight-base-bold);
|
|
7604
|
-
--x-number-font-weight-filter-count-default: var(--x-number-font-weight-base-light);
|
|
7605
|
-
--x-number-font-weight-filter-count-default-selected: var(
|
|
7606
|
-
--x-number-font-weight-filter-count-default
|
|
7607
|
-
);
|
|
7608
|
-
--x-size-line-height-filter-default: var(--x-size-line-height-text);
|
|
7609
|
-
}
|
|
7610
7607
|
:root {
|
|
7611
7608
|
--x-color-border-facet-outlined: var(--x-color-base-neutral-70);
|
|
7612
7609
|
--x-size-border-width-facet-outlined: var(--x-size-border-width-base);
|
|
@@ -7648,6 +7645,38 @@
|
|
|
7648
7645
|
--x-size-padding-bottom-facet-header-default: var(--x-size-padding-bottom-facet-header-outlined);
|
|
7649
7646
|
--x-size-padding-left-facet-header-default: var(--x-size-padding-left-facet-header-outlined);
|
|
7650
7647
|
}
|
|
7648
|
+
:root {
|
|
7649
|
+
--x-color-border-facet-header-line: var(--x-color-base-neutral-10);
|
|
7650
|
+
--x-size-border-width-facet-header-line: var(--x-size-border-width-base);
|
|
7651
|
+
--x-size-border-width-top-facet-header-line: 0;
|
|
7652
|
+
--x-size-border-width-right-facet-header-line: 0;
|
|
7653
|
+
--x-size-border-width-bottom-facet-header-line: var(--x-size-border-width-facet-header-line);
|
|
7654
|
+
--x-size-border-width-left-facet-header-line: 0;
|
|
7655
|
+
}
|
|
7656
|
+
:root {
|
|
7657
|
+
--x-color-border-facet-header-line: var(--x-color-base-neutral-10);
|
|
7658
|
+
--x-size-border-width-facet-header-line: var(--x-size-border-width-base);
|
|
7659
|
+
--x-size-border-width-top-facet-header-line: 0;
|
|
7660
|
+
--x-size-border-width-right-facet-header-line: 0;
|
|
7661
|
+
--x-size-border-width-bottom-facet-header-line: var(--x-size-border-width-facet-header-line);
|
|
7662
|
+
--x-size-border-width-left-facet-header-line: 0;
|
|
7663
|
+
}
|
|
7664
|
+
|
|
7665
|
+
.x-facet--line.x-facet,
|
|
7666
|
+
.x-facet--line .x-facet {
|
|
7667
|
+
--x-color-border-facet-header-default: var(--x-color-border-facet-header-line);
|
|
7668
|
+
--x-size-border-width-facet-header-default: var(--x-size-border-width-facet-header-line);
|
|
7669
|
+
--x-size-border-width-top-facet-header-default: var(--x-size-border-width-top-facet-header-line);
|
|
7670
|
+
--x-size-border-width-right-facet-header-default: var(
|
|
7671
|
+
--x-size-border-width-right-facet-header-line
|
|
7672
|
+
);
|
|
7673
|
+
--x-size-border-width-bottom-facet-header-default: var(
|
|
7674
|
+
--x-size-border-width-bottom-facet-header-line
|
|
7675
|
+
);
|
|
7676
|
+
--x-size-border-width-left-facet-header-default: var(
|
|
7677
|
+
--x-size-border-width-left-facet-header-line
|
|
7678
|
+
);
|
|
7679
|
+
}
|
|
7651
7680
|
:root {
|
|
7652
7681
|
--x-color-background-facet-default: transparent;
|
|
7653
7682
|
--x-color-border-facet-default: var(--x-color-background-facet-default);
|
|
@@ -7681,38 +7710,6 @@
|
|
|
7681
7710
|
--x-number-font-weight-facet-default: var(--x-number-font-weight-title3);
|
|
7682
7711
|
--x-size-line-height-facet-default: var(--x-size-line-height-title3);
|
|
7683
7712
|
}
|
|
7684
|
-
:root {
|
|
7685
|
-
--x-color-border-facet-header-line: var(--x-color-base-neutral-10);
|
|
7686
|
-
--x-size-border-width-facet-header-line: var(--x-size-border-width-base);
|
|
7687
|
-
--x-size-border-width-top-facet-header-line: 0;
|
|
7688
|
-
--x-size-border-width-right-facet-header-line: 0;
|
|
7689
|
-
--x-size-border-width-bottom-facet-header-line: var(--x-size-border-width-facet-header-line);
|
|
7690
|
-
--x-size-border-width-left-facet-header-line: 0;
|
|
7691
|
-
}
|
|
7692
|
-
:root {
|
|
7693
|
-
--x-color-border-facet-header-line: var(--x-color-base-neutral-10);
|
|
7694
|
-
--x-size-border-width-facet-header-line: var(--x-size-border-width-base);
|
|
7695
|
-
--x-size-border-width-top-facet-header-line: 0;
|
|
7696
|
-
--x-size-border-width-right-facet-header-line: 0;
|
|
7697
|
-
--x-size-border-width-bottom-facet-header-line: var(--x-size-border-width-facet-header-line);
|
|
7698
|
-
--x-size-border-width-left-facet-header-line: 0;
|
|
7699
|
-
}
|
|
7700
|
-
|
|
7701
|
-
.x-facet--line.x-facet,
|
|
7702
|
-
.x-facet--line .x-facet {
|
|
7703
|
-
--x-color-border-facet-header-default: var(--x-color-border-facet-header-line);
|
|
7704
|
-
--x-size-border-width-facet-header-default: var(--x-size-border-width-facet-header-line);
|
|
7705
|
-
--x-size-border-width-top-facet-header-default: var(--x-size-border-width-top-facet-header-line);
|
|
7706
|
-
--x-size-border-width-right-facet-header-default: var(
|
|
7707
|
-
--x-size-border-width-right-facet-header-line
|
|
7708
|
-
);
|
|
7709
|
-
--x-size-border-width-bottom-facet-header-default: var(
|
|
7710
|
-
--x-size-border-width-bottom-facet-header-line
|
|
7711
|
-
);
|
|
7712
|
-
--x-size-border-width-left-facet-header-default: var(
|
|
7713
|
-
--x-size-border-width-left-facet-header-line
|
|
7714
|
-
);
|
|
7715
|
-
}
|
|
7716
7713
|
:root {
|
|
7717
7714
|
--x-color-background-facet-default: transparent;
|
|
7718
7715
|
--x-color-border-facet-default: var(--x-color-background-facet-default);
|
|
@@ -7891,6 +7888,13 @@
|
|
|
7891
7888
|
:root {
|
|
7892
7889
|
--x-size-width-dropdown-s: 74px;
|
|
7893
7890
|
}
|
|
7891
|
+
:root {
|
|
7892
|
+
--x-size-width-dropdown-s: 74px;
|
|
7893
|
+
}
|
|
7894
|
+
|
|
7895
|
+
.x-dropdown.x-dropdown--s {
|
|
7896
|
+
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-s);
|
|
7897
|
+
}
|
|
7894
7898
|
:root {
|
|
7895
7899
|
--x-size-gap-dropdown-pill: var(--x-size-base-03);
|
|
7896
7900
|
--x-size-border-width-dropdown-list-pill: var(--x-size-border-width-base);
|
|
@@ -7899,13 +7903,6 @@
|
|
|
7899
7903
|
--x-size-border-width-bottom-dropdown-list-pill: var(--x-size-border-width-dropdown-list-pill);
|
|
7900
7904
|
--x-size-border-width-left-dropdown-list-pill: var(--x-size-border-width-dropdown-list-pill);
|
|
7901
7905
|
}
|
|
7902
|
-
:root {
|
|
7903
|
-
--x-size-width-dropdown-s: 74px;
|
|
7904
|
-
}
|
|
7905
|
-
|
|
7906
|
-
.x-dropdown.x-dropdown--s {
|
|
7907
|
-
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-s);
|
|
7908
|
-
}
|
|
7909
7906
|
:root {
|
|
7910
7907
|
--x-size-gap-dropdown-pill: var(--x-size-base-03);
|
|
7911
7908
|
--x-size-border-width-dropdown-list-pill: var(--x-size-border-width-base);
|
|
@@ -7952,6 +7949,13 @@
|
|
|
7952
7949
|
:root {
|
|
7953
7950
|
--x-size-width-dropdown-m: 130px;
|
|
7954
7951
|
}
|
|
7952
|
+
:root {
|
|
7953
|
+
--x-size-width-dropdown-m: 130px;
|
|
7954
|
+
}
|
|
7955
|
+
|
|
7956
|
+
.x-dropdown.x-dropdown--m {
|
|
7957
|
+
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-m);
|
|
7958
|
+
}
|
|
7955
7959
|
:root {
|
|
7956
7960
|
--x-size-padding-block-dropdown-item-line: var(--x-size-base-03);
|
|
7957
7961
|
--x-size-padding-inline-dropdown-item-line: 0 var(--x-size-base-03);
|
|
@@ -7976,13 +7980,6 @@
|
|
|
7976
7980
|
--x-size-border-width-bottom-dropdown-list-line: var(--x-size-border-width-dropdown-list-line);
|
|
7977
7981
|
--x-size-border-width-left-dropdown-list-line: var(--x-size-border-width-dropdown-list-line);
|
|
7978
7982
|
}
|
|
7979
|
-
:root {
|
|
7980
|
-
--x-size-width-dropdown-m: 130px;
|
|
7981
|
-
}
|
|
7982
|
-
|
|
7983
|
-
.x-dropdown.x-dropdown--m {
|
|
7984
|
-
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-m);
|
|
7985
|
-
}
|
|
7986
7983
|
:root {
|
|
7987
7984
|
--x-size-padding-block-dropdown-item-line: var(--x-size-base-03);
|
|
7988
7985
|
--x-size-padding-inline-dropdown-item-line: 0 var(--x-size-base-03);
|
|
@@ -8129,9 +8126,82 @@
|
|
|
8129
8126
|
--x-string-overflow-dropdown-toggle-default: hidden;
|
|
8130
8127
|
--x-string-overflow-dropdown-list-default: hidden;
|
|
8131
8128
|
}
|
|
8132
|
-
|
|
8133
|
-
|
|
8134
|
-
|
|
8129
|
+
:root {
|
|
8130
|
+
--x-size-border-radius-dropdown-default: var(--x-size-border-radius-base-none);
|
|
8131
|
+
--x-size-border-radius-top-left-dropdown-default: var(--x-size-border-radius-dropdown-default);
|
|
8132
|
+
--x-size-border-radius-top-right-dropdown-default: var(--x-size-border-radius-dropdown-default);
|
|
8133
|
+
--x-size-border-radius-bottom-right-dropdown-default: var(
|
|
8134
|
+
--x-size-border-radius-dropdown-default
|
|
8135
|
+
);
|
|
8136
|
+
--x-size-border-radius-bottom-left-dropdown-default: var(--x-size-border-radius-dropdown-default);
|
|
8137
|
+
--x-size-border-width-dropdown-toggle-default: var(--x-size-border-width-base);
|
|
8138
|
+
--x-size-border-width-top-dropdown-toggle-default: var(
|
|
8139
|
+
--x-size-border-width-dropdown-toggle-default
|
|
8140
|
+
);
|
|
8141
|
+
--x-size-border-width-right-dropdown-toggle-default: var(
|
|
8142
|
+
--x-size-border-width-dropdown-toggle-default
|
|
8143
|
+
);
|
|
8144
|
+
--x-size-border-width-bottom-dropdown-toggle-default: var(
|
|
8145
|
+
--x-size-border-width-dropdown-toggle-default
|
|
8146
|
+
);
|
|
8147
|
+
--x-size-border-width-left-dropdown-toggle-default: var(
|
|
8148
|
+
--x-size-border-width-dropdown-toggle-default
|
|
8149
|
+
);
|
|
8150
|
+
--x-size-border-width-dropdown-list-default: var(--x-size-border-width-base);
|
|
8151
|
+
--x-size-border-width-top-dropdown-list-default: 0;
|
|
8152
|
+
--x-size-border-width-right-dropdown-list-default: var(
|
|
8153
|
+
--x-size-border-width-dropdown-list-default
|
|
8154
|
+
);
|
|
8155
|
+
--x-size-border-width-bottom-dropdown-list-default: var(
|
|
8156
|
+
--x-size-border-width-dropdown-list-default
|
|
8157
|
+
);
|
|
8158
|
+
--x-size-border-width-left-dropdown-list-default: var(
|
|
8159
|
+
--x-size-border-width-dropdown-list-default
|
|
8160
|
+
);
|
|
8161
|
+
--x-color-border-dropdown-toggle-default: var(--x-color-base-neutral-95);
|
|
8162
|
+
--x-color-border-dropdown-list-default: var(--x-color-border-dropdown-toggle-default);
|
|
8163
|
+
--x-color-background-dropdown-default: var(--x-color-base-neutral-100);
|
|
8164
|
+
--x-color-background-dropdown-toggle-default: var(--x-color-base-neutral-100);
|
|
8165
|
+
--x-color-background-dropdown-toggle-open-default: var(
|
|
8166
|
+
--x-color-background-dropdown-toggle-default
|
|
8167
|
+
);
|
|
8168
|
+
--x-color-background-dropdown-item-default-selected: var(--x-color-base-neutral-95);
|
|
8169
|
+
--x-color-background-dropdown-item-default-hover: var(--x-color-base-neutral-95);
|
|
8170
|
+
--x-color-text-dropdown-default: var(--x-color-text-default);
|
|
8171
|
+
--x-color-text-dropdown-toggle-default: var(--x-color-text-dropdown-default);
|
|
8172
|
+
--x-color-text-dropdown-toggle-default-selected: var(--x-color-base-neutral-35);
|
|
8173
|
+
--x-color-text-dropdown-item-default-hover: var(--x-color-base-neutral-35);
|
|
8174
|
+
--x-color-text-dropdown-item-default-selected: var(--x-color-text-default);
|
|
8175
|
+
--x-font-family-dropdown-default: var(--x-font-family-text);
|
|
8176
|
+
--x-size-font-dropdown-default: var(--x-size-font-text);
|
|
8177
|
+
--x-size-line-height-dropdown-default: var(--x-size-line-height-text);
|
|
8178
|
+
--x-number-font-weight-dropdown-default: var(--x-number-font-weight-base-regular);
|
|
8179
|
+
--x-number-font-weight-dropdown-item-default-hover: var(--x-number-font-weight-base-bold);
|
|
8180
|
+
--x-number-font-weight-dropdown-item-default-selected: var(--x-number-font-weight-base-regular);
|
|
8181
|
+
--x-font-decoration-dropdown-item-default-hover: none;
|
|
8182
|
+
--x-font-decoration-dropdown-item-default-selected: none;
|
|
8183
|
+
--x-size-width-dropdown-toggle-default: 100%;
|
|
8184
|
+
--x-size-min-width-dropdown-list-default: 100%;
|
|
8185
|
+
--x-size-gap-dropdown-default: 0;
|
|
8186
|
+
--x-size-padding-top-dropdown-toggle-default: var(--x-size-padding-top-dropdown-item-default);
|
|
8187
|
+
--x-size-padding-right-dropdown-toggle-default: var(--x-size-padding-right-dropdown-item-default);
|
|
8188
|
+
--x-size-padding-bottom-dropdown-toggle-default: var(
|
|
8189
|
+
--x-size-padding-bottom-dropdown-item-default
|
|
8190
|
+
);
|
|
8191
|
+
--x-size-padding-left-dropdown-toggle-default: var(--x-size-padding-left-dropdown-item-default);
|
|
8192
|
+
--x-size-padding-vertical-dropdown-list-default: 0;
|
|
8193
|
+
--x-size-padding-top-dropdown-item-default: var(--x-size-base-04);
|
|
8194
|
+
--x-size-padding-right-dropdown-item-default: var(--x-size-base-05);
|
|
8195
|
+
--x-size-padding-bottom-dropdown-item-default: var(--x-size-base-04);
|
|
8196
|
+
--x-size-padding-left-dropdown-item-default: var(--x-size-base-05);
|
|
8197
|
+
--x-size-gap-dropdown-item-default: var(--x-size-base-03);
|
|
8198
|
+
--x-string-box-shadow-dropdown-default: none;
|
|
8199
|
+
--x-string-overflow-dropdown-toggle-default: hidden;
|
|
8200
|
+
--x-string-overflow-dropdown-list-default: hidden;
|
|
8201
|
+
}
|
|
8202
|
+
|
|
8203
|
+
.x-dropdown {
|
|
8204
|
+
box-sizing: border-box;
|
|
8135
8205
|
position: relative;
|
|
8136
8206
|
font-size: var(--x-size-font-dropdown-default);
|
|
8137
8207
|
font-family: var(--x-font-family-dropdown-default);
|
|
@@ -8298,79 +8368,6 @@
|
|
|
8298
8368
|
[dir="rtl"] .x-dropdown--right .x-dropdown__items-list {
|
|
8299
8369
|
left: 0;
|
|
8300
8370
|
}
|
|
8301
|
-
:root {
|
|
8302
|
-
--x-size-border-radius-dropdown-default: var(--x-size-border-radius-base-none);
|
|
8303
|
-
--x-size-border-radius-top-left-dropdown-default: var(--x-size-border-radius-dropdown-default);
|
|
8304
|
-
--x-size-border-radius-top-right-dropdown-default: var(--x-size-border-radius-dropdown-default);
|
|
8305
|
-
--x-size-border-radius-bottom-right-dropdown-default: var(
|
|
8306
|
-
--x-size-border-radius-dropdown-default
|
|
8307
|
-
);
|
|
8308
|
-
--x-size-border-radius-bottom-left-dropdown-default: var(--x-size-border-radius-dropdown-default);
|
|
8309
|
-
--x-size-border-width-dropdown-toggle-default: var(--x-size-border-width-base);
|
|
8310
|
-
--x-size-border-width-top-dropdown-toggle-default: var(
|
|
8311
|
-
--x-size-border-width-dropdown-toggle-default
|
|
8312
|
-
);
|
|
8313
|
-
--x-size-border-width-right-dropdown-toggle-default: var(
|
|
8314
|
-
--x-size-border-width-dropdown-toggle-default
|
|
8315
|
-
);
|
|
8316
|
-
--x-size-border-width-bottom-dropdown-toggle-default: var(
|
|
8317
|
-
--x-size-border-width-dropdown-toggle-default
|
|
8318
|
-
);
|
|
8319
|
-
--x-size-border-width-left-dropdown-toggle-default: var(
|
|
8320
|
-
--x-size-border-width-dropdown-toggle-default
|
|
8321
|
-
);
|
|
8322
|
-
--x-size-border-width-dropdown-list-default: var(--x-size-border-width-base);
|
|
8323
|
-
--x-size-border-width-top-dropdown-list-default: 0;
|
|
8324
|
-
--x-size-border-width-right-dropdown-list-default: var(
|
|
8325
|
-
--x-size-border-width-dropdown-list-default
|
|
8326
|
-
);
|
|
8327
|
-
--x-size-border-width-bottom-dropdown-list-default: var(
|
|
8328
|
-
--x-size-border-width-dropdown-list-default
|
|
8329
|
-
);
|
|
8330
|
-
--x-size-border-width-left-dropdown-list-default: var(
|
|
8331
|
-
--x-size-border-width-dropdown-list-default
|
|
8332
|
-
);
|
|
8333
|
-
--x-color-border-dropdown-toggle-default: var(--x-color-base-neutral-95);
|
|
8334
|
-
--x-color-border-dropdown-list-default: var(--x-color-border-dropdown-toggle-default);
|
|
8335
|
-
--x-color-background-dropdown-default: var(--x-color-base-neutral-100);
|
|
8336
|
-
--x-color-background-dropdown-toggle-default: var(--x-color-base-neutral-100);
|
|
8337
|
-
--x-color-background-dropdown-toggle-open-default: var(
|
|
8338
|
-
--x-color-background-dropdown-toggle-default
|
|
8339
|
-
);
|
|
8340
|
-
--x-color-background-dropdown-item-default-selected: var(--x-color-base-neutral-95);
|
|
8341
|
-
--x-color-background-dropdown-item-default-hover: var(--x-color-base-neutral-95);
|
|
8342
|
-
--x-color-text-dropdown-default: var(--x-color-text-default);
|
|
8343
|
-
--x-color-text-dropdown-toggle-default: var(--x-color-text-dropdown-default);
|
|
8344
|
-
--x-color-text-dropdown-toggle-default-selected: var(--x-color-base-neutral-35);
|
|
8345
|
-
--x-color-text-dropdown-item-default-hover: var(--x-color-base-neutral-35);
|
|
8346
|
-
--x-color-text-dropdown-item-default-selected: var(--x-color-text-default);
|
|
8347
|
-
--x-font-family-dropdown-default: var(--x-font-family-text);
|
|
8348
|
-
--x-size-font-dropdown-default: var(--x-size-font-text);
|
|
8349
|
-
--x-size-line-height-dropdown-default: var(--x-size-line-height-text);
|
|
8350
|
-
--x-number-font-weight-dropdown-default: var(--x-number-font-weight-base-regular);
|
|
8351
|
-
--x-number-font-weight-dropdown-item-default-hover: var(--x-number-font-weight-base-bold);
|
|
8352
|
-
--x-number-font-weight-dropdown-item-default-selected: var(--x-number-font-weight-base-regular);
|
|
8353
|
-
--x-font-decoration-dropdown-item-default-hover: none;
|
|
8354
|
-
--x-font-decoration-dropdown-item-default-selected: none;
|
|
8355
|
-
--x-size-width-dropdown-toggle-default: 100%;
|
|
8356
|
-
--x-size-min-width-dropdown-list-default: 100%;
|
|
8357
|
-
--x-size-gap-dropdown-default: 0;
|
|
8358
|
-
--x-size-padding-top-dropdown-toggle-default: var(--x-size-padding-top-dropdown-item-default);
|
|
8359
|
-
--x-size-padding-right-dropdown-toggle-default: var(--x-size-padding-right-dropdown-item-default);
|
|
8360
|
-
--x-size-padding-bottom-dropdown-toggle-default: var(
|
|
8361
|
-
--x-size-padding-bottom-dropdown-item-default
|
|
8362
|
-
);
|
|
8363
|
-
--x-size-padding-left-dropdown-toggle-default: var(--x-size-padding-left-dropdown-item-default);
|
|
8364
|
-
--x-size-padding-vertical-dropdown-list-default: 0;
|
|
8365
|
-
--x-size-padding-top-dropdown-item-default: var(--x-size-base-04);
|
|
8366
|
-
--x-size-padding-right-dropdown-item-default: var(--x-size-base-05);
|
|
8367
|
-
--x-size-padding-bottom-dropdown-item-default: var(--x-size-base-04);
|
|
8368
|
-
--x-size-padding-left-dropdown-item-default: var(--x-size-base-05);
|
|
8369
|
-
--x-size-gap-dropdown-item-default: var(--x-size-base-03);
|
|
8370
|
-
--x-string-box-shadow-dropdown-default: none;
|
|
8371
|
-
--x-string-overflow-dropdown-toggle-default: hidden;
|
|
8372
|
-
--x-string-overflow-dropdown-list-default: hidden;
|
|
8373
|
-
}
|
|
8374
8371
|
:root {
|
|
8375
8372
|
--x-size-gap-dropdown-card: var(--x-size-base-03);
|
|
8376
8373
|
--x-size-border-radius-dropdown-card: var(--x-size-border-radius-base-s);
|
|
@@ -8384,16 +8381,6 @@
|
|
|
8384
8381
|
--x-size-border-width-bottom-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8385
8382
|
--x-size-border-width-left-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8386
8383
|
}
|
|
8387
|
-
:root {
|
|
8388
|
-
--x-color-background-button-tertiary: var(--x-color-base-neutral-95);
|
|
8389
|
-
--x-color-border-button-tertiary: var(--x-color-base-neutral-70);
|
|
8390
|
-
--x-color-text-button-tertiary: var(--x-color-text-default);
|
|
8391
|
-
--x-size-border-width-button-tertiary: var(--x-size-border-width-base);
|
|
8392
|
-
--x-size-border-width-top-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8393
|
-
--x-size-border-width-right-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8394
|
-
--x-size-border-width-bottom-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8395
|
-
--x-size-border-width-left-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8396
|
-
}
|
|
8397
8384
|
:root {
|
|
8398
8385
|
--x-size-gap-dropdown-card: var(--x-size-base-03);
|
|
8399
8386
|
--x-size-border-radius-dropdown-card: var(--x-size-border-radius-base-s);
|
|
@@ -8447,6 +8434,16 @@
|
|
|
8447
8434
|
--x-size-border-width-bottom-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8448
8435
|
--x-size-border-width-left-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8449
8436
|
}
|
|
8437
|
+
:root {
|
|
8438
|
+
--x-color-background-button-tertiary: var(--x-color-base-neutral-95);
|
|
8439
|
+
--x-color-border-button-tertiary: var(--x-color-base-neutral-70);
|
|
8440
|
+
--x-color-text-button-tertiary: var(--x-color-text-default);
|
|
8441
|
+
--x-size-border-width-button-tertiary: var(--x-size-border-width-base);
|
|
8442
|
+
--x-size-border-width-top-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8443
|
+
--x-size-border-width-right-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8444
|
+
--x-size-border-width-bottom-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8445
|
+
--x-size-border-width-left-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8446
|
+
}
|
|
8450
8447
|
|
|
8451
8448
|
.x-button--tertiary.x-button,
|
|
8452
8449
|
.x-button--tertiary .x-button {
|
|
@@ -8496,6 +8493,13 @@
|
|
|
8496
8493
|
--x-size-border-radius-bottom-right-button-round: var(--x-size-border-radius-button-round);
|
|
8497
8494
|
--x-size-border-radius-bottom-left-button-round: var(--x-size-border-radius-button-round);
|
|
8498
8495
|
}
|
|
8496
|
+
:root {
|
|
8497
|
+
--x-size-border-radius-button-round: var(--x-size-border-radius-base-pill);
|
|
8498
|
+
--x-size-border-radius-top-left-button-round: var(--x-size-border-radius-button-round);
|
|
8499
|
+
--x-size-border-radius-top-right-button-round: var(--x-size-border-radius-button-round);
|
|
8500
|
+
--x-size-border-radius-bottom-right-button-round: var(--x-size-border-radius-button-round);
|
|
8501
|
+
--x-size-border-radius-bottom-left-button-round: var(--x-size-border-radius-button-round);
|
|
8502
|
+
}
|
|
8499
8503
|
|
|
8500
8504
|
.x-button--round.x-button,
|
|
8501
8505
|
.x-button--round .x-button {
|
|
@@ -8514,13 +8518,6 @@
|
|
|
8514
8518
|
--x-size-padding-left-button-default: 0;
|
|
8515
8519
|
--x-size-padding-right-button-default: 0;
|
|
8516
8520
|
}
|
|
8517
|
-
:root {
|
|
8518
|
-
--x-size-border-radius-button-round: var(--x-size-border-radius-base-pill);
|
|
8519
|
-
--x-size-border-radius-top-left-button-round: var(--x-size-border-radius-button-round);
|
|
8520
|
-
--x-size-border-radius-top-right-button-round: var(--x-size-border-radius-button-round);
|
|
8521
|
-
--x-size-border-radius-bottom-right-button-round: var(--x-size-border-radius-button-round);
|
|
8522
|
-
--x-size-border-radius-bottom-left-button-round: var(--x-size-border-radius-button-round);
|
|
8523
|
-
}
|
|
8524
8521
|
:root {
|
|
8525
8522
|
--x-color-background-button-primary: var(--x-color-background-button-default);
|
|
8526
8523
|
--x-color-border-button-primary: var(--x-color-border-button-default);
|
|
@@ -8631,6 +8628,29 @@
|
|
|
8631
8628
|
--x-number-font-weight-button-default: var(--x-number-font-weight-base-bold);
|
|
8632
8629
|
--x-size-line-height-button-default: var(--x-size-line-height-text);
|
|
8633
8630
|
}
|
|
8631
|
+
:root {
|
|
8632
|
+
--x-color-background-button-default: var(--x-color-base-lead);
|
|
8633
|
+
--x-color-border-button-default: var(--x-color-background-button-default);
|
|
8634
|
+
--x-color-text-button-default: var(--x-color-base-neutral-100);
|
|
8635
|
+
--x-size-border-radius-button-default: var(--x-size-border-radius-base-none);
|
|
8636
|
+
--x-size-border-radius-top-left-button-default: var(--x-size-border-radius-button-default);
|
|
8637
|
+
--x-size-border-radius-top-right-button-default: var(--x-size-border-radius-button-default);
|
|
8638
|
+
--x-size-border-radius-bottom-right-button-default: var(--x-size-border-radius-button-default);
|
|
8639
|
+
--x-size-border-radius-bottom-left-button-default: var(--x-size-border-radius-button-default);
|
|
8640
|
+
--x-size-border-width-button-default: var(--x-size-border-width-base);
|
|
8641
|
+
--x-size-border-width-top-button-default: var(--x-size-border-width-button-default);
|
|
8642
|
+
--x-size-border-width-right-button-default: var(--x-size-border-width-button-default);
|
|
8643
|
+
--x-size-border-width-bottom-button-default: var(--x-size-border-width-button-default);
|
|
8644
|
+
--x-size-border-width-left-button-default: var(--x-size-border-width-button-default);
|
|
8645
|
+
--x-size-height-button-default: var(--x-size-base-08);
|
|
8646
|
+
--x-size-padding-right-button-default: var(--x-size-base-05);
|
|
8647
|
+
--x-size-padding-left-button-default: var(--x-size-base-05);
|
|
8648
|
+
--x-size-gap-button-default: var(--x-size-base-03);
|
|
8649
|
+
--x-font-family-button-default: var(--x-font-family-text);
|
|
8650
|
+
--x-size-font-button-default: var(--x-size-font-text);
|
|
8651
|
+
--x-number-font-weight-button-default: var(--x-number-font-weight-base-bold);
|
|
8652
|
+
--x-size-line-height-button-default: var(--x-size-line-height-text);
|
|
8653
|
+
}
|
|
8634
8654
|
|
|
8635
8655
|
[dir="ltr"] .x-button {
|
|
8636
8656
|
padding-right: var(--x-size-padding-right-button-default);
|
|
@@ -8694,27 +8714,11 @@
|
|
|
8694
8714
|
}
|
|
8695
8715
|
}
|
|
8696
8716
|
:root {
|
|
8697
|
-
--x-
|
|
8698
|
-
--x-
|
|
8699
|
-
--x-
|
|
8700
|
-
--x-size-border-radius-button-
|
|
8701
|
-
--x-size-border-radius-
|
|
8702
|
-
--x-size-border-radius-top-right-button-default: var(--x-size-border-radius-button-default);
|
|
8703
|
-
--x-size-border-radius-bottom-right-button-default: var(--x-size-border-radius-button-default);
|
|
8704
|
-
--x-size-border-radius-bottom-left-button-default: var(--x-size-border-radius-button-default);
|
|
8705
|
-
--x-size-border-width-button-default: var(--x-size-border-width-base);
|
|
8706
|
-
--x-size-border-width-top-button-default: var(--x-size-border-width-button-default);
|
|
8707
|
-
--x-size-border-width-right-button-default: var(--x-size-border-width-button-default);
|
|
8708
|
-
--x-size-border-width-bottom-button-default: var(--x-size-border-width-button-default);
|
|
8709
|
-
--x-size-border-width-left-button-default: var(--x-size-border-width-button-default);
|
|
8710
|
-
--x-size-height-button-default: var(--x-size-base-08);
|
|
8711
|
-
--x-size-padding-right-button-default: var(--x-size-base-05);
|
|
8712
|
-
--x-size-padding-left-button-default: var(--x-size-base-05);
|
|
8713
|
-
--x-size-gap-button-default: var(--x-size-base-03);
|
|
8714
|
-
--x-font-family-button-default: var(--x-font-family-text);
|
|
8715
|
-
--x-size-font-button-default: var(--x-size-font-text);
|
|
8716
|
-
--x-number-font-weight-button-default: var(--x-number-font-weight-base-bold);
|
|
8717
|
-
--x-size-line-height-button-default: var(--x-size-line-height-text);
|
|
8717
|
+
--x-size-border-radius-button-card: var(--x-size-border-radius-base-s);
|
|
8718
|
+
--x-size-border-radius-top-left-button-card: var(--x-size-border-radius-button-card);
|
|
8719
|
+
--x-size-border-radius-top-right-button-card: var(--x-size-border-radius-button-card);
|
|
8720
|
+
--x-size-border-radius-bottom-right-button-card: var(--x-size-border-radius-button-card);
|
|
8721
|
+
--x-size-border-radius-bottom-left-button-card: var(--x-size-border-radius-button-card);
|
|
8718
8722
|
}
|
|
8719
8723
|
:root {
|
|
8720
8724
|
--x-size-border-radius-button-card: var(--x-size-border-radius-base-s);
|
|
@@ -8723,6 +8727,21 @@
|
|
|
8723
8727
|
--x-size-border-radius-bottom-right-button-card: var(--x-size-border-radius-button-card);
|
|
8724
8728
|
--x-size-border-radius-bottom-left-button-card: var(--x-size-border-radius-button-card);
|
|
8725
8729
|
}
|
|
8730
|
+
|
|
8731
|
+
.x-button--card.x-button,
|
|
8732
|
+
.x-button--card .x-button {
|
|
8733
|
+
--x-size-border-radius-button-default: var(--x-size-border-radius-button-card);
|
|
8734
|
+
--x-size-border-radius-top-left-button-default: var(--x-size-border-radius-top-left-button-card);
|
|
8735
|
+
--x-size-border-radius-top-right-button-default: var(
|
|
8736
|
+
--x-size-border-radius-top-right-button-card
|
|
8737
|
+
);
|
|
8738
|
+
--x-size-border-radius-bottom-right-button-default: var(
|
|
8739
|
+
--x-size-border-radius-bottom-right-button-card
|
|
8740
|
+
);
|
|
8741
|
+
--x-size-border-radius-bottom-left-button-default: var(
|
|
8742
|
+
--x-size-border-radius-bottom-left-button-card
|
|
8743
|
+
);
|
|
8744
|
+
}
|
|
8726
8745
|
:root {
|
|
8727
8746
|
--x-color-background-badge-default: var(--x-color-base-neutral-10);
|
|
8728
8747
|
--x-color-text-badge-default: var(--x-color-base-neutral-100);
|
|
@@ -8804,35 +8823,6 @@
|
|
|
8804
8823
|
--x-size-base-19: 280px;
|
|
8805
8824
|
--x-size-base-20: 344px;
|
|
8806
8825
|
}
|
|
8807
|
-
:root {
|
|
8808
|
-
--x-size-border-radius-button-card: var(--x-size-border-radius-base-s);
|
|
8809
|
-
--x-size-border-radius-top-left-button-card: var(--x-size-border-radius-button-card);
|
|
8810
|
-
--x-size-border-radius-top-right-button-card: var(--x-size-border-radius-button-card);
|
|
8811
|
-
--x-size-border-radius-bottom-right-button-card: var(--x-size-border-radius-button-card);
|
|
8812
|
-
--x-size-border-radius-bottom-left-button-card: var(--x-size-border-radius-button-card);
|
|
8813
|
-
}
|
|
8814
|
-
|
|
8815
|
-
.x-button--card.x-button,
|
|
8816
|
-
.x-button--card .x-button {
|
|
8817
|
-
--x-size-border-radius-button-default: var(--x-size-border-radius-button-card);
|
|
8818
|
-
--x-size-border-radius-top-left-button-default: var(--x-size-border-radius-top-left-button-card);
|
|
8819
|
-
--x-size-border-radius-top-right-button-default: var(
|
|
8820
|
-
--x-size-border-radius-top-right-button-card
|
|
8821
|
-
);
|
|
8822
|
-
--x-size-border-radius-bottom-right-button-default: var(
|
|
8823
|
-
--x-size-border-radius-bottom-right-button-card
|
|
8824
|
-
);
|
|
8825
|
-
--x-size-border-radius-bottom-left-button-default: var(
|
|
8826
|
-
--x-size-border-radius-bottom-left-button-card
|
|
8827
|
-
);
|
|
8828
|
-
}
|
|
8829
|
-
:root {
|
|
8830
|
-
--x-size-border-radius-base-none: 0;
|
|
8831
|
-
--x-size-border-radius-base-s: var(--x-size-base-02);
|
|
8832
|
-
--x-size-border-radius-base-m: var(--x-size-base-06);
|
|
8833
|
-
--x-size-border-radius-base-pill: 99999px;
|
|
8834
|
-
--x-size-border-width-base: 1px;
|
|
8835
|
-
}
|
|
8836
8826
|
:root {
|
|
8837
8827
|
--x-color-base-lead: #243d48;
|
|
8838
8828
|
--x-color-base-auxiliary: #bfe1ec;
|
|
@@ -8845,4 +8835,14 @@
|
|
|
8845
8835
|
--x-color-base-enable: #00705c;
|
|
8846
8836
|
--x-color-base-disable: #e11f26;
|
|
8847
8837
|
--x-color-base-transparent: transparent;
|
|
8838
|
+
}
|
|
8839
|
+
:root {
|
|
8840
|
+
--x-size-border-radius-base-none: 0;
|
|
8841
|
+
--x-size-border-radius-base-s: var(--x-size-base-02);
|
|
8842
|
+
--x-size-border-radius-base-m: var(--x-size-base-06);
|
|
8843
|
+
--x-size-border-radius-base-pill: 99999px;
|
|
8844
|
+
--x-size-border-width-base: 1px;
|
|
8845
|
+
}
|
|
8846
|
+
:root {
|
|
8847
|
+
--x-size-border-radius-result-card: var(--x-size-border-radius-base-s);
|
|
8848
8848
|
}
|