@empathyco/x-components 6.0.0-alpha.25 → 6.0.0-alpha.27
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/CHANGELOG.md +18 -0
- package/core/index.js +1 -1
- package/core/index.js.map +1 -1
- package/design-system/deprecated-full-theme.css +382 -382
- package/docs/API-reference/api/x-components.md +2 -2
- package/docs/API-reference/api/x-components.relatedprompt.md +27 -11
- package/docs/API-reference/api/x-components.relatedpromptsmutations.md +1 -0
- package/docs/API-reference/api/x-components.relatedpromptsmutations.resetselectedprompt.md +17 -0
- package/docs/API-reference/api/x-components.relatedpromptsmutations.setrelatedpromptsproducts.md +1 -1
- package/docs/API-reference/api/x-components.relatedpromptstaglist.md +22 -0
- package/docs/API-reference/components/related-prompts/x-components.related-prompt.md +11 -14
- package/docs/API-reference/components/related-prompts/x-components.related-prompts-tag-list.md +23 -0
- package/js/composables/use-alias-api.js +1 -1
- package/js/composables/use-getter.js +1 -1
- package/js/composables/use-state.js +1 -1
- package/js/index.js +2 -1
- package/js/index.js.map +1 -1
- package/js/x-modules/related-prompts/components/related-prompt.vue.js +43 -81
- package/js/x-modules/related-prompts/components/related-prompt.vue.js.map +1 -1
- package/js/x-modules/related-prompts/components/related-prompt.vue2.js +34 -26
- package/js/x-modules/related-prompts/components/related-prompt.vue2.js.map +1 -1
- package/js/x-modules/related-prompts/components/related-prompts-tag-list.vue.js +80 -0
- package/js/x-modules/related-prompts/components/related-prompts-tag-list.vue.js.map +1 -0
- package/js/x-modules/related-prompts/components/related-prompts-tag-list.vue2.js +55 -0
- package/js/x-modules/related-prompts/components/related-prompts-tag-list.vue2.js.map +1 -0
- package/js/x-modules/related-prompts/components/related-prompts-tag-list.vue3.js +7 -0
- package/js/x-modules/related-prompts/components/related-prompts-tag-list.vue3.js.map +1 -0
- package/js/x-modules/related-prompts/store/module.js +9 -1
- package/js/x-modules/related-prompts/store/module.js.map +1 -1
- package/js/x-modules/related-prompts/wiring.js +10 -0
- package/js/x-modules/related-prompts/wiring.js.map +1 -1
- package/package.json +2 -2
- package/related-prompts/index.js +1 -0
- package/report/x-components.api.json +209 -47
- package/report/x-components.api.md +49 -12
- package/types/composables/use-store.d.ts +2 -2
- package/types/composables/use-store.d.ts.map +1 -1
- package/types/x-modules/related-prompts/components/index.d.ts +1 -0
- package/types/x-modules/related-prompts/components/index.d.ts.map +1 -1
- package/types/x-modules/related-prompts/components/related-prompt.vue.d.ts +27 -13
- package/types/x-modules/related-prompts/components/related-prompt.vue.d.ts.map +1 -1
- package/types/x-modules/related-prompts/components/related-prompts-tag-list.vue.d.ts +14 -0
- package/types/x-modules/related-prompts/components/related-prompts-tag-list.vue.d.ts.map +1 -0
- package/types/x-modules/related-prompts/store/module.d.ts.map +1 -1
- package/types/x-modules/related-prompts/store/types.d.ts +5 -1
- package/types/x-modules/related-prompts/store/types.d.ts.map +1 -1
- package/types/x-modules/related-prompts/wiring.d.ts +6 -0
- package/types/x-modules/related-prompts/wiring.d.ts.map +1 -1
- package/docs/API-reference/api/x-components.usestore.md +0 -19
- package/js/composables/use-store.js +0 -15
- package/js/composables/use-store.js.map +0 -1
- package/js/x-modules/related-prompts/components/related-prompt.vue3.js +0 -7
- package/js/x-modules/related-prompts/components/related-prompt.vue3.js.map +0 -1
|
@@ -1,20 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
.x-uppercase {
|
|
4
|
-
text-transform: uppercase;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.x-lowercase {
|
|
8
|
-
text-transform: lowercase;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.x-capitalize {
|
|
12
|
-
text-transform: capitalize;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.x-normal-case {
|
|
16
|
-
text-transform: none;
|
|
17
|
-
}
|
|
18
3
|
.x-underline {
|
|
19
4
|
-webkit-text-decoration-line: underline;
|
|
20
5
|
text-decoration-line: underline;
|
|
@@ -979,6 +964,21 @@
|
|
|
979
964
|
.x-line-height--loose {
|
|
980
965
|
line-height: 2 !important;
|
|
981
966
|
}
|
|
967
|
+
.x-uppercase {
|
|
968
|
+
text-transform: uppercase;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.x-lowercase {
|
|
972
|
+
text-transform: lowercase;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.x-capitalize {
|
|
976
|
+
text-transform: capitalize;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.x-normal-case {
|
|
980
|
+
text-transform: none;
|
|
981
|
+
}
|
|
982
982
|
.x-line-clamp--2 {
|
|
983
983
|
overflow: hidden !important;
|
|
984
984
|
display: -webkit-box !important;
|
|
@@ -1102,49 +1102,6 @@
|
|
|
1102
1102
|
font-size: var(--x-size-base-20) !important;
|
|
1103
1103
|
line-height: 1.5;
|
|
1104
1104
|
}
|
|
1105
|
-
.x-font-color--lead {
|
|
1106
|
-
color: var(--x-color-base-lead) !important;
|
|
1107
|
-
}
|
|
1108
|
-
|
|
1109
|
-
.x-font-color--auxiliary {
|
|
1110
|
-
color: var(--x-color-base-auxiliary) !important;
|
|
1111
|
-
}
|
|
1112
|
-
|
|
1113
|
-
.x-font-color--neutral-10 {
|
|
1114
|
-
color: var(--x-color-base-neutral-10) !important;
|
|
1115
|
-
}
|
|
1116
|
-
|
|
1117
|
-
.x-font-color--neutral-35 {
|
|
1118
|
-
color: var(--x-color-base-neutral-35) !important;
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
.x-font-color--neutral-70 {
|
|
1122
|
-
color: var(--x-color-base-neutral-70) !important;
|
|
1123
|
-
}
|
|
1124
|
-
|
|
1125
|
-
.x-font-color--neutral-95 {
|
|
1126
|
-
color: var(--x-color-base-neutral-95) !important;
|
|
1127
|
-
}
|
|
1128
|
-
|
|
1129
|
-
.x-font-color--neutral-100 {
|
|
1130
|
-
color: var(--x-color-base-neutral-100) !important;
|
|
1131
|
-
}
|
|
1132
|
-
|
|
1133
|
-
.x-font-color--accent {
|
|
1134
|
-
color: var(--x-color-base-accent) !important;
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
.x-font-color--enable {
|
|
1138
|
-
color: var(--x-color-base-enable) !important;
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
|
-
.x-font-color--disable {
|
|
1142
|
-
color: var(--x-color-base-disable) !important;
|
|
1143
|
-
}
|
|
1144
|
-
|
|
1145
|
-
.x-font-color--transparent {
|
|
1146
|
-
color: var(--x-color-base-transparent) !important;
|
|
1147
|
-
}
|
|
1148
1105
|
.x-flex-1 {
|
|
1149
1106
|
flex: 1 1 0% !important;
|
|
1150
1107
|
}
|
|
@@ -1188,6 +1145,49 @@
|
|
|
1188
1145
|
.x-self-baseline {
|
|
1189
1146
|
align-self: baseline !important;
|
|
1190
1147
|
}
|
|
1148
|
+
.x-font-color--lead {
|
|
1149
|
+
color: var(--x-color-base-lead) !important;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.x-font-color--auxiliary {
|
|
1153
|
+
color: var(--x-color-base-auxiliary) !important;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
.x-font-color--neutral-10 {
|
|
1157
|
+
color: var(--x-color-base-neutral-10) !important;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.x-font-color--neutral-35 {
|
|
1161
|
+
color: var(--x-color-base-neutral-35) !important;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.x-font-color--neutral-70 {
|
|
1165
|
+
color: var(--x-color-base-neutral-70) !important;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.x-font-color--neutral-95 {
|
|
1169
|
+
color: var(--x-color-base-neutral-95) !important;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.x-font-color--neutral-100 {
|
|
1173
|
+
color: var(--x-color-base-neutral-100) !important;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.x-font-color--accent {
|
|
1177
|
+
color: var(--x-color-base-accent) !important;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.x-font-color--enable {
|
|
1181
|
+
color: var(--x-color-base-enable) !important;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.x-font-color--disable {
|
|
1185
|
+
color: var(--x-color-base-disable) !important;
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.x-font-color--transparent {
|
|
1189
|
+
color: var(--x-color-base-transparent) !important;
|
|
1190
|
+
}
|
|
1191
1191
|
.x-fill--lead {
|
|
1192
1192
|
fill: var(--x-color-base-lead) !important;
|
|
1193
1193
|
}
|
|
@@ -3436,6 +3436,21 @@
|
|
|
3436
3436
|
--x-size-line-height-small: var(--x-size-line-height-base-s);
|
|
3437
3437
|
--x-string-text-decoration-small: none;
|
|
3438
3438
|
}
|
|
3439
|
+
.x-text--bold.x-text {
|
|
3440
|
+
--x-number-font-weight-text: var(--x-number-font-weight-base-bold);
|
|
3441
|
+
}
|
|
3442
|
+
.x-text--bold.x-title1 {
|
|
3443
|
+
--x-number-font-weight-title1: var(--x-number-font-weight-base-bold);
|
|
3444
|
+
}
|
|
3445
|
+
.x-text--bold.x-title2 {
|
|
3446
|
+
--x-number-font-weight-title2: var(--x-number-font-weight-base-bold);
|
|
3447
|
+
}
|
|
3448
|
+
.x-text--bold.x-title3 {
|
|
3449
|
+
--x-number-font-weight-title3: var(--x-number-font-weight-base-bold);
|
|
3450
|
+
}
|
|
3451
|
+
.x-text--bold.x-small {
|
|
3452
|
+
--x-number-font-weight-small: var(--x-number-font-weight-base-bold);
|
|
3453
|
+
}
|
|
3439
3454
|
:root {
|
|
3440
3455
|
--x-font-family-base: "Montserrat", sans-serif;
|
|
3441
3456
|
--x-size-font-base-xs: 12px;
|
|
@@ -3538,21 +3553,6 @@
|
|
|
3538
3553
|
overflow: hidden;
|
|
3539
3554
|
white-space: nowrap;
|
|
3540
3555
|
}
|
|
3541
|
-
.x-text--bold.x-text {
|
|
3542
|
-
--x-number-font-weight-text: var(--x-number-font-weight-base-bold);
|
|
3543
|
-
}
|
|
3544
|
-
.x-text--bold.x-title1 {
|
|
3545
|
-
--x-number-font-weight-title1: var(--x-number-font-weight-base-bold);
|
|
3546
|
-
}
|
|
3547
|
-
.x-text--bold.x-title2 {
|
|
3548
|
-
--x-number-font-weight-title2: var(--x-number-font-weight-base-bold);
|
|
3549
|
-
}
|
|
3550
|
-
.x-text--bold.x-title3 {
|
|
3551
|
-
--x-number-font-weight-title3: var(--x-number-font-weight-base-bold);
|
|
3552
|
-
}
|
|
3553
|
-
.x-text--bold.x-small {
|
|
3554
|
-
--x-number-font-weight-small: var(--x-number-font-weight-base-bold);
|
|
3555
|
-
}
|
|
3556
3556
|
:root {
|
|
3557
3557
|
--x-color-text-accent: var(--x-color-base-accent);
|
|
3558
3558
|
}
|
|
@@ -3596,36 +3596,6 @@
|
|
|
3596
3596
|
--x-number-font-weight-tag-selected-ghost: var(--x-number-font-weight-base-bold);
|
|
3597
3597
|
--x-number-font-weight-tag-curated-selected-ghost: var(--x-number-font-weight-base-bold);
|
|
3598
3598
|
}
|
|
3599
|
-
:root {
|
|
3600
|
-
--x-color-background-tag-ghost: transparent;
|
|
3601
|
-
--x-color-border-tag-ghost: transparent;
|
|
3602
|
-
--x-color-background-tag-selected-ghost: transparent;
|
|
3603
|
-
--x-color-border-tag-selected-ghost: transparent;
|
|
3604
|
-
--x-color-background-tag-curated-ghost: transparent;
|
|
3605
|
-
--x-color-border-tag-curated-ghost: transparent;
|
|
3606
|
-
--x-color-background-tag-curated-selected-ghost: transparent;
|
|
3607
|
-
--x-color-border-tag-curated-selected-ghost: transparent;
|
|
3608
|
-
--x-number-font-weight-tag-selected-ghost: var(--x-number-font-weight-base-bold);
|
|
3609
|
-
--x-number-font-weight-tag-curated-selected-ghost: var(--x-number-font-weight-base-bold);
|
|
3610
|
-
}
|
|
3611
|
-
|
|
3612
|
-
.x-tag--ghost.x-tag,
|
|
3613
|
-
.x-tag--ghost .x-tag {
|
|
3614
|
-
--x-color-background-tag-default: var(--x-color-background-tag-ghost);
|
|
3615
|
-
--x-color-border-tag-default: var(--x-color-border-tag-ghost);
|
|
3616
|
-
--x-color-background-tag-default-curated: var(--x-color-background-tag-curated-ghost);
|
|
3617
|
-
--x-color-border-tag-default-curated: var(--x-color-border-tag-curated-ghost);
|
|
3618
|
-
--x-color-background-tag-default-selected: var(--x-color-background-tag-selected-ghost);
|
|
3619
|
-
--x-color-border-tag-default-selected: var(--x-color-border-tag-selected-ghost);
|
|
3620
|
-
--x-color-background-tag-default-curated-selected: var(
|
|
3621
|
-
--x-color-background-tag-curated-selected-ghost
|
|
3622
|
-
);
|
|
3623
|
-
--x-color-border-tag-default-curated-selected: var(--x-color-border-tag-curated-selected-ghost);
|
|
3624
|
-
--x-number-font-weight-tag-default-selected: var(--x-number-font-weight-tag-selected-ghost);
|
|
3625
|
-
--x-number-font-weight-tag-default-curated-selected: var(
|
|
3626
|
-
--x-number-font-weight-tag-curated-selected-ghost
|
|
3627
|
-
);
|
|
3628
|
-
}
|
|
3629
3599
|
:root {
|
|
3630
3600
|
--x-color-background-tag-default: var(--x-color-base-neutral-100);
|
|
3631
3601
|
--x-color-border-tag-default: var(--x-color-text-tag-default);
|
|
@@ -3672,6 +3642,36 @@
|
|
|
3672
3642
|
--x-number-font-weight-tag-default-selected
|
|
3673
3643
|
);
|
|
3674
3644
|
}
|
|
3645
|
+
:root {
|
|
3646
|
+
--x-color-background-tag-ghost: transparent;
|
|
3647
|
+
--x-color-border-tag-ghost: transparent;
|
|
3648
|
+
--x-color-background-tag-selected-ghost: transparent;
|
|
3649
|
+
--x-color-border-tag-selected-ghost: transparent;
|
|
3650
|
+
--x-color-background-tag-curated-ghost: transparent;
|
|
3651
|
+
--x-color-border-tag-curated-ghost: transparent;
|
|
3652
|
+
--x-color-background-tag-curated-selected-ghost: transparent;
|
|
3653
|
+
--x-color-border-tag-curated-selected-ghost: transparent;
|
|
3654
|
+
--x-number-font-weight-tag-selected-ghost: var(--x-number-font-weight-base-bold);
|
|
3655
|
+
--x-number-font-weight-tag-curated-selected-ghost: var(--x-number-font-weight-base-bold);
|
|
3656
|
+
}
|
|
3657
|
+
|
|
3658
|
+
.x-tag--ghost.x-tag,
|
|
3659
|
+
.x-tag--ghost .x-tag {
|
|
3660
|
+
--x-color-background-tag-default: var(--x-color-background-tag-ghost);
|
|
3661
|
+
--x-color-border-tag-default: var(--x-color-border-tag-ghost);
|
|
3662
|
+
--x-color-background-tag-default-curated: var(--x-color-background-tag-curated-ghost);
|
|
3663
|
+
--x-color-border-tag-default-curated: var(--x-color-border-tag-curated-ghost);
|
|
3664
|
+
--x-color-background-tag-default-selected: var(--x-color-background-tag-selected-ghost);
|
|
3665
|
+
--x-color-border-tag-default-selected: var(--x-color-border-tag-selected-ghost);
|
|
3666
|
+
--x-color-background-tag-default-curated-selected: var(
|
|
3667
|
+
--x-color-background-tag-curated-selected-ghost
|
|
3668
|
+
);
|
|
3669
|
+
--x-color-border-tag-default-curated-selected: var(--x-color-border-tag-curated-selected-ghost);
|
|
3670
|
+
--x-number-font-weight-tag-default-selected: var(--x-number-font-weight-tag-selected-ghost);
|
|
3671
|
+
--x-number-font-weight-tag-default-curated-selected: var(
|
|
3672
|
+
--x-number-font-weight-tag-curated-selected-ghost
|
|
3673
|
+
);
|
|
3674
|
+
}
|
|
3675
3675
|
:root {
|
|
3676
3676
|
--x-color-background-tag-default: var(--x-color-base-neutral-100);
|
|
3677
3677
|
--x-color-border-tag-default: var(--x-color-text-tag-default);
|
|
@@ -4454,6 +4454,14 @@
|
|
|
4454
4454
|
--x-color-background-scroll-bar-hover: transparent;
|
|
4455
4455
|
--x-color-thumb-scroll-bar-hover: var(--x-color-base-neutral-70);
|
|
4456
4456
|
}
|
|
4457
|
+
/* @deprecated */
|
|
4458
|
+
:root {
|
|
4459
|
+
--x-size-padding-row-02: var(--x-size-base-02);
|
|
4460
|
+
--x-size-padding-row-03: var(--x-size-base-03);
|
|
4461
|
+
--x-size-padding-row-04: var(--x-size-base-04);
|
|
4462
|
+
--x-size-padding-row-05: var(--x-size-base-05);
|
|
4463
|
+
--x-size-padding-row-06: var(--x-size-base-06);
|
|
4464
|
+
}
|
|
4457
4465
|
:root {
|
|
4458
4466
|
--x-string-overflow-scroll: auto;
|
|
4459
4467
|
--x-color-background-scroll-bar: transparent;
|
|
@@ -4500,14 +4508,6 @@
|
|
|
4500
4508
|
--x-size-padding-row-05: var(--x-size-base-05);
|
|
4501
4509
|
--x-size-padding-row-06: var(--x-size-base-06);
|
|
4502
4510
|
}
|
|
4503
|
-
/* @deprecated */
|
|
4504
|
-
:root {
|
|
4505
|
-
--x-size-padding-row-02: var(--x-size-base-02);
|
|
4506
|
-
--x-size-padding-row-03: var(--x-size-base-03);
|
|
4507
|
-
--x-size-padding-row-04: var(--x-size-base-04);
|
|
4508
|
-
--x-size-padding-row-05: var(--x-size-base-05);
|
|
4509
|
-
--x-size-padding-row-06: var(--x-size-base-06);
|
|
4510
|
-
}
|
|
4511
4511
|
|
|
4512
4512
|
/* @deprecated */
|
|
4513
4513
|
.x-row--padding-02 {
|
|
@@ -4879,14 +4879,23 @@
|
|
|
4879
4879
|
:root {
|
|
4880
4880
|
--x-size-border-radius-result-card: var(--x-size-border-radius-base-s);
|
|
4881
4881
|
}
|
|
4882
|
-
:root {
|
|
4883
|
-
--x-size-border-radius-result-card: var(--x-size-border-radius-base-s);
|
|
4884
|
-
}
|
|
4885
4882
|
|
|
4886
4883
|
.x-result.x-result--card {
|
|
4887
4884
|
overflow: hidden;
|
|
4888
4885
|
--x-size-border-radius-result-default: var(--x-size-border-radius-result-card);
|
|
4889
4886
|
}
|
|
4887
|
+
:root {
|
|
4888
|
+
--x-size-border-radius-result-card: var(--x-size-border-radius-base-s);
|
|
4889
|
+
}
|
|
4890
|
+
:root {
|
|
4891
|
+
--x-size-height-progress-bar-line-default: var(--x-size-base-02);
|
|
4892
|
+
--x-size-width-progress-bar-line-default: var(--x-size-base-20);
|
|
4893
|
+
--x-color-background-progress-bar-default: var(--x-color-base-neutral-70);
|
|
4894
|
+
--x-color-border-progress-bar-default: var(--x-color-background-progress-bar-default);
|
|
4895
|
+
--x-color-background-progress-bar-line-default: var(--x-color-base-neutral-10);
|
|
4896
|
+
--x-size-border-radius-progress-bar-default: var(--x-size-border-radius-base-pill);
|
|
4897
|
+
--x-size-border-width-progress-bar-default: 0;
|
|
4898
|
+
}
|
|
4890
4899
|
:root {
|
|
4891
4900
|
--x-size-height-progress-bar-line-default: var(--x-size-base-02);
|
|
4892
4901
|
--x-size-width-progress-bar-line-default: var(--x-size-base-20);
|
|
@@ -4912,15 +4921,6 @@
|
|
|
4912
4921
|
border-radius: var(--x-size-border-radius-progress-bar-default);
|
|
4913
4922
|
background-color: var(--x-color-background-progress-bar-line-default);
|
|
4914
4923
|
}
|
|
4915
|
-
:root {
|
|
4916
|
-
--x-size-height-progress-bar-line-default: var(--x-size-base-02);
|
|
4917
|
-
--x-size-width-progress-bar-line-default: var(--x-size-base-20);
|
|
4918
|
-
--x-color-background-progress-bar-default: var(--x-color-base-neutral-70);
|
|
4919
|
-
--x-color-border-progress-bar-default: var(--x-color-background-progress-bar-default);
|
|
4920
|
-
--x-color-background-progress-bar-line-default: var(--x-color-base-neutral-10);
|
|
4921
|
-
--x-size-border-radius-progress-bar-default: var(--x-size-border-radius-base-pill);
|
|
4922
|
-
--x-size-border-width-progress-bar-default: 0;
|
|
4923
|
-
}
|
|
4924
4924
|
:root {
|
|
4925
4925
|
--x-number-zoom-scale-picture: 1.1;
|
|
4926
4926
|
--x-number-zoom-duration-picture: 0.3s;
|
|
@@ -5173,14 +5173,59 @@
|
|
|
5173
5173
|
--x-number-font-weight-option-list-button-default-selected: var(--x-number-font-weight-base-bold);
|
|
5174
5174
|
}
|
|
5175
5175
|
:root {
|
|
5176
|
-
--x-color-
|
|
5177
|
-
--x-color-
|
|
5178
|
-
|
|
5179
|
-
--x-color-background-option-list-button-default-hover: var(
|
|
5180
|
-
--x-color-background-option-list-button-default
|
|
5176
|
+
--x-color-text-option-list-button-bottom-hover: var(--x-color-base-neutral-10);
|
|
5177
|
+
--x-color-text-option-list-button-bottom-selected-hover: var(
|
|
5178
|
+
--x-color-text-option-list-button-bottom-selected
|
|
5181
5179
|
);
|
|
5182
|
-
--x-color-
|
|
5183
|
-
|
|
5180
|
+
--x-color-text-option-list-button-bottom: var(--x-color-base-neutral-35);
|
|
5181
|
+
--x-color-text-option-list-button-bottom-selected: var(--x-color-text-default);
|
|
5182
|
+
--x-color-border-option-list-item-bottom: transparent;
|
|
5183
|
+
--x-color-border-top-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5184
|
+
--x-color-border-right-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5185
|
+
--x-color-border-bottom-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5186
|
+
--x-color-border-left-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5187
|
+
--x-color-border-option-list-item-bottom-selected: var(--x-color-base-neutral-10);
|
|
5188
|
+
--x-color-border-top-option-list-item-bottom-selected: var(
|
|
5189
|
+
--x-color-border-option-list-item-bottom
|
|
5190
|
+
);
|
|
5191
|
+
--x-color-border-right-option-list-item-bottom-selected: var(
|
|
5192
|
+
--x-color-border-option-list-item-bottom
|
|
5193
|
+
);
|
|
5194
|
+
--x-color-border-bottom-option-list-item-bottom-selected: var(
|
|
5195
|
+
--x-color-border-option-list-item-bottom-selected
|
|
5196
|
+
);
|
|
5197
|
+
--x-color-border-left-option-list-item-bottom-selected: var(
|
|
5198
|
+
--x-color-border-option-list-item-bottom
|
|
5199
|
+
);
|
|
5200
|
+
--x-size-border-width-option-list-item-bottom: var(--x-size-border-width-base);
|
|
5201
|
+
--x-size-border-width-top-option-list-item-bottom: 0;
|
|
5202
|
+
--x-size-border-width-right-option-list-item-bottom: 0;
|
|
5203
|
+
--x-size-border-width-bottom-option-list-item-bottom: var(
|
|
5204
|
+
--x-size-border-width-option-list-item-bottom
|
|
5205
|
+
);
|
|
5206
|
+
--x-size-border-width-left-option-list-item-bottom: 0;
|
|
5207
|
+
--x-size-border-width-top-option-list-item-bottom-selected: 0;
|
|
5208
|
+
--x-size-border-width-right-option-list-item-bottom-selected: 0;
|
|
5209
|
+
--x-size-border-width-bottom-option-list-item-bottom-selected: var(
|
|
5210
|
+
--x-size-border-width-option-list-item-bottom
|
|
5211
|
+
);
|
|
5212
|
+
--x-size-border-width-left-option-list-item-bottom-selected: 0;
|
|
5213
|
+
--x-size-font-option-list-button-bottom: var(--x-size-font-text);
|
|
5214
|
+
--x-font-decoration-option-list-button-bottom-hover: none;
|
|
5215
|
+
--x-number-font-weight-option-list-button-bottom: var(--x-number-font-weight-base-regular);
|
|
5216
|
+
--x-number-font-weight-option-list-button-bottom-selected: var(
|
|
5217
|
+
--x-number-font-weight-base-regular
|
|
5218
|
+
);
|
|
5219
|
+
}
|
|
5220
|
+
:root {
|
|
5221
|
+
--x-color-background-option-list-button-default: transparent;
|
|
5222
|
+
--x-color-border-option-list-button-default: transparent;
|
|
5223
|
+
--x-color-text-option-list-button-default: var(--x-color-base-neutral-35);
|
|
5224
|
+
--x-color-background-option-list-button-default-hover: var(
|
|
5225
|
+
--x-color-background-option-list-button-default
|
|
5226
|
+
);
|
|
5227
|
+
--x-color-border-option-list-button-default-hover: var(
|
|
5228
|
+
--x-color-border-option-list-button-default
|
|
5184
5229
|
);
|
|
5185
5230
|
--x-color-text-option-list-button-default-hover: var(--x-color-text-option-list-button-default);
|
|
5186
5231
|
--x-color-background-option-list-button-default-selected: var(
|
|
@@ -5409,51 +5454,6 @@
|
|
|
5409
5454
|
--x-number-font-weight-base-regular
|
|
5410
5455
|
);
|
|
5411
5456
|
}
|
|
5412
|
-
:root {
|
|
5413
|
-
--x-color-text-option-list-button-bottom-hover: var(--x-color-base-neutral-10);
|
|
5414
|
-
--x-color-text-option-list-button-bottom-selected-hover: var(
|
|
5415
|
-
--x-color-text-option-list-button-bottom-selected
|
|
5416
|
-
);
|
|
5417
|
-
--x-color-text-option-list-button-bottom: var(--x-color-base-neutral-35);
|
|
5418
|
-
--x-color-text-option-list-button-bottom-selected: var(--x-color-text-default);
|
|
5419
|
-
--x-color-border-option-list-item-bottom: transparent;
|
|
5420
|
-
--x-color-border-top-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5421
|
-
--x-color-border-right-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5422
|
-
--x-color-border-bottom-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5423
|
-
--x-color-border-left-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5424
|
-
--x-color-border-option-list-item-bottom-selected: var(--x-color-base-neutral-10);
|
|
5425
|
-
--x-color-border-top-option-list-item-bottom-selected: var(
|
|
5426
|
-
--x-color-border-option-list-item-bottom
|
|
5427
|
-
);
|
|
5428
|
-
--x-color-border-right-option-list-item-bottom-selected: var(
|
|
5429
|
-
--x-color-border-option-list-item-bottom
|
|
5430
|
-
);
|
|
5431
|
-
--x-color-border-bottom-option-list-item-bottom-selected: var(
|
|
5432
|
-
--x-color-border-option-list-item-bottom-selected
|
|
5433
|
-
);
|
|
5434
|
-
--x-color-border-left-option-list-item-bottom-selected: var(
|
|
5435
|
-
--x-color-border-option-list-item-bottom
|
|
5436
|
-
);
|
|
5437
|
-
--x-size-border-width-option-list-item-bottom: var(--x-size-border-width-base);
|
|
5438
|
-
--x-size-border-width-top-option-list-item-bottom: 0;
|
|
5439
|
-
--x-size-border-width-right-option-list-item-bottom: 0;
|
|
5440
|
-
--x-size-border-width-bottom-option-list-item-bottom: var(
|
|
5441
|
-
--x-size-border-width-option-list-item-bottom
|
|
5442
|
-
);
|
|
5443
|
-
--x-size-border-width-left-option-list-item-bottom: 0;
|
|
5444
|
-
--x-size-border-width-top-option-list-item-bottom-selected: 0;
|
|
5445
|
-
--x-size-border-width-right-option-list-item-bottom-selected: 0;
|
|
5446
|
-
--x-size-border-width-bottom-option-list-item-bottom-selected: var(
|
|
5447
|
-
--x-size-border-width-option-list-item-bottom
|
|
5448
|
-
);
|
|
5449
|
-
--x-size-border-width-left-option-list-item-bottom-selected: 0;
|
|
5450
|
-
--x-size-font-option-list-button-bottom: var(--x-size-font-text);
|
|
5451
|
-
--x-font-decoration-option-list-button-bottom-hover: none;
|
|
5452
|
-
--x-number-font-weight-option-list-button-bottom: var(--x-number-font-weight-base-regular);
|
|
5453
|
-
--x-number-font-weight-option-list-button-bottom-selected: var(
|
|
5454
|
-
--x-number-font-weight-base-regular
|
|
5455
|
-
);
|
|
5456
|
-
}
|
|
5457
5457
|
|
|
5458
5458
|
.x-option-list--bottom.x-option-list,
|
|
5459
5459
|
.x-option-list--bottom .x-option-list {
|
|
@@ -6023,28 +6023,6 @@
|
|
|
6023
6023
|
--x-size-gap-list-19: var(--x-size-base-19);
|
|
6024
6024
|
--x-size-gap-list-20: var(--x-size-base-20);
|
|
6025
6025
|
}
|
|
6026
|
-
:root {
|
|
6027
|
-
--x-size-gap-list-01: var(--x-size-base-01);
|
|
6028
|
-
--x-size-gap-list-02: var(--x-size-base-02);
|
|
6029
|
-
--x-size-gap-list-03: var(--x-size-base-03);
|
|
6030
|
-
--x-size-gap-list-04: var(--x-size-base-04);
|
|
6031
|
-
--x-size-gap-list-05: var(--x-size-base-05);
|
|
6032
|
-
--x-size-gap-list-06: var(--x-size-base-06);
|
|
6033
|
-
--x-size-gap-list-07: var(--x-size-base-07);
|
|
6034
|
-
--x-size-gap-list-08: var(--x-size-base-08);
|
|
6035
|
-
--x-size-gap-list-09: var(--x-size-base-09);
|
|
6036
|
-
--x-size-gap-list-10: var(--x-size-base-10);
|
|
6037
|
-
--x-size-gap-list-11: var(--x-size-base-11);
|
|
6038
|
-
--x-size-gap-list-12: var(--x-size-base-12);
|
|
6039
|
-
--x-size-gap-list-13: var(--x-size-base-13);
|
|
6040
|
-
--x-size-gap-list-14: var(--x-size-base-14);
|
|
6041
|
-
--x-size-gap-list-15: var(--x-size-base-15);
|
|
6042
|
-
--x-size-gap-list-16: var(--x-size-base-16);
|
|
6043
|
-
--x-size-gap-list-17: var(--x-size-base-17);
|
|
6044
|
-
--x-size-gap-list-18: var(--x-size-base-18);
|
|
6045
|
-
--x-size-gap-list-19: var(--x-size-base-19);
|
|
6046
|
-
--x-size-gap-list-20: var(--x-size-base-20);
|
|
6047
|
-
}
|
|
6048
6026
|
|
|
6049
6027
|
.x-list--gap-01.x-list {
|
|
6050
6028
|
gap: var(--x-size-gap-list-01);
|
|
@@ -6545,6 +6523,28 @@
|
|
|
6545
6523
|
margin-bottom: var(--x-size-gap-list-20);
|
|
6546
6524
|
}
|
|
6547
6525
|
}
|
|
6526
|
+
:root {
|
|
6527
|
+
--x-size-gap-list-01: var(--x-size-base-01);
|
|
6528
|
+
--x-size-gap-list-02: var(--x-size-base-02);
|
|
6529
|
+
--x-size-gap-list-03: var(--x-size-base-03);
|
|
6530
|
+
--x-size-gap-list-04: var(--x-size-base-04);
|
|
6531
|
+
--x-size-gap-list-05: var(--x-size-base-05);
|
|
6532
|
+
--x-size-gap-list-06: var(--x-size-base-06);
|
|
6533
|
+
--x-size-gap-list-07: var(--x-size-base-07);
|
|
6534
|
+
--x-size-gap-list-08: var(--x-size-base-08);
|
|
6535
|
+
--x-size-gap-list-09: var(--x-size-base-09);
|
|
6536
|
+
--x-size-gap-list-10: var(--x-size-base-10);
|
|
6537
|
+
--x-size-gap-list-11: var(--x-size-base-11);
|
|
6538
|
+
--x-size-gap-list-12: var(--x-size-base-12);
|
|
6539
|
+
--x-size-gap-list-13: var(--x-size-base-13);
|
|
6540
|
+
--x-size-gap-list-14: var(--x-size-base-14);
|
|
6541
|
+
--x-size-gap-list-15: var(--x-size-base-15);
|
|
6542
|
+
--x-size-gap-list-16: var(--x-size-base-16);
|
|
6543
|
+
--x-size-gap-list-17: var(--x-size-base-17);
|
|
6544
|
+
--x-size-gap-list-18: var(--x-size-base-18);
|
|
6545
|
+
--x-size-gap-list-19: var(--x-size-base-19);
|
|
6546
|
+
--x-size-gap-list-20: var(--x-size-base-20);
|
|
6547
|
+
}
|
|
6548
6548
|
:root {
|
|
6549
6549
|
--x-string-flow-list: column nowrap;
|
|
6550
6550
|
--x-size-padding-list: 0;
|
|
@@ -7064,6 +7064,13 @@
|
|
|
7064
7064
|
--x-size-border-radius-bottom-right-input-pill: var(--x-size-border-radius-input-pill);
|
|
7065
7065
|
--x-size-border-radius-bottom-left-input-pill: var(--x-size-border-radius-input-pill);
|
|
7066
7066
|
}
|
|
7067
|
+
:root {
|
|
7068
|
+
--x-size-border-radius-input-pill: var(--x-size-border-radius-base-pill);
|
|
7069
|
+
--x-size-border-radius-top-left-input-pill: var(--x-size-border-radius-input-pill);
|
|
7070
|
+
--x-size-border-radius-top-right-input-pill: var(--x-size-border-radius-input-pill);
|
|
7071
|
+
--x-size-border-radius-bottom-right-input-pill: var(--x-size-border-radius-input-pill);
|
|
7072
|
+
--x-size-border-radius-bottom-left-input-pill: var(--x-size-border-radius-input-pill);
|
|
7073
|
+
}
|
|
7067
7074
|
|
|
7068
7075
|
.x-input--pill.x-input,
|
|
7069
7076
|
.x-input--pill .x-input {
|
|
@@ -7073,23 +7080,6 @@
|
|
|
7073
7080
|
--x-size-border-radius-bottom-right-input-default: var(--x-size-border-radius-input-pill);
|
|
7074
7081
|
--x-size-border-radius-bottom-left-input-default: var(--x-size-border-radius-input-pill);
|
|
7075
7082
|
}
|
|
7076
|
-
:root {
|
|
7077
|
-
--x-size-border-radius-input-pill: var(--x-size-border-radius-base-pill);
|
|
7078
|
-
--x-size-border-radius-top-left-input-pill: var(--x-size-border-radius-input-pill);
|
|
7079
|
-
--x-size-border-radius-top-right-input-pill: var(--x-size-border-radius-input-pill);
|
|
7080
|
-
--x-size-border-radius-bottom-right-input-pill: var(--x-size-border-radius-input-pill);
|
|
7081
|
-
--x-size-border-radius-bottom-left-input-pill: var(--x-size-border-radius-input-pill);
|
|
7082
|
-
}
|
|
7083
|
-
:root {
|
|
7084
|
-
--x-size-padding-top-input-line: var(--x-size-base-03);
|
|
7085
|
-
--x-size-padding-right-input-line: 0;
|
|
7086
|
-
--x-size-padding-bottom-input-line: var(--x-size-base-03);
|
|
7087
|
-
--x-size-padding-left-input-line: 0;
|
|
7088
|
-
--x-size-border-width-top-input-line: 0;
|
|
7089
|
-
--x-size-border-width-right-input-line: 0;
|
|
7090
|
-
--x-size-border-width-bottom-input-line: var(--x-size-border-width-base);
|
|
7091
|
-
--x-size-border-width-left-input-line: 0;
|
|
7092
|
-
}
|
|
7093
7083
|
:root {
|
|
7094
7084
|
--x-size-padding-top-input-line: var(--x-size-base-03);
|
|
7095
7085
|
--x-size-padding-right-input-line: 0;
|
|
@@ -7100,18 +7090,6 @@
|
|
|
7100
7090
|
--x-size-border-width-bottom-input-line: var(--x-size-border-width-base);
|
|
7101
7091
|
--x-size-border-width-left-input-line: 0;
|
|
7102
7092
|
}
|
|
7103
|
-
|
|
7104
|
-
.x-input--line .x-input,
|
|
7105
|
-
.x-input--line.x-input {
|
|
7106
|
-
--x-size-padding-top-input-default: var(--x-size-padding-top-input-line);
|
|
7107
|
-
--x-size-padding-right-input-default: var(--x-size-padding-right-input-line);
|
|
7108
|
-
--x-size-padding-bottom-input-default: var(--x-size-padding-bottom-input-line);
|
|
7109
|
-
--x-size-padding-left-input-default: var(--x-size-padding-left-input-line);
|
|
7110
|
-
--x-size-border-width-top-input-default: var(--x-size-border-width-top-input-line);
|
|
7111
|
-
--x-size-border-width-right-input-default: var(--x-size-border-width-right-input-line);
|
|
7112
|
-
--x-size-border-width-bottom-input-default: var(--x-size-border-width-bottom-input-line);
|
|
7113
|
-
--x-size-border-width-left-input-default: var(--x-size-border-width-left-input-line);
|
|
7114
|
-
}
|
|
7115
7093
|
:root {
|
|
7116
7094
|
--x-color-background-input-default: var(--x-color-base-neutral-100);
|
|
7117
7095
|
--x-color-border-input-default: var(--x-color-base-neutral-70);
|
|
@@ -7140,6 +7118,28 @@
|
|
|
7140
7118
|
--x-size-line-height-input-placeholder-default: var(--x-size-line-height-input-default);
|
|
7141
7119
|
--x-number-font-weight-input-placeholder-default: var(--x-number-font-weight-input-default);
|
|
7142
7120
|
}
|
|
7121
|
+
:root {
|
|
7122
|
+
--x-size-padding-top-input-line: var(--x-size-base-03);
|
|
7123
|
+
--x-size-padding-right-input-line: 0;
|
|
7124
|
+
--x-size-padding-bottom-input-line: var(--x-size-base-03);
|
|
7125
|
+
--x-size-padding-left-input-line: 0;
|
|
7126
|
+
--x-size-border-width-top-input-line: 0;
|
|
7127
|
+
--x-size-border-width-right-input-line: 0;
|
|
7128
|
+
--x-size-border-width-bottom-input-line: var(--x-size-border-width-base);
|
|
7129
|
+
--x-size-border-width-left-input-line: 0;
|
|
7130
|
+
}
|
|
7131
|
+
|
|
7132
|
+
.x-input--line .x-input,
|
|
7133
|
+
.x-input--line.x-input {
|
|
7134
|
+
--x-size-padding-top-input-default: var(--x-size-padding-top-input-line);
|
|
7135
|
+
--x-size-padding-right-input-default: var(--x-size-padding-right-input-line);
|
|
7136
|
+
--x-size-padding-bottom-input-default: var(--x-size-padding-bottom-input-line);
|
|
7137
|
+
--x-size-padding-left-input-default: var(--x-size-padding-left-input-line);
|
|
7138
|
+
--x-size-border-width-top-input-default: var(--x-size-border-width-top-input-line);
|
|
7139
|
+
--x-size-border-width-right-input-default: var(--x-size-border-width-right-input-line);
|
|
7140
|
+
--x-size-border-width-bottom-input-default: var(--x-size-border-width-bottom-input-line);
|
|
7141
|
+
--x-size-border-width-left-input-default: var(--x-size-border-width-left-input-line);
|
|
7142
|
+
}
|
|
7143
7143
|
:root {
|
|
7144
7144
|
--x-color-background-input-default: var(--x-color-base-neutral-100);
|
|
7145
7145
|
--x-color-border-input-default: var(--x-color-base-neutral-70);
|
|
@@ -7306,8 +7306,13 @@
|
|
|
7306
7306
|
--x-size-height-icon-m: var(--x-size-base-05);
|
|
7307
7307
|
}
|
|
7308
7308
|
:root {
|
|
7309
|
-
--x-size-width-icon-
|
|
7310
|
-
--x-size-height-icon-
|
|
7309
|
+
--x-size-width-icon-m: var(--x-size-base-05);
|
|
7310
|
+
--x-size-height-icon-m: var(--x-size-base-05);
|
|
7311
|
+
}
|
|
7312
|
+
|
|
7313
|
+
.x-icon--m {
|
|
7314
|
+
--x-size-width-icon-default: var(--x-size-width-icon-m);
|
|
7315
|
+
--x-size-height-icon-default: var(--x-size-height-icon-m);
|
|
7311
7316
|
}
|
|
7312
7317
|
:root {
|
|
7313
7318
|
--x-size-width-icon-l: var(--x-size-base-06);
|
|
@@ -7319,13 +7324,8 @@
|
|
|
7319
7324
|
--x-size-height-icon-default: var(--x-size-height-icon-l);
|
|
7320
7325
|
}
|
|
7321
7326
|
:root {
|
|
7322
|
-
--x-size-width-icon-
|
|
7323
|
-
--x-size-height-icon-
|
|
7324
|
-
}
|
|
7325
|
-
|
|
7326
|
-
.x-icon--m {
|
|
7327
|
-
--x-size-width-icon-default: var(--x-size-width-icon-m);
|
|
7328
|
-
--x-size-height-icon-default: var(--x-size-height-icon-m);
|
|
7327
|
+
--x-size-width-icon-l: var(--x-size-base-06);
|
|
7328
|
+
--x-size-height-icon-l: var(--x-size-base-06);
|
|
7329
7329
|
}
|
|
7330
7330
|
:root {
|
|
7331
7331
|
--x-color-stroke-icon-default: currentColor;
|
|
@@ -7397,12 +7397,6 @@
|
|
|
7397
7397
|
.x-grid-list--cols-auto .x-grid-list__item {
|
|
7398
7398
|
min-width: var(--x-size-min-width-grid-item);
|
|
7399
7399
|
}
|
|
7400
|
-
.x-filter--justified.x-filter > *:last-child:not(.x-filter__label),
|
|
7401
|
-
.x-filter--justified.x-facet-filter > *:last-child:not(.x-filter__label),
|
|
7402
|
-
.x-filter--justified .x-filter > *:last-child:not(.x-filter__label),
|
|
7403
|
-
.x-filter--justified .x-facet-filter > *:last-child:not(.x-filter__label) {
|
|
7404
|
-
margin-left: auto;
|
|
7405
|
-
}
|
|
7406
7400
|
:root {
|
|
7407
7401
|
--x-size-margin-filter-children: 0;
|
|
7408
7402
|
--x-size-padding-top-filter-children: 0;
|
|
@@ -7410,6 +7404,12 @@
|
|
|
7410
7404
|
--x-size-padding-bottom-filter-children: 0;
|
|
7411
7405
|
--x-size-padding-left-filter-children: var(--x-size-base-05);
|
|
7412
7406
|
}
|
|
7407
|
+
.x-filter--justified.x-filter > *:last-child:not(.x-filter__label),
|
|
7408
|
+
.x-filter--justified.x-facet-filter > *:last-child:not(.x-filter__label),
|
|
7409
|
+
.x-filter--justified .x-filter > *:last-child:not(.x-filter__label),
|
|
7410
|
+
.x-filter--justified .x-facet-filter > *:last-child:not(.x-filter__label) {
|
|
7411
|
+
margin-left: auto;
|
|
7412
|
+
}
|
|
7413
7413
|
:root {
|
|
7414
7414
|
--x-size-margin-filter-children: 0;
|
|
7415
7415
|
--x-size-padding-top-filter-children: 0;
|
|
@@ -7474,47 +7474,6 @@
|
|
|
7474
7474
|
);
|
|
7475
7475
|
--x-size-line-height-filter-default: var(--x-size-line-height-text);
|
|
7476
7476
|
}
|
|
7477
|
-
:root {
|
|
7478
|
-
--x-color-border-facet-outlined: var(--x-color-base-neutral-70);
|
|
7479
|
-
--x-size-border-width-facet-outlined: var(--x-size-border-width-base);
|
|
7480
|
-
--x-size-border-width-top-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7481
|
-
--x-size-border-width-right-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7482
|
-
--x-size-border-width-bottom-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7483
|
-
--x-size-border-width-left-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7484
|
-
--x-size-padding-facet-header-outlined: var(--x-size-base-03);
|
|
7485
|
-
--x-size-padding-top-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7486
|
-
--x-size-padding-right-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7487
|
-
--x-size-padding-bottom-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7488
|
-
--x-size-padding-left-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7489
|
-
}
|
|
7490
|
-
:root {
|
|
7491
|
-
--x-color-border-facet-outlined: var(--x-color-base-neutral-70);
|
|
7492
|
-
--x-size-border-width-facet-outlined: var(--x-size-border-width-base);
|
|
7493
|
-
--x-size-border-width-top-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7494
|
-
--x-size-border-width-right-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7495
|
-
--x-size-border-width-bottom-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7496
|
-
--x-size-border-width-left-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7497
|
-
--x-size-padding-facet-header-outlined: var(--x-size-base-03);
|
|
7498
|
-
--x-size-padding-top-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7499
|
-
--x-size-padding-right-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7500
|
-
--x-size-padding-bottom-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7501
|
-
--x-size-padding-left-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7502
|
-
}
|
|
7503
|
-
|
|
7504
|
-
.x-facet--outlined.x-facet,
|
|
7505
|
-
.x-facet--outlined .x-facet {
|
|
7506
|
-
--x-color-border-facet-default: var(--x-color-border-facet-outlined);
|
|
7507
|
-
--x-size-border-width-facet-default: var(--x-size-border-width-facet-outlined);
|
|
7508
|
-
--x-size-border-width-top-facet-default: var(--x-size-border-width-top-facet-outlined);
|
|
7509
|
-
--x-size-border-width-right-facet-default: var(--x-size-border-width-right-facet-outlined);
|
|
7510
|
-
--x-size-border-width-bottom-facet-default: var(--x-size-border-width-bottom-facet-outlined);
|
|
7511
|
-
--x-size-border-width-left-facet-default: var(--x-size-border-width-left-facet-outlined);
|
|
7512
|
-
--x-size-padding-facet-header-default: var(--x-size-padding-facet-header-outlined);
|
|
7513
|
-
--x-size-padding-top-facet-header-default: var(--x-size-padding-top-facet-header-outlined);
|
|
7514
|
-
--x-size-padding-right-facet-header-default: var(--x-size-padding-right-facet-header-outlined);
|
|
7515
|
-
--x-size-padding-bottom-facet-header-default: var(--x-size-padding-bottom-facet-header-outlined);
|
|
7516
|
-
--x-size-padding-left-facet-header-default: var(--x-size-padding-left-facet-header-outlined);
|
|
7517
|
-
}
|
|
7518
7477
|
:root {
|
|
7519
7478
|
--x-color-background-filter-default: transparent;
|
|
7520
7479
|
--x-color-border-filter-default: var(--x-color-background-filter-default);
|
|
@@ -7628,6 +7587,47 @@
|
|
|
7628
7587
|
--x-number-font-weight-filter-count-default-selected
|
|
7629
7588
|
);
|
|
7630
7589
|
}
|
|
7590
|
+
:root {
|
|
7591
|
+
--x-color-border-facet-outlined: var(--x-color-base-neutral-70);
|
|
7592
|
+
--x-size-border-width-facet-outlined: var(--x-size-border-width-base);
|
|
7593
|
+
--x-size-border-width-top-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7594
|
+
--x-size-border-width-right-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7595
|
+
--x-size-border-width-bottom-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7596
|
+
--x-size-border-width-left-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7597
|
+
--x-size-padding-facet-header-outlined: var(--x-size-base-03);
|
|
7598
|
+
--x-size-padding-top-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7599
|
+
--x-size-padding-right-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7600
|
+
--x-size-padding-bottom-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7601
|
+
--x-size-padding-left-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7602
|
+
}
|
|
7603
|
+
:root {
|
|
7604
|
+
--x-color-border-facet-outlined: var(--x-color-base-neutral-70);
|
|
7605
|
+
--x-size-border-width-facet-outlined: var(--x-size-border-width-base);
|
|
7606
|
+
--x-size-border-width-top-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7607
|
+
--x-size-border-width-right-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7608
|
+
--x-size-border-width-bottom-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7609
|
+
--x-size-border-width-left-facet-outlined: var(--x-size-border-width-facet-outlined);
|
|
7610
|
+
--x-size-padding-facet-header-outlined: var(--x-size-base-03);
|
|
7611
|
+
--x-size-padding-top-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7612
|
+
--x-size-padding-right-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7613
|
+
--x-size-padding-bottom-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7614
|
+
--x-size-padding-left-facet-header-outlined: var(--x-size-padding-facet-header-outlined);
|
|
7615
|
+
}
|
|
7616
|
+
|
|
7617
|
+
.x-facet--outlined.x-facet,
|
|
7618
|
+
.x-facet--outlined .x-facet {
|
|
7619
|
+
--x-color-border-facet-default: var(--x-color-border-facet-outlined);
|
|
7620
|
+
--x-size-border-width-facet-default: var(--x-size-border-width-facet-outlined);
|
|
7621
|
+
--x-size-border-width-top-facet-default: var(--x-size-border-width-top-facet-outlined);
|
|
7622
|
+
--x-size-border-width-right-facet-default: var(--x-size-border-width-right-facet-outlined);
|
|
7623
|
+
--x-size-border-width-bottom-facet-default: var(--x-size-border-width-bottom-facet-outlined);
|
|
7624
|
+
--x-size-border-width-left-facet-default: var(--x-size-border-width-left-facet-outlined);
|
|
7625
|
+
--x-size-padding-facet-header-default: var(--x-size-padding-facet-header-outlined);
|
|
7626
|
+
--x-size-padding-top-facet-header-default: var(--x-size-padding-top-facet-header-outlined);
|
|
7627
|
+
--x-size-padding-right-facet-header-default: var(--x-size-padding-right-facet-header-outlined);
|
|
7628
|
+
--x-size-padding-bottom-facet-header-default: var(--x-size-padding-bottom-facet-header-outlined);
|
|
7629
|
+
--x-size-padding-left-facet-header-default: var(--x-size-padding-left-facet-header-outlined);
|
|
7630
|
+
}
|
|
7631
7631
|
:root {
|
|
7632
7632
|
--x-color-border-facet-header-line: var(--x-color-base-neutral-10);
|
|
7633
7633
|
--x-size-border-width-facet-header-line: var(--x-size-border-width-base);
|
|
@@ -7886,16 +7886,6 @@
|
|
|
7886
7886
|
--x-size-border-width-bottom-dropdown-list-pill: var(--x-size-border-width-dropdown-list-pill);
|
|
7887
7887
|
--x-size-border-width-left-dropdown-list-pill: var(--x-size-border-width-dropdown-list-pill);
|
|
7888
7888
|
}
|
|
7889
|
-
:root {
|
|
7890
|
-
--x-size-width-dropdown-m: 130px;
|
|
7891
|
-
}
|
|
7892
|
-
:root {
|
|
7893
|
-
--x-size-width-dropdown-m: 130px;
|
|
7894
|
-
}
|
|
7895
|
-
|
|
7896
|
-
.x-dropdown.x-dropdown--m {
|
|
7897
|
-
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-m);
|
|
7898
|
-
}
|
|
7899
7889
|
:root {
|
|
7900
7890
|
--x-size-gap-dropdown-pill: var(--x-size-base-03);
|
|
7901
7891
|
--x-size-border-width-dropdown-list-pill: var(--x-size-border-width-base);
|
|
@@ -7939,6 +7929,16 @@
|
|
|
7939
7929
|
--x-size-border-width-left-dropdown-list-pill
|
|
7940
7930
|
);
|
|
7941
7931
|
}
|
|
7932
|
+
:root {
|
|
7933
|
+
--x-size-width-dropdown-m: 130px;
|
|
7934
|
+
}
|
|
7935
|
+
:root {
|
|
7936
|
+
--x-size-width-dropdown-m: 130px;
|
|
7937
|
+
}
|
|
7938
|
+
|
|
7939
|
+
.x-dropdown.x-dropdown--m {
|
|
7940
|
+
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-m);
|
|
7941
|
+
}
|
|
7942
7942
|
:root {
|
|
7943
7943
|
--x-size-padding-block-dropdown-item-line: var(--x-size-base-03);
|
|
7944
7944
|
--x-size-padding-inline-dropdown-item-line: 0 var(--x-size-base-03);
|
|
@@ -8029,13 +8029,13 @@
|
|
|
8029
8029
|
:root {
|
|
8030
8030
|
--x-size-width-dropdown-l: 202px;
|
|
8031
8031
|
}
|
|
8032
|
-
:root {
|
|
8033
|
-
--x-size-width-dropdown-l: 202px;
|
|
8034
|
-
}
|
|
8035
8032
|
|
|
8036
8033
|
.x-dropdown.x-dropdown--l {
|
|
8037
8034
|
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-l);
|
|
8038
8035
|
}
|
|
8036
|
+
:root {
|
|
8037
|
+
--x-size-width-dropdown-l: 202px;
|
|
8038
|
+
}
|
|
8039
8039
|
:root {
|
|
8040
8040
|
--x-size-border-radius-dropdown-default: var(--x-size-border-radius-base-none);
|
|
8041
8041
|
--x-size-border-radius-top-left-dropdown-default: var(--x-size-border-radius-dropdown-default);
|
|
@@ -8109,62 +8109,6 @@
|
|
|
8109
8109
|
--x-string-overflow-dropdown-toggle-default: hidden;
|
|
8110
8110
|
--x-string-overflow-dropdown-list-default: hidden;
|
|
8111
8111
|
}
|
|
8112
|
-
:root {
|
|
8113
|
-
--x-size-gap-dropdown-card: var(--x-size-base-03);
|
|
8114
|
-
--x-size-border-radius-dropdown-card: var(--x-size-border-radius-base-s);
|
|
8115
|
-
--x-size-border-radius-top-left-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8116
|
-
--x-size-border-radius-top-right-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8117
|
-
--x-size-border-radius-bottom-right-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8118
|
-
--x-size-border-radius-bottom-left-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8119
|
-
--x-size-border-width-dropdown-list-card: var(--x-size-border-width-base);
|
|
8120
|
-
--x-size-border-width-top-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8121
|
-
--x-size-border-width-right-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8122
|
-
--x-size-border-width-bottom-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8123
|
-
--x-size-border-width-left-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8124
|
-
}
|
|
8125
|
-
:root {
|
|
8126
|
-
--x-size-gap-dropdown-card: var(--x-size-base-03);
|
|
8127
|
-
--x-size-border-radius-dropdown-card: var(--x-size-border-radius-base-s);
|
|
8128
|
-
--x-size-border-radius-top-left-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8129
|
-
--x-size-border-radius-top-right-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8130
|
-
--x-size-border-radius-bottom-right-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8131
|
-
--x-size-border-radius-bottom-left-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8132
|
-
--x-size-border-width-dropdown-list-card: var(--x-size-border-width-base);
|
|
8133
|
-
--x-size-border-width-top-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8134
|
-
--x-size-border-width-right-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8135
|
-
--x-size-border-width-bottom-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8136
|
-
--x-size-border-width-left-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8137
|
-
}
|
|
8138
|
-
|
|
8139
|
-
.x-dropdown--card {
|
|
8140
|
-
--x-size-gap-dropdown-default: var(--x-size-gap-dropdown-card);
|
|
8141
|
-
--x-size-border-radius-dropdown-default: var(--x-size-border-radius-dropdown-card);
|
|
8142
|
-
--x-size-border-radius-top-left-dropdown-default: var(
|
|
8143
|
-
--x-size-border-radius-top-left-dropdown-card
|
|
8144
|
-
);
|
|
8145
|
-
--x-size-border-radius-top-right-dropdown-default: var(
|
|
8146
|
-
--x-size-border-radius-top-right-dropdown-card
|
|
8147
|
-
);
|
|
8148
|
-
--x-size-border-radius-bottom-right-dropdown-default: var(
|
|
8149
|
-
--x-size-border-radius-bottom-right-dropdown-card
|
|
8150
|
-
);
|
|
8151
|
-
--x-size-border-radius-bottom-left-dropdown-default: var(
|
|
8152
|
-
--x-size-border-radius-bottom-left-dropdown-card
|
|
8153
|
-
);
|
|
8154
|
-
--x-size-border-width-dropdown-list-default: var(--x-size-border-width-dropdown-list-card);
|
|
8155
|
-
--x-size-border-width-top-dropdown-list-default: var(
|
|
8156
|
-
--x-size-border-width-top-dropdown-list-card
|
|
8157
|
-
);
|
|
8158
|
-
--x-size-border-width-right-dropdown-list-default: var(
|
|
8159
|
-
--x-size-border-width-right-dropdown-list-card
|
|
8160
|
-
);
|
|
8161
|
-
--x-size-border-width-bottom-dropdown-list-default: var(
|
|
8162
|
-
--x-size-border-width-bottom-dropdown-list-card
|
|
8163
|
-
);
|
|
8164
|
-
--x-size-border-width-left-dropdown-list-default: var(
|
|
8165
|
-
--x-size-border-width-left-dropdown-list-card
|
|
8166
|
-
);
|
|
8167
|
-
}
|
|
8168
8112
|
:root {
|
|
8169
8113
|
--x-size-border-radius-dropdown-default: var(--x-size-border-radius-base-none);
|
|
8170
8114
|
--x-size-border-radius-top-left-dropdown-default: var(--x-size-border-radius-dropdown-default);
|
|
@@ -8407,6 +8351,62 @@
|
|
|
8407
8351
|
[dir="rtl"] .x-dropdown--right .x-dropdown__items-list {
|
|
8408
8352
|
left: 0;
|
|
8409
8353
|
}
|
|
8354
|
+
:root {
|
|
8355
|
+
--x-size-gap-dropdown-card: var(--x-size-base-03);
|
|
8356
|
+
--x-size-border-radius-dropdown-card: var(--x-size-border-radius-base-s);
|
|
8357
|
+
--x-size-border-radius-top-left-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8358
|
+
--x-size-border-radius-top-right-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8359
|
+
--x-size-border-radius-bottom-right-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8360
|
+
--x-size-border-radius-bottom-left-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8361
|
+
--x-size-border-width-dropdown-list-card: var(--x-size-border-width-base);
|
|
8362
|
+
--x-size-border-width-top-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8363
|
+
--x-size-border-width-right-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8364
|
+
--x-size-border-width-bottom-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8365
|
+
--x-size-border-width-left-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8366
|
+
}
|
|
8367
|
+
:root {
|
|
8368
|
+
--x-size-gap-dropdown-card: var(--x-size-base-03);
|
|
8369
|
+
--x-size-border-radius-dropdown-card: var(--x-size-border-radius-base-s);
|
|
8370
|
+
--x-size-border-radius-top-left-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8371
|
+
--x-size-border-radius-top-right-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8372
|
+
--x-size-border-radius-bottom-right-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8373
|
+
--x-size-border-radius-bottom-left-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8374
|
+
--x-size-border-width-dropdown-list-card: var(--x-size-border-width-base);
|
|
8375
|
+
--x-size-border-width-top-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8376
|
+
--x-size-border-width-right-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8377
|
+
--x-size-border-width-bottom-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8378
|
+
--x-size-border-width-left-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8379
|
+
}
|
|
8380
|
+
|
|
8381
|
+
.x-dropdown--card {
|
|
8382
|
+
--x-size-gap-dropdown-default: var(--x-size-gap-dropdown-card);
|
|
8383
|
+
--x-size-border-radius-dropdown-default: var(--x-size-border-radius-dropdown-card);
|
|
8384
|
+
--x-size-border-radius-top-left-dropdown-default: var(
|
|
8385
|
+
--x-size-border-radius-top-left-dropdown-card
|
|
8386
|
+
);
|
|
8387
|
+
--x-size-border-radius-top-right-dropdown-default: var(
|
|
8388
|
+
--x-size-border-radius-top-right-dropdown-card
|
|
8389
|
+
);
|
|
8390
|
+
--x-size-border-radius-bottom-right-dropdown-default: var(
|
|
8391
|
+
--x-size-border-radius-bottom-right-dropdown-card
|
|
8392
|
+
);
|
|
8393
|
+
--x-size-border-radius-bottom-left-dropdown-default: var(
|
|
8394
|
+
--x-size-border-radius-bottom-left-dropdown-card
|
|
8395
|
+
);
|
|
8396
|
+
--x-size-border-width-dropdown-list-default: var(--x-size-border-width-dropdown-list-card);
|
|
8397
|
+
--x-size-border-width-top-dropdown-list-default: var(
|
|
8398
|
+
--x-size-border-width-top-dropdown-list-card
|
|
8399
|
+
);
|
|
8400
|
+
--x-size-border-width-right-dropdown-list-default: var(
|
|
8401
|
+
--x-size-border-width-right-dropdown-list-card
|
|
8402
|
+
);
|
|
8403
|
+
--x-size-border-width-bottom-dropdown-list-default: var(
|
|
8404
|
+
--x-size-border-width-bottom-dropdown-list-card
|
|
8405
|
+
);
|
|
8406
|
+
--x-size-border-width-left-dropdown-list-default: var(
|
|
8407
|
+
--x-size-border-width-left-dropdown-list-card
|
|
8408
|
+
);
|
|
8409
|
+
}
|
|
8410
8410
|
:root {
|
|
8411
8411
|
--x-color-background-button-tertiary: var(--x-color-base-neutral-95);
|
|
8412
8412
|
--x-color-border-button-tertiary: var(--x-color-base-neutral-70);
|
|
@@ -8476,13 +8476,6 @@
|
|
|
8476
8476
|
--x-size-border-radius-bottom-right-button-round: var(--x-size-border-radius-button-round);
|
|
8477
8477
|
--x-size-border-radius-bottom-left-button-round: var(--x-size-border-radius-button-round);
|
|
8478
8478
|
}
|
|
8479
|
-
:root {
|
|
8480
|
-
--x-size-border-radius-button-round: var(--x-size-border-radius-base-pill);
|
|
8481
|
-
--x-size-border-radius-top-left-button-round: var(--x-size-border-radius-button-round);
|
|
8482
|
-
--x-size-border-radius-top-right-button-round: var(--x-size-border-radius-button-round);
|
|
8483
|
-
--x-size-border-radius-bottom-right-button-round: var(--x-size-border-radius-button-round);
|
|
8484
|
-
--x-size-border-radius-bottom-left-button-round: var(--x-size-border-radius-button-round);
|
|
8485
|
-
}
|
|
8486
8479
|
|
|
8487
8480
|
.x-button--round.x-button,
|
|
8488
8481
|
.x-button--round .x-button {
|
|
@@ -8501,6 +8494,13 @@
|
|
|
8501
8494
|
--x-size-padding-left-button-default: 0;
|
|
8502
8495
|
--x-size-padding-right-button-default: 0;
|
|
8503
8496
|
}
|
|
8497
|
+
:root {
|
|
8498
|
+
--x-size-border-radius-button-round: var(--x-size-border-radius-base-pill);
|
|
8499
|
+
--x-size-border-radius-top-left-button-round: var(--x-size-border-radius-button-round);
|
|
8500
|
+
--x-size-border-radius-top-right-button-round: var(--x-size-border-radius-button-round);
|
|
8501
|
+
--x-size-border-radius-bottom-right-button-round: var(--x-size-border-radius-button-round);
|
|
8502
|
+
--x-size-border-radius-bottom-left-button-round: var(--x-size-border-radius-button-round);
|
|
8503
|
+
}
|
|
8504
8504
|
:root {
|
|
8505
8505
|
--x-color-background-button-primary: var(--x-color-background-button-default);
|
|
8506
8506
|
--x-color-border-button-primary: var(--x-color-border-button-default);
|
|
@@ -8611,13 +8611,6 @@
|
|
|
8611
8611
|
--x-number-font-weight-button-default: var(--x-number-font-weight-base-bold);
|
|
8612
8612
|
--x-size-line-height-button-default: var(--x-size-line-height-text);
|
|
8613
8613
|
}
|
|
8614
|
-
:root {
|
|
8615
|
-
--x-size-border-radius-button-card: var(--x-size-border-radius-base-s);
|
|
8616
|
-
--x-size-border-radius-top-left-button-card: var(--x-size-border-radius-button-card);
|
|
8617
|
-
--x-size-border-radius-top-right-button-card: var(--x-size-border-radius-button-card);
|
|
8618
|
-
--x-size-border-radius-bottom-right-button-card: var(--x-size-border-radius-button-card);
|
|
8619
|
-
--x-size-border-radius-bottom-left-button-card: var(--x-size-border-radius-button-card);
|
|
8620
|
-
}
|
|
8621
8614
|
:root {
|
|
8622
8615
|
--x-color-background-button-default: var(--x-color-base-lead);
|
|
8623
8616
|
--x-color-border-button-default: var(--x-color-background-button-default);
|
|
@@ -8710,6 +8703,23 @@
|
|
|
8710
8703
|
--x-size-border-radius-bottom-right-button-card: var(--x-size-border-radius-button-card);
|
|
8711
8704
|
--x-size-border-radius-bottom-left-button-card: var(--x-size-border-radius-button-card);
|
|
8712
8705
|
}
|
|
8706
|
+
:root {
|
|
8707
|
+
--x-color-background-badge-default: var(--x-color-base-neutral-10);
|
|
8708
|
+
--x-color-text-badge-default: var(--x-color-base-neutral-100);
|
|
8709
|
+
--x-color-border-badge-default: var(--x-color-base-neutral-10);
|
|
8710
|
+
--x-size-border-radius-badge-default: var(--x-size-border-radius-base-pill);
|
|
8711
|
+
--x-size-border-width-badge-default: 0;
|
|
8712
|
+
--x-size-width-badge-default: 1.5em;
|
|
8713
|
+
--x-number-font-weight-badge-default: var(--x-number-font-weight-base-regular);
|
|
8714
|
+
--x-size-font-badge-default: var(--x-size-font-base-xs);
|
|
8715
|
+
}
|
|
8716
|
+
:root {
|
|
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);
|
|
8722
|
+
}
|
|
8713
8723
|
|
|
8714
8724
|
.x-button--card.x-button,
|
|
8715
8725
|
.x-button--card .x-button {
|
|
@@ -8735,16 +8745,6 @@
|
|
|
8735
8745
|
--x-number-font-weight-badge-default: var(--x-number-font-weight-base-regular);
|
|
8736
8746
|
--x-size-font-badge-default: var(--x-size-font-base-xs);
|
|
8737
8747
|
}
|
|
8738
|
-
:root {
|
|
8739
|
-
--x-color-background-badge-default: var(--x-color-base-neutral-10);
|
|
8740
|
-
--x-color-text-badge-default: var(--x-color-base-neutral-100);
|
|
8741
|
-
--x-color-border-badge-default: var(--x-color-base-neutral-10);
|
|
8742
|
-
--x-size-border-radius-badge-default: var(--x-size-border-radius-base-pill);
|
|
8743
|
-
--x-size-border-width-badge-default: 0;
|
|
8744
|
-
--x-size-width-badge-default: 1.5em;
|
|
8745
|
-
--x-number-font-weight-badge-default: var(--x-number-font-weight-base-regular);
|
|
8746
|
-
--x-size-font-badge-default: var(--x-size-font-base-xs);
|
|
8747
|
-
}
|
|
8748
8748
|
|
|
8749
8749
|
[dir="ltr"] .x-badge {
|
|
8750
8750
|
right: calc(var(--x-size-width-badge-default) / 4);
|
|
@@ -8806,13 +8806,6 @@
|
|
|
8806
8806
|
--x-size-base-19: 280px;
|
|
8807
8807
|
--x-size-base-20: 344px;
|
|
8808
8808
|
}
|
|
8809
|
-
:root {
|
|
8810
|
-
--x-size-border-radius-base-none: 0;
|
|
8811
|
-
--x-size-border-radius-base-s: var(--x-size-base-02);
|
|
8812
|
-
--x-size-border-radius-base-m: var(--x-size-base-06);
|
|
8813
|
-
--x-size-border-radius-base-pill: 99999px;
|
|
8814
|
-
--x-size-border-width-base: 1px;
|
|
8815
|
-
}
|
|
8816
8809
|
:root {
|
|
8817
8810
|
--x-color-base-lead: #243d48;
|
|
8818
8811
|
--x-color-base-auxiliary: #bfe1ec;
|
|
@@ -8825,4 +8818,11 @@
|
|
|
8825
8818
|
--x-color-base-enable: #00705c;
|
|
8826
8819
|
--x-color-base-disable: #e11f26;
|
|
8827
8820
|
--x-color-base-transparent: transparent;
|
|
8821
|
+
}
|
|
8822
|
+
:root {
|
|
8823
|
+
--x-size-border-radius-base-none: 0;
|
|
8824
|
+
--x-size-border-radius-base-s: var(--x-size-base-02);
|
|
8825
|
+
--x-size-border-radius-base-m: var(--x-size-base-06);
|
|
8826
|
+
--x-size-border-radius-base-pill: 99999px;
|
|
8827
|
+
--x-size-border-width-base: 1px;
|
|
8828
8828
|
}
|