@empathyco/x-components 6.0.0-alpha.81 → 6.0.0-alpha.82
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 +8 -0
- package/design-system/deprecated-full-theme.css +453 -453
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.0.0-alpha.82](https://github.com/empathyco/x/compare/@empathyco/x-components@6.0.0-alpha.81...@empathyco/x-components@6.0.0-alpha.82) (2025-05-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @empathyco/x-components
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [6.0.0-alpha.81](https://github.com/empathyco/x/compare/@empathyco/x-components@6.0.0-alpha.80...@empathyco/x-components@6.0.0-alpha.81) (2025-05-14)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
2
|
.x-uppercase {
|
|
4
3
|
text-transform: uppercase;
|
|
5
4
|
}
|
|
@@ -15,6 +14,26 @@
|
|
|
15
14
|
.x-normal-case {
|
|
16
15
|
text-transform: none;
|
|
17
16
|
}
|
|
17
|
+
.x-underline {
|
|
18
|
+
-webkit-text-decoration-line: underline;
|
|
19
|
+
text-decoration-line: underline;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.x-overline {
|
|
23
|
+
-webkit-text-decoration-line: overline;
|
|
24
|
+
text-decoration-line: overline;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.x-line-through {
|
|
28
|
+
-webkit-text-decoration-line: line-through;
|
|
29
|
+
text-decoration-line: line-through;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.x-no-underline {
|
|
33
|
+
-webkit-text-decoration-line: none;
|
|
34
|
+
text-decoration-line: none;
|
|
35
|
+
}
|
|
36
|
+
|
|
18
37
|
.x-static {
|
|
19
38
|
position: static !important;
|
|
20
39
|
}
|
|
@@ -937,25 +956,6 @@
|
|
|
937
956
|
[dir="rtl"] .x-margin--left-20 {
|
|
938
957
|
margin-right: var(--x-size-base-20) !important;
|
|
939
958
|
}
|
|
940
|
-
.x-underline {
|
|
941
|
-
-webkit-text-decoration-line: underline;
|
|
942
|
-
text-decoration-line: underline;
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
.x-overline {
|
|
946
|
-
-webkit-text-decoration-line: overline;
|
|
947
|
-
text-decoration-line: overline;
|
|
948
|
-
}
|
|
949
|
-
|
|
950
|
-
.x-line-through {
|
|
951
|
-
-webkit-text-decoration-line: line-through;
|
|
952
|
-
text-decoration-line: line-through;
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
.x-no-underline {
|
|
956
|
-
-webkit-text-decoration-line: none;
|
|
957
|
-
text-decoration-line: none;
|
|
958
|
-
}
|
|
959
959
|
.x-line-height--none {
|
|
960
960
|
line-height: 1 !important;
|
|
961
961
|
}
|
|
@@ -1806,49 +1806,6 @@
|
|
|
1806
1806
|
.x-border-width--left-10 {
|
|
1807
1807
|
border-style: solid !important;
|
|
1808
1808
|
}
|
|
1809
|
-
.x-border-color--lead {
|
|
1810
|
-
border-color: var(--x-color-base-lead) !important;
|
|
1811
|
-
}
|
|
1812
|
-
|
|
1813
|
-
.x-border-color--auxiliary {
|
|
1814
|
-
border-color: var(--x-color-base-auxiliary) !important;
|
|
1815
|
-
}
|
|
1816
|
-
|
|
1817
|
-
.x-border-color--neutral-10 {
|
|
1818
|
-
border-color: var(--x-color-base-neutral-10) !important;
|
|
1819
|
-
}
|
|
1820
|
-
|
|
1821
|
-
.x-border-color--neutral-35 {
|
|
1822
|
-
border-color: var(--x-color-base-neutral-35) !important;
|
|
1823
|
-
}
|
|
1824
|
-
|
|
1825
|
-
.x-border-color--neutral-70 {
|
|
1826
|
-
border-color: var(--x-color-base-neutral-70) !important;
|
|
1827
|
-
}
|
|
1828
|
-
|
|
1829
|
-
.x-border-color--neutral-95 {
|
|
1830
|
-
border-color: var(--x-color-base-neutral-95) !important;
|
|
1831
|
-
}
|
|
1832
|
-
|
|
1833
|
-
.x-border-color--neutral-100 {
|
|
1834
|
-
border-color: var(--x-color-base-neutral-100) !important;
|
|
1835
|
-
}
|
|
1836
|
-
|
|
1837
|
-
.x-border-color--accent {
|
|
1838
|
-
border-color: var(--x-color-base-accent) !important;
|
|
1839
|
-
}
|
|
1840
|
-
|
|
1841
|
-
.x-border-color--enable {
|
|
1842
|
-
border-color: var(--x-color-base-enable) !important;
|
|
1843
|
-
}
|
|
1844
|
-
|
|
1845
|
-
.x-border-color--disable {
|
|
1846
|
-
border-color: var(--x-color-base-disable) !important;
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
|
-
.x-border-color--transparent {
|
|
1850
|
-
border-color: var(--x-color-base-transparent) !important;
|
|
1851
|
-
}
|
|
1852
1809
|
.x-border-radius--00 {
|
|
1853
1810
|
border-radius: 0 !important;
|
|
1854
1811
|
}
|
|
@@ -3357,21 +3314,6 @@
|
|
|
3357
3314
|
[dir="rtl"] .x-border-radius--bottom-right-20 {
|
|
3358
3315
|
border-bottom-left-radius: var(--x-size-base-20) !important;
|
|
3359
3316
|
}
|
|
3360
|
-
.x-text--stroke.x-text {
|
|
3361
|
-
--x-string-text-decoration: line-through;
|
|
3362
|
-
}
|
|
3363
|
-
.x-text--stroke.x-title1 {
|
|
3364
|
-
--x-string-text-decoration-title1: line-through;
|
|
3365
|
-
}
|
|
3366
|
-
.x-text--stroke.x-title2 {
|
|
3367
|
-
--x-string-text-decoration-title2: line-through;
|
|
3368
|
-
}
|
|
3369
|
-
.x-text--stroke.x-title3 {
|
|
3370
|
-
--x-string-text-decoration-title3: line-through;
|
|
3371
|
-
}
|
|
3372
|
-
.x-text--stroke.x-small {
|
|
3373
|
-
--x-string-text-decoration-small: line-through;
|
|
3374
|
-
}
|
|
3375
3317
|
.x-background--lead {
|
|
3376
3318
|
background-color: var(--x-color-base-lead) !important;
|
|
3377
3319
|
}
|
|
@@ -3415,9 +3357,67 @@
|
|
|
3415
3357
|
.x-background--transparent {
|
|
3416
3358
|
background-color: var(--x-color-base-transparent) !important;
|
|
3417
3359
|
}
|
|
3360
|
+
.x-text--stroke.x-text {
|
|
3361
|
+
--x-string-text-decoration: line-through;
|
|
3362
|
+
}
|
|
3363
|
+
.x-text--stroke.x-title1 {
|
|
3364
|
+
--x-string-text-decoration-title1: line-through;
|
|
3365
|
+
}
|
|
3366
|
+
.x-text--stroke.x-title2 {
|
|
3367
|
+
--x-string-text-decoration-title2: line-through;
|
|
3368
|
+
}
|
|
3369
|
+
.x-text--stroke.x-title3 {
|
|
3370
|
+
--x-string-text-decoration-title3: line-through;
|
|
3371
|
+
}
|
|
3372
|
+
.x-text--stroke.x-small {
|
|
3373
|
+
--x-string-text-decoration-small: line-through;
|
|
3374
|
+
}
|
|
3418
3375
|
:root {
|
|
3419
3376
|
--x-color-text-secondary: var(--x-color-base-neutral-35);
|
|
3420
3377
|
}
|
|
3378
|
+
.x-border-color--lead {
|
|
3379
|
+
border-color: var(--x-color-base-lead) !important;
|
|
3380
|
+
}
|
|
3381
|
+
|
|
3382
|
+
.x-border-color--auxiliary {
|
|
3383
|
+
border-color: var(--x-color-base-auxiliary) !important;
|
|
3384
|
+
}
|
|
3385
|
+
|
|
3386
|
+
.x-border-color--neutral-10 {
|
|
3387
|
+
border-color: var(--x-color-base-neutral-10) !important;
|
|
3388
|
+
}
|
|
3389
|
+
|
|
3390
|
+
.x-border-color--neutral-35 {
|
|
3391
|
+
border-color: var(--x-color-base-neutral-35) !important;
|
|
3392
|
+
}
|
|
3393
|
+
|
|
3394
|
+
.x-border-color--neutral-70 {
|
|
3395
|
+
border-color: var(--x-color-base-neutral-70) !important;
|
|
3396
|
+
}
|
|
3397
|
+
|
|
3398
|
+
.x-border-color--neutral-95 {
|
|
3399
|
+
border-color: var(--x-color-base-neutral-95) !important;
|
|
3400
|
+
}
|
|
3401
|
+
|
|
3402
|
+
.x-border-color--neutral-100 {
|
|
3403
|
+
border-color: var(--x-color-base-neutral-100) !important;
|
|
3404
|
+
}
|
|
3405
|
+
|
|
3406
|
+
.x-border-color--accent {
|
|
3407
|
+
border-color: var(--x-color-base-accent) !important;
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3410
|
+
.x-border-color--enable {
|
|
3411
|
+
border-color: var(--x-color-base-enable) !important;
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
.x-border-color--disable {
|
|
3415
|
+
border-color: var(--x-color-base-disable) !important;
|
|
3416
|
+
}
|
|
3417
|
+
|
|
3418
|
+
.x-border-color--transparent {
|
|
3419
|
+
border-color: var(--x-color-base-transparent) !important;
|
|
3420
|
+
}
|
|
3421
3421
|
.x-text--secondary {
|
|
3422
3422
|
--x-color-text-default: var(--x-color-text-secondary);
|
|
3423
3423
|
}
|
|
@@ -3940,6 +3940,13 @@
|
|
|
3940
3940
|
--x-size-border-radius-bottom-right-tag-card: var(--x-size-border-radius-tag-card);
|
|
3941
3941
|
--x-size-border-radius-bottom-left-tag-card: var(--x-size-border-radius-tag-card);
|
|
3942
3942
|
}
|
|
3943
|
+
:root {
|
|
3944
|
+
--x-size-border-radius-tag-card: var(--x-size-border-radius-base-s);
|
|
3945
|
+
--x-size-border-radius-top-left-tag-card: var(--x-size-border-radius-tag-card);
|
|
3946
|
+
--x-size-border-radius-top-right-tag-card: var(--x-size-border-radius-tag-card);
|
|
3947
|
+
--x-size-border-radius-bottom-right-tag-card: var(--x-size-border-radius-tag-card);
|
|
3948
|
+
--x-size-border-radius-bottom-left-tag-card: var(--x-size-border-radius-tag-card);
|
|
3949
|
+
}
|
|
3943
3950
|
|
|
3944
3951
|
.x-tag--card.x-tag,
|
|
3945
3952
|
.x-tag--card .x-tag {
|
|
@@ -3951,13 +3958,6 @@
|
|
|
3951
3958
|
);
|
|
3952
3959
|
--x-size-border-radius-bottom-left-tag-default: var(--x-size-border-radius-bottom-left-tag-card);
|
|
3953
3960
|
}
|
|
3954
|
-
:root {
|
|
3955
|
-
--x-size-border-radius-tag-card: var(--x-size-border-radius-base-s);
|
|
3956
|
-
--x-size-border-radius-top-left-tag-card: var(--x-size-border-radius-tag-card);
|
|
3957
|
-
--x-size-border-radius-top-right-tag-card: var(--x-size-border-radius-tag-card);
|
|
3958
|
-
--x-size-border-radius-bottom-right-tag-card: var(--x-size-border-radius-tag-card);
|
|
3959
|
-
--x-size-border-radius-bottom-left-tag-card: var(--x-size-border-radius-tag-card);
|
|
3960
|
-
}
|
|
3961
3961
|
:root {
|
|
3962
3962
|
--x-color-text-suggestion-group-default: var(--x-color-text-suggestion-default);
|
|
3963
3963
|
--x-color-text-suggestion-group-matching-part-default: var(
|
|
@@ -4540,14 +4540,6 @@
|
|
|
4540
4540
|
--x-size-padding-row-05: var(--x-size-base-05);
|
|
4541
4541
|
--x-size-padding-row-06: var(--x-size-base-06);
|
|
4542
4542
|
}
|
|
4543
|
-
/* @deprecated */
|
|
4544
|
-
:root {
|
|
4545
|
-
--x-size-padding-row-02: var(--x-size-base-02);
|
|
4546
|
-
--x-size-padding-row-03: var(--x-size-base-03);
|
|
4547
|
-
--x-size-padding-row-04: var(--x-size-base-04);
|
|
4548
|
-
--x-size-padding-row-05: var(--x-size-base-05);
|
|
4549
|
-
--x-size-padding-row-06: var(--x-size-base-06);
|
|
4550
|
-
}
|
|
4551
4543
|
|
|
4552
4544
|
/* @deprecated */
|
|
4553
4545
|
.x-row--padding-02 {
|
|
@@ -4693,6 +4685,14 @@
|
|
|
4693
4685
|
.x-row--gap-20 {
|
|
4694
4686
|
--x-size-gap-row: var(--x-size-gap-row-20);
|
|
4695
4687
|
}
|
|
4688
|
+
/* @deprecated */
|
|
4689
|
+
:root {
|
|
4690
|
+
--x-size-padding-row-02: var(--x-size-base-02);
|
|
4691
|
+
--x-size-padding-row-03: var(--x-size-base-03);
|
|
4692
|
+
--x-size-padding-row-04: var(--x-size-base-04);
|
|
4693
|
+
--x-size-padding-row-05: var(--x-size-base-05);
|
|
4694
|
+
--x-size-padding-row-06: var(--x-size-base-06);
|
|
4695
|
+
}
|
|
4696
4696
|
:root {
|
|
4697
4697
|
--x-size-gap-row: 0;
|
|
4698
4698
|
--x-size-padding-row: 0;
|
|
@@ -4846,6 +4846,23 @@
|
|
|
4846
4846
|
--x-size-border-width-result-description-default: 0;
|
|
4847
4847
|
--x-size-border-width-result-picture-default: 0;
|
|
4848
4848
|
}
|
|
4849
|
+
:root {
|
|
4850
|
+
--x-color-border-result-default: var(--x-color-base-lead);
|
|
4851
|
+
--x-color-border-result-overlay-default: var(--x-color-border-result-default);
|
|
4852
|
+
--x-color-border-result-description-default: var(--x-color-border-result-default);
|
|
4853
|
+
--x-color-border-result-picture-default: var(--x-color-border-result-default);
|
|
4854
|
+
--x-color-background-result-default: transparent;
|
|
4855
|
+
--x-size-padding-result-default: 0;
|
|
4856
|
+
--x-size-padding-result-overlay-default: 0;
|
|
4857
|
+
--x-size-padding-result-description-default: 0;
|
|
4858
|
+
--x-size-gap-result-default: var(--x-size-base-03);
|
|
4859
|
+
--x-size-padding-result-picture-default: 0;
|
|
4860
|
+
--x-size-border-radius-result-default: var(--x-size-border-radius-base-none);
|
|
4861
|
+
--x-size-border-width-result-default: 0;
|
|
4862
|
+
--x-size-border-width-result-overlay-default: 0;
|
|
4863
|
+
--x-size-border-width-result-description-default: 0;
|
|
4864
|
+
--x-size-border-width-result-picture-default: 0;
|
|
4865
|
+
}
|
|
4849
4866
|
|
|
4850
4867
|
.x-result {
|
|
4851
4868
|
display: grid;
|
|
@@ -4899,23 +4916,6 @@
|
|
|
4899
4916
|
opacity: 1;
|
|
4900
4917
|
}
|
|
4901
4918
|
}
|
|
4902
|
-
:root {
|
|
4903
|
-
--x-color-border-result-default: var(--x-color-base-lead);
|
|
4904
|
-
--x-color-border-result-overlay-default: var(--x-color-border-result-default);
|
|
4905
|
-
--x-color-border-result-description-default: var(--x-color-border-result-default);
|
|
4906
|
-
--x-color-border-result-picture-default: var(--x-color-border-result-default);
|
|
4907
|
-
--x-color-background-result-default: transparent;
|
|
4908
|
-
--x-size-padding-result-default: 0;
|
|
4909
|
-
--x-size-padding-result-overlay-default: 0;
|
|
4910
|
-
--x-size-padding-result-description-default: 0;
|
|
4911
|
-
--x-size-gap-result-default: var(--x-size-base-03);
|
|
4912
|
-
--x-size-padding-result-picture-default: 0;
|
|
4913
|
-
--x-size-border-radius-result-default: var(--x-size-border-radius-base-none);
|
|
4914
|
-
--x-size-border-width-result-default: 0;
|
|
4915
|
-
--x-size-border-width-result-overlay-default: 0;
|
|
4916
|
-
--x-size-border-width-result-description-default: 0;
|
|
4917
|
-
--x-size-border-width-result-picture-default: 0;
|
|
4918
|
-
}
|
|
4919
4919
|
:root {
|
|
4920
4920
|
--x-size-border-radius-result-card: var(--x-size-border-radius-base-s);
|
|
4921
4921
|
}
|
|
@@ -4979,14 +4979,6 @@
|
|
|
4979
4979
|
:root {
|
|
4980
4980
|
--x-number-aspect-ratio-picture: 1;
|
|
4981
4981
|
}
|
|
4982
|
-
|
|
4983
|
-
.x-picture--fixed-ratio.x-picture {
|
|
4984
|
-
aspect-ratio: var(--x-number-aspect-ratio-picture);
|
|
4985
|
-
width: 100%;
|
|
4986
|
-
}
|
|
4987
|
-
:root {
|
|
4988
|
-
--x-number-aspect-ratio-picture: 1;
|
|
4989
|
-
}
|
|
4990
4982
|
:root {
|
|
4991
4983
|
--x-size-border-radius-picture-default: 0;
|
|
4992
4984
|
--x-size-border-radius-top-picture-default: var(--x-size-border-radius-picture-default);
|
|
@@ -5006,60 +4998,12 @@
|
|
|
5006
4998
|
--x-mix-blend-mode-picture-placeholder-default: var(--x-mix-blend-mode-picture-default);
|
|
5007
4999
|
}
|
|
5008
5000
|
:root {
|
|
5009
|
-
--x-
|
|
5010
|
-
--x-size-border-radius-top-picture-default: var(--x-size-border-radius-picture-default);
|
|
5011
|
-
--x-size-border-radius-right-picture-default: var(--x-size-border-radius-picture-default);
|
|
5012
|
-
--x-size-border-radius-bottom-picture-default: var(--x-size-border-radius-picture-default);
|
|
5013
|
-
--x-size-border-radius-left-picture-default: var(--x-size-border-radius-picture-default);
|
|
5014
|
-
--x-color-background-picture-default: transparent;
|
|
5015
|
-
--x-color-fill-picture-placeholder-path-default: var(--x-color-base-neutral-70);
|
|
5016
|
-
--x-color-fill-picture-placeholder-rect-default: var(--x-color-base-neutral-95);
|
|
5017
|
-
--x-color-fill-picture-fallback-path-default: var(--x-color-base-neutral-70);
|
|
5018
|
-
--x-color-fill-picture-fallback-rect-default: var(--x-color-base-neutral-95);
|
|
5019
|
-
--x-object-fit-picture-default: contain;
|
|
5020
|
-
--x-object-fit-picture-fallback-default: var(--x-object-fit-picture-default);
|
|
5021
|
-
--x-object-fit-picture-placeholder-default: var(--x-object-fit-picture-default);
|
|
5022
|
-
--x-mix-blend-mode-picture-default: normal;
|
|
5023
|
-
--x-mix-blend-mode-picture-fallback-default: var(--x-mix-blend-mode-picture-default);
|
|
5024
|
-
--x-mix-blend-mode-picture-placeholder-default: var(--x-mix-blend-mode-picture-default);
|
|
5001
|
+
--x-number-aspect-ratio-picture: 1;
|
|
5025
5002
|
}
|
|
5026
5003
|
|
|
5027
|
-
.x-picture {
|
|
5028
|
-
|
|
5029
|
-
overflow: hidden;
|
|
5030
|
-
border-radius: var(--x-size-border-radius-top-picture-default) var(--x-size-border-radius-right-picture-default) var(--x-size-border-radius-bottom-picture-default) var(--x-size-border-radius-left-picture-default);
|
|
5031
|
-
background: var(--x-color-background-picture-default);
|
|
5032
|
-
}
|
|
5033
|
-
.x-picture-image {
|
|
5034
|
-
display: block;
|
|
5004
|
+
.x-picture--fixed-ratio.x-picture {
|
|
5005
|
+
aspect-ratio: var(--x-number-aspect-ratio-picture);
|
|
5035
5006
|
width: 100%;
|
|
5036
|
-
height: 100%;
|
|
5037
|
-
object-fit: var(--x-object-fit-picture-default);
|
|
5038
|
-
mix-blend-mode: var(--x-mix-blend-mode-picture-default);
|
|
5039
|
-
}
|
|
5040
|
-
.x-picture-image--fallback {
|
|
5041
|
-
--x-object-fit-picture-default: var(--x-object-fit-picture-fallback-default) !important;
|
|
5042
|
-
--x-mix-blend-mode-picture-default: var(
|
|
5043
|
-
--x-mix-blend-mode-picture-fallback-default
|
|
5044
|
-
) !important;
|
|
5045
|
-
}
|
|
5046
|
-
.x-picture-image--fallback > rect {
|
|
5047
|
-
fill: var(--x-color-fill-picture-fallback-rect-default) !important;
|
|
5048
|
-
}
|
|
5049
|
-
.x-picture-image--fallback > path {
|
|
5050
|
-
fill: var(--x-color-fill-picture-fallback-path-default) !important;
|
|
5051
|
-
}
|
|
5052
|
-
.x-picture-image--placeholder {
|
|
5053
|
-
--x-object-fit-picture-default: var(--x-object-fit-picture-placeholder-default) !important;
|
|
5054
|
-
--x-mix-blend-mode-picture-default: var(
|
|
5055
|
-
--x-mix-blend-mode-picture-placeholder-default
|
|
5056
|
-
) !important;
|
|
5057
|
-
}
|
|
5058
|
-
.x-picture-image--placeholder > rect {
|
|
5059
|
-
fill: var(--x-color-fill-picture-placeholder-rect-default) !important;
|
|
5060
|
-
}
|
|
5061
|
-
.x-picture-image--placeholder > path {
|
|
5062
|
-
fill: var(--x-color-fill-picture-placeholder-path-default) !important;
|
|
5063
5007
|
}
|
|
5064
5008
|
:root {
|
|
5065
5009
|
--x-color-background-picture-cover-hover-from: rgba(0, 0, 0, 0);
|
|
@@ -5449,6 +5393,141 @@
|
|
|
5449
5393
|
--x-number-font-weight-base-regular
|
|
5450
5394
|
);
|
|
5451
5395
|
}
|
|
5396
|
+
:root {
|
|
5397
|
+
--x-size-border-radius-picture-default: 0;
|
|
5398
|
+
--x-size-border-radius-top-picture-default: var(--x-size-border-radius-picture-default);
|
|
5399
|
+
--x-size-border-radius-right-picture-default: var(--x-size-border-radius-picture-default);
|
|
5400
|
+
--x-size-border-radius-bottom-picture-default: var(--x-size-border-radius-picture-default);
|
|
5401
|
+
--x-size-border-radius-left-picture-default: var(--x-size-border-radius-picture-default);
|
|
5402
|
+
--x-color-background-picture-default: transparent;
|
|
5403
|
+
--x-color-fill-picture-placeholder-path-default: var(--x-color-base-neutral-70);
|
|
5404
|
+
--x-color-fill-picture-placeholder-rect-default: var(--x-color-base-neutral-95);
|
|
5405
|
+
--x-color-fill-picture-fallback-path-default: var(--x-color-base-neutral-70);
|
|
5406
|
+
--x-color-fill-picture-fallback-rect-default: var(--x-color-base-neutral-95);
|
|
5407
|
+
--x-object-fit-picture-default: contain;
|
|
5408
|
+
--x-object-fit-picture-fallback-default: var(--x-object-fit-picture-default);
|
|
5409
|
+
--x-object-fit-picture-placeholder-default: var(--x-object-fit-picture-default);
|
|
5410
|
+
--x-mix-blend-mode-picture-default: normal;
|
|
5411
|
+
--x-mix-blend-mode-picture-fallback-default: var(--x-mix-blend-mode-picture-default);
|
|
5412
|
+
--x-mix-blend-mode-picture-placeholder-default: var(--x-mix-blend-mode-picture-default);
|
|
5413
|
+
}
|
|
5414
|
+
|
|
5415
|
+
.x-picture {
|
|
5416
|
+
display: block;
|
|
5417
|
+
overflow: hidden;
|
|
5418
|
+
border-radius: var(--x-size-border-radius-top-picture-default) var(--x-size-border-radius-right-picture-default) var(--x-size-border-radius-bottom-picture-default) var(--x-size-border-radius-left-picture-default);
|
|
5419
|
+
background: var(--x-color-background-picture-default);
|
|
5420
|
+
}
|
|
5421
|
+
.x-picture-image {
|
|
5422
|
+
display: block;
|
|
5423
|
+
width: 100%;
|
|
5424
|
+
height: 100%;
|
|
5425
|
+
object-fit: var(--x-object-fit-picture-default);
|
|
5426
|
+
mix-blend-mode: var(--x-mix-blend-mode-picture-default);
|
|
5427
|
+
}
|
|
5428
|
+
.x-picture-image--fallback {
|
|
5429
|
+
--x-object-fit-picture-default: var(--x-object-fit-picture-fallback-default) !important;
|
|
5430
|
+
--x-mix-blend-mode-picture-default: var(
|
|
5431
|
+
--x-mix-blend-mode-picture-fallback-default
|
|
5432
|
+
) !important;
|
|
5433
|
+
}
|
|
5434
|
+
.x-picture-image--fallback > rect {
|
|
5435
|
+
fill: var(--x-color-fill-picture-fallback-rect-default) !important;
|
|
5436
|
+
}
|
|
5437
|
+
.x-picture-image--fallback > path {
|
|
5438
|
+
fill: var(--x-color-fill-picture-fallback-path-default) !important;
|
|
5439
|
+
}
|
|
5440
|
+
.x-picture-image--placeholder {
|
|
5441
|
+
--x-object-fit-picture-default: var(--x-object-fit-picture-placeholder-default) !important;
|
|
5442
|
+
--x-mix-blend-mode-picture-default: var(
|
|
5443
|
+
--x-mix-blend-mode-picture-placeholder-default
|
|
5444
|
+
) !important;
|
|
5445
|
+
}
|
|
5446
|
+
.x-picture-image--placeholder > rect {
|
|
5447
|
+
fill: var(--x-color-fill-picture-placeholder-rect-default) !important;
|
|
5448
|
+
}
|
|
5449
|
+
.x-picture-image--placeholder > path {
|
|
5450
|
+
fill: var(--x-color-fill-picture-placeholder-path-default) !important;
|
|
5451
|
+
}
|
|
5452
|
+
:root {
|
|
5453
|
+
--x-modal-overlay-color: rgb(0, 0, 0);
|
|
5454
|
+
--x-modal-overlay-opacity: 0.7;
|
|
5455
|
+
}
|
|
5456
|
+
|
|
5457
|
+
.x-modal__overlay {
|
|
5458
|
+
background-color: var(--x-modal-overlay-color) !important;
|
|
5459
|
+
opacity: var(--x-modal-overlay-opacity) !important;
|
|
5460
|
+
}
|
|
5461
|
+
:root {
|
|
5462
|
+
--x-modal-overlay-color: rgb(0, 0, 0);
|
|
5463
|
+
--x-modal-overlay-opacity: 0.7;
|
|
5464
|
+
}
|
|
5465
|
+
:root {
|
|
5466
|
+
--x-string-justify-message-default: center;
|
|
5467
|
+
--x-size-gap-message-default: var(--x-size-base-03);
|
|
5468
|
+
--x-size-padding-message-default: var(--x-size-base-06);
|
|
5469
|
+
--x-color-background-message-default: var(--x-color-base-neutral-95);
|
|
5470
|
+
--x-color-border-message-default: var(--x-color-background-message-default);
|
|
5471
|
+
--x-color-text-message-default: var(--x-color-text-default);
|
|
5472
|
+
--x-size-border-radius-message-default: var(--x-size-border-radius-base-m);
|
|
5473
|
+
--x-size-border-radius-top-left-message-default: var(--x-size-border-radius-message-default);
|
|
5474
|
+
--x-size-border-radius-top-right-message-default: var(--x-size-border-radius-message-default);
|
|
5475
|
+
--x-size-border-radius-bottom-right-message-default: var(--x-size-border-radius-message-default);
|
|
5476
|
+
--x-size-border-radius-bottom-left-message-default: var(--x-size-border-radius-message-default);
|
|
5477
|
+
--x-size-border-width-message-default: var(--x-size-border-width-base);
|
|
5478
|
+
--x-size-border-width-top-message-default: var(--x-size-border-width-message-default);
|
|
5479
|
+
--x-size-border-width-right-message-default: var(--x-size-border-width-message-default);
|
|
5480
|
+
--x-size-border-width-bottom-message-default: var(--x-size-border-width-message-default);
|
|
5481
|
+
--x-size-border-width-left-message-default: var(--x-size-border-width-message-default);
|
|
5482
|
+
--x-font-family-message-default: var(--x-font-family-title3);
|
|
5483
|
+
--x-size-font-message-default: var(--x-size-font-title3);
|
|
5484
|
+
--x-number-font-weight-message-default: var(--x-number-font-weight-title3);
|
|
5485
|
+
}
|
|
5486
|
+
:root {
|
|
5487
|
+
--x-color-text-option-list-button-bottom-hover: var(--x-color-base-neutral-10);
|
|
5488
|
+
--x-color-text-option-list-button-bottom-selected-hover: var(
|
|
5489
|
+
--x-color-text-option-list-button-bottom-selected
|
|
5490
|
+
);
|
|
5491
|
+
--x-color-text-option-list-button-bottom: var(--x-color-base-neutral-35);
|
|
5492
|
+
--x-color-text-option-list-button-bottom-selected: var(--x-color-text-default);
|
|
5493
|
+
--x-color-border-option-list-item-bottom: transparent;
|
|
5494
|
+
--x-color-border-top-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5495
|
+
--x-color-border-right-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5496
|
+
--x-color-border-bottom-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5497
|
+
--x-color-border-left-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5498
|
+
--x-color-border-option-list-item-bottom-selected: var(--x-color-base-neutral-10);
|
|
5499
|
+
--x-color-border-top-option-list-item-bottom-selected: var(
|
|
5500
|
+
--x-color-border-option-list-item-bottom
|
|
5501
|
+
);
|
|
5502
|
+
--x-color-border-right-option-list-item-bottom-selected: var(
|
|
5503
|
+
--x-color-border-option-list-item-bottom
|
|
5504
|
+
);
|
|
5505
|
+
--x-color-border-bottom-option-list-item-bottom-selected: var(
|
|
5506
|
+
--x-color-border-option-list-item-bottom-selected
|
|
5507
|
+
);
|
|
5508
|
+
--x-color-border-left-option-list-item-bottom-selected: var(
|
|
5509
|
+
--x-color-border-option-list-item-bottom
|
|
5510
|
+
);
|
|
5511
|
+
--x-size-border-width-option-list-item-bottom: var(--x-size-border-width-base);
|
|
5512
|
+
--x-size-border-width-top-option-list-item-bottom: 0;
|
|
5513
|
+
--x-size-border-width-right-option-list-item-bottom: 0;
|
|
5514
|
+
--x-size-border-width-bottom-option-list-item-bottom: var(
|
|
5515
|
+
--x-size-border-width-option-list-item-bottom
|
|
5516
|
+
);
|
|
5517
|
+
--x-size-border-width-left-option-list-item-bottom: 0;
|
|
5518
|
+
--x-size-border-width-top-option-list-item-bottom-selected: 0;
|
|
5519
|
+
--x-size-border-width-right-option-list-item-bottom-selected: 0;
|
|
5520
|
+
--x-size-border-width-bottom-option-list-item-bottom-selected: var(
|
|
5521
|
+
--x-size-border-width-option-list-item-bottom
|
|
5522
|
+
);
|
|
5523
|
+
--x-size-border-width-left-option-list-item-bottom-selected: 0;
|
|
5524
|
+
--x-size-font-option-list-button-bottom: var(--x-size-font-text);
|
|
5525
|
+
--x-font-decoration-option-list-button-bottom-hover: none;
|
|
5526
|
+
--x-number-font-weight-option-list-button-bottom: var(--x-number-font-weight-base-regular);
|
|
5527
|
+
--x-number-font-weight-option-list-button-bottom-selected: var(
|
|
5528
|
+
--x-number-font-weight-base-regular
|
|
5529
|
+
);
|
|
5530
|
+
}
|
|
5452
5531
|
|
|
5453
5532
|
.x-option-list--bottom.x-option-list,
|
|
5454
5533
|
.x-option-list--bottom .x-option-list {
|
|
@@ -5535,85 +5614,6 @@
|
|
|
5535
5614
|
--x-size-border-width-bottom-option-list-item-default: inherit;
|
|
5536
5615
|
--x-size-border-width-left-option-list-item-default: inherit;
|
|
5537
5616
|
}
|
|
5538
|
-
:root {
|
|
5539
|
-
--x-color-text-option-list-button-bottom-hover: var(--x-color-base-neutral-10);
|
|
5540
|
-
--x-color-text-option-list-button-bottom-selected-hover: var(
|
|
5541
|
-
--x-color-text-option-list-button-bottom-selected
|
|
5542
|
-
);
|
|
5543
|
-
--x-color-text-option-list-button-bottom: var(--x-color-base-neutral-35);
|
|
5544
|
-
--x-color-text-option-list-button-bottom-selected: var(--x-color-text-default);
|
|
5545
|
-
--x-color-border-option-list-item-bottom: transparent;
|
|
5546
|
-
--x-color-border-top-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5547
|
-
--x-color-border-right-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5548
|
-
--x-color-border-bottom-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5549
|
-
--x-color-border-left-option-list-item-bottom: var(--x-color-border-option-list-item-bottom);
|
|
5550
|
-
--x-color-border-option-list-item-bottom-selected: var(--x-color-base-neutral-10);
|
|
5551
|
-
--x-color-border-top-option-list-item-bottom-selected: var(
|
|
5552
|
-
--x-color-border-option-list-item-bottom
|
|
5553
|
-
);
|
|
5554
|
-
--x-color-border-right-option-list-item-bottom-selected: var(
|
|
5555
|
-
--x-color-border-option-list-item-bottom
|
|
5556
|
-
);
|
|
5557
|
-
--x-color-border-bottom-option-list-item-bottom-selected: var(
|
|
5558
|
-
--x-color-border-option-list-item-bottom-selected
|
|
5559
|
-
);
|
|
5560
|
-
--x-color-border-left-option-list-item-bottom-selected: var(
|
|
5561
|
-
--x-color-border-option-list-item-bottom
|
|
5562
|
-
);
|
|
5563
|
-
--x-size-border-width-option-list-item-bottom: var(--x-size-border-width-base);
|
|
5564
|
-
--x-size-border-width-top-option-list-item-bottom: 0;
|
|
5565
|
-
--x-size-border-width-right-option-list-item-bottom: 0;
|
|
5566
|
-
--x-size-border-width-bottom-option-list-item-bottom: var(
|
|
5567
|
-
--x-size-border-width-option-list-item-bottom
|
|
5568
|
-
);
|
|
5569
|
-
--x-size-border-width-left-option-list-item-bottom: 0;
|
|
5570
|
-
--x-size-border-width-top-option-list-item-bottom-selected: 0;
|
|
5571
|
-
--x-size-border-width-right-option-list-item-bottom-selected: 0;
|
|
5572
|
-
--x-size-border-width-bottom-option-list-item-bottom-selected: var(
|
|
5573
|
-
--x-size-border-width-option-list-item-bottom
|
|
5574
|
-
);
|
|
5575
|
-
--x-size-border-width-left-option-list-item-bottom-selected: 0;
|
|
5576
|
-
--x-size-font-option-list-button-bottom: var(--x-size-font-text);
|
|
5577
|
-
--x-font-decoration-option-list-button-bottom-hover: none;
|
|
5578
|
-
--x-number-font-weight-option-list-button-bottom: var(--x-number-font-weight-base-regular);
|
|
5579
|
-
--x-number-font-weight-option-list-button-bottom-selected: var(
|
|
5580
|
-
--x-number-font-weight-base-regular
|
|
5581
|
-
);
|
|
5582
|
-
}
|
|
5583
|
-
:root {
|
|
5584
|
-
--x-modal-overlay-color: rgb(0, 0, 0);
|
|
5585
|
-
--x-modal-overlay-opacity: 0.7;
|
|
5586
|
-
}
|
|
5587
|
-
:root {
|
|
5588
|
-
--x-modal-overlay-color: rgb(0, 0, 0);
|
|
5589
|
-
--x-modal-overlay-opacity: 0.7;
|
|
5590
|
-
}
|
|
5591
|
-
|
|
5592
|
-
.x-modal__overlay {
|
|
5593
|
-
background-color: var(--x-modal-overlay-color) !important;
|
|
5594
|
-
opacity: var(--x-modal-overlay-opacity) !important;
|
|
5595
|
-
}
|
|
5596
|
-
:root {
|
|
5597
|
-
--x-string-justify-message-default: center;
|
|
5598
|
-
--x-size-gap-message-default: var(--x-size-base-03);
|
|
5599
|
-
--x-size-padding-message-default: var(--x-size-base-06);
|
|
5600
|
-
--x-color-background-message-default: var(--x-color-base-neutral-95);
|
|
5601
|
-
--x-color-border-message-default: var(--x-color-background-message-default);
|
|
5602
|
-
--x-color-text-message-default: var(--x-color-text-default);
|
|
5603
|
-
--x-size-border-radius-message-default: var(--x-size-border-radius-base-m);
|
|
5604
|
-
--x-size-border-radius-top-left-message-default: var(--x-size-border-radius-message-default);
|
|
5605
|
-
--x-size-border-radius-top-right-message-default: var(--x-size-border-radius-message-default);
|
|
5606
|
-
--x-size-border-radius-bottom-right-message-default: var(--x-size-border-radius-message-default);
|
|
5607
|
-
--x-size-border-radius-bottom-left-message-default: var(--x-size-border-radius-message-default);
|
|
5608
|
-
--x-size-border-width-message-default: var(--x-size-border-width-base);
|
|
5609
|
-
--x-size-border-width-top-message-default: var(--x-size-border-width-message-default);
|
|
5610
|
-
--x-size-border-width-right-message-default: var(--x-size-border-width-message-default);
|
|
5611
|
-
--x-size-border-width-bottom-message-default: var(--x-size-border-width-message-default);
|
|
5612
|
-
--x-size-border-width-left-message-default: var(--x-size-border-width-message-default);
|
|
5613
|
-
--x-font-family-message-default: var(--x-font-family-title3);
|
|
5614
|
-
--x-size-font-message-default: var(--x-size-font-title3);
|
|
5615
|
-
--x-number-font-weight-message-default: var(--x-number-font-weight-title3);
|
|
5616
|
-
}
|
|
5617
5617
|
:root {
|
|
5618
5618
|
--x-string-justify-message-default: center;
|
|
5619
5619
|
--x-size-gap-message-default: var(--x-size-base-03);
|
|
@@ -6593,6 +6593,14 @@
|
|
|
6593
6593
|
--x-size-align-list: stretch;
|
|
6594
6594
|
--x-size-align-list-stretch: stretch;
|
|
6595
6595
|
}
|
|
6596
|
+
:root {
|
|
6597
|
+
--x-string-flow-list: column nowrap;
|
|
6598
|
+
--x-size-padding-list: 0;
|
|
6599
|
+
--x-size-gap-list: 0;
|
|
6600
|
+
--x-size-justify-list: stretch;
|
|
6601
|
+
--x-size-align-list: stretch;
|
|
6602
|
+
--x-size-align-list-stretch: stretch;
|
|
6603
|
+
}
|
|
6596
6604
|
|
|
6597
6605
|
.x-list {
|
|
6598
6606
|
display: flex;
|
|
@@ -6734,12 +6742,13 @@
|
|
|
6734
6742
|
flex: 12 1 auto;
|
|
6735
6743
|
}
|
|
6736
6744
|
:root {
|
|
6737
|
-
--x-
|
|
6738
|
-
--x-size-
|
|
6739
|
-
--x-size-
|
|
6740
|
-
--x-size-
|
|
6741
|
-
|
|
6742
|
-
|
|
6745
|
+
--x-size-border-radius-input-group-pill: var(--x-size-border-radius-base-pill);
|
|
6746
|
+
--x-size-border-radius-top-left-input-group-pill: var(--x-size-border-radius-input-group-pill);
|
|
6747
|
+
--x-size-border-radius-top-right-input-group-pill: var(--x-size-border-radius-input-group-pill);
|
|
6748
|
+
--x-size-border-radius-bottom-right-input-group-pill: var(
|
|
6749
|
+
--x-size-border-radius-input-group-pill
|
|
6750
|
+
);
|
|
6751
|
+
--x-size-border-radius-bottom-left-input-group-pill: var(--x-size-border-radius-input-group-pill);
|
|
6743
6752
|
}
|
|
6744
6753
|
:root {
|
|
6745
6754
|
--x-size-border-radius-input-group-pill: var(--x-size-border-radius-base-pill);
|
|
@@ -6768,13 +6777,13 @@
|
|
|
6768
6777
|
);
|
|
6769
6778
|
}
|
|
6770
6779
|
:root {
|
|
6771
|
-
--x-size-
|
|
6772
|
-
--x-size-
|
|
6773
|
-
--x-size-border-
|
|
6774
|
-
--x-size-border-
|
|
6775
|
-
|
|
6776
|
-
);
|
|
6777
|
-
--x-size-border-
|
|
6780
|
+
--x-size-padding-left-input-group-line: 0;
|
|
6781
|
+
--x-size-padding-right-input-group-line: 0;
|
|
6782
|
+
--x-size-border-width-input-group-line: var(--x-size-border-width-input-group-default);
|
|
6783
|
+
--x-size-border-width-top-input-group-line: 0;
|
|
6784
|
+
--x-size-border-width-right-input-group-line: 0;
|
|
6785
|
+
--x-size-border-width-bottom-input-group-line: var(--x-size-border-width-input-group-line);
|
|
6786
|
+
--x-size-border-width-left-input-group-line: 0;
|
|
6778
6787
|
}
|
|
6779
6788
|
:root {
|
|
6780
6789
|
--x-size-padding-left-input-group-line: 0;
|
|
@@ -6823,15 +6832,6 @@
|
|
|
6823
6832
|
margin-top: calc(var(--x-size-border-width-top-input-group-line) * -1) !important;
|
|
6824
6833
|
margin-bottom: calc(var(--x-size-border-width-bottom-input-group-line) * -1) !important;
|
|
6825
6834
|
}
|
|
6826
|
-
:root {
|
|
6827
|
-
--x-size-padding-left-input-group-line: 0;
|
|
6828
|
-
--x-size-padding-right-input-group-line: 0;
|
|
6829
|
-
--x-size-border-width-input-group-line: var(--x-size-border-width-input-group-default);
|
|
6830
|
-
--x-size-border-width-top-input-group-line: 0;
|
|
6831
|
-
--x-size-border-width-right-input-group-line: 0;
|
|
6832
|
-
--x-size-border-width-bottom-input-group-line: var(--x-size-border-width-input-group-line);
|
|
6833
|
-
--x-size-border-width-left-input-group-line: 0;
|
|
6834
|
-
}
|
|
6835
6835
|
:root {
|
|
6836
6836
|
--x-color-background-input-group-default: var(--x-color-background-input-default);
|
|
6837
6837
|
--x-color-border-input-group-default: var(--x-color-border-input-default);
|
|
@@ -6875,6 +6875,58 @@
|
|
|
6875
6875
|
);
|
|
6876
6876
|
--x-number-font-weight-input-group-default-button: var(--x-number-font-weight-base-light);
|
|
6877
6877
|
}
|
|
6878
|
+
:root {
|
|
6879
|
+
--x-size-border-radius-input-group-card: var(--x-size-border-radius-base-s);
|
|
6880
|
+
--x-size-border-radius-top-left-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
6881
|
+
--x-size-border-radius-top-right-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
6882
|
+
--x-size-border-radius-bottom-right-input-group-card: var(
|
|
6883
|
+
--x-size-border-radius-input-group-card
|
|
6884
|
+
);
|
|
6885
|
+
--x-size-border-radius-bottom-left-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
6886
|
+
}
|
|
6887
|
+
:root {
|
|
6888
|
+
--x-size-border-radius-input-group-card: var(--x-size-border-radius-base-s);
|
|
6889
|
+
--x-size-border-radius-top-left-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
6890
|
+
--x-size-border-radius-top-right-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
6891
|
+
--x-size-border-radius-bottom-right-input-group-card: var(
|
|
6892
|
+
--x-size-border-radius-input-group-card
|
|
6893
|
+
);
|
|
6894
|
+
--x-size-border-radius-bottom-left-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
6895
|
+
}
|
|
6896
|
+
|
|
6897
|
+
.x-input-group--card.x-input-group,
|
|
6898
|
+
.x-input-group--card .x-input-group {
|
|
6899
|
+
--x-size-border-radius-input-group-default: var(--x-size-border-radius-input-group-card);
|
|
6900
|
+
--x-size-border-radius-top-left-input-group-default: var(
|
|
6901
|
+
--x-size-border-radius-top-left-input-group-card
|
|
6902
|
+
);
|
|
6903
|
+
--x-size-border-radius-top-right-input-group-default: var(
|
|
6904
|
+
--x-size-border-radius-top-right-input-group-card
|
|
6905
|
+
);
|
|
6906
|
+
--x-size-border-radius-bottom-right-input-group-default: var(
|
|
6907
|
+
--x-size-border-radius-bottom-right-input-group-card
|
|
6908
|
+
);
|
|
6909
|
+
--x-size-border-radius-bottom-left-input-group-default: var(
|
|
6910
|
+
--x-size-border-radius-bottom-left-input-group-card
|
|
6911
|
+
);
|
|
6912
|
+
}
|
|
6913
|
+
.x-input-group--card.x-input-group__action:first-child,
|
|
6914
|
+
.x-input-group--card .x-input-group__action:first-child {
|
|
6915
|
+
--x-size-border-radius-top-right-input-group-default: 0;
|
|
6916
|
+
--x-size-border-radius-bottom-right-input-group-default: 0;
|
|
6917
|
+
}
|
|
6918
|
+
.x-input-group--card.x-input-group__action:last-child,
|
|
6919
|
+
.x-input-group--card .x-input-group__action:last-child {
|
|
6920
|
+
--x-size-border-radius-top-left-input-group-default: 0;
|
|
6921
|
+
--x-size-border-radius-bottom-left-input-group-default: 0;
|
|
6922
|
+
}
|
|
6923
|
+
:root {
|
|
6924
|
+
--x-size-border-radius-input-pill: var(--x-size-border-radius-base-pill);
|
|
6925
|
+
--x-size-border-radius-top-left-input-pill: var(--x-size-border-radius-input-pill);
|
|
6926
|
+
--x-size-border-radius-top-right-input-pill: var(--x-size-border-radius-input-pill);
|
|
6927
|
+
--x-size-border-radius-bottom-right-input-pill: var(--x-size-border-radius-input-pill);
|
|
6928
|
+
--x-size-border-radius-bottom-left-input-pill: var(--x-size-border-radius-input-pill);
|
|
6929
|
+
}
|
|
6878
6930
|
:root {
|
|
6879
6931
|
--x-color-background-input-group-default: var(--x-color-background-input-default);
|
|
6880
6932
|
--x-color-border-input-group-default: var(--x-color-border-input-default);
|
|
@@ -7052,58 +7104,6 @@
|
|
|
7052
7104
|
[dir="rtl"] .x-input-group > .x-input-group__action:last-child {
|
|
7053
7105
|
margin-left: calc(var(--x-size-border-width-right-input-group-default) * -1);
|
|
7054
7106
|
}
|
|
7055
|
-
:root {
|
|
7056
|
-
--x-size-border-radius-input-group-card: var(--x-size-border-radius-base-s);
|
|
7057
|
-
--x-size-border-radius-top-left-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
7058
|
-
--x-size-border-radius-top-right-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
7059
|
-
--x-size-border-radius-bottom-right-input-group-card: var(
|
|
7060
|
-
--x-size-border-radius-input-group-card
|
|
7061
|
-
);
|
|
7062
|
-
--x-size-border-radius-bottom-left-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
7063
|
-
}
|
|
7064
|
-
:root {
|
|
7065
|
-
--x-size-border-radius-input-group-card: var(--x-size-border-radius-base-s);
|
|
7066
|
-
--x-size-border-radius-top-left-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
7067
|
-
--x-size-border-radius-top-right-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
7068
|
-
--x-size-border-radius-bottom-right-input-group-card: var(
|
|
7069
|
-
--x-size-border-radius-input-group-card
|
|
7070
|
-
);
|
|
7071
|
-
--x-size-border-radius-bottom-left-input-group-card: var(--x-size-border-radius-input-group-card);
|
|
7072
|
-
}
|
|
7073
|
-
|
|
7074
|
-
.x-input-group--card.x-input-group,
|
|
7075
|
-
.x-input-group--card .x-input-group {
|
|
7076
|
-
--x-size-border-radius-input-group-default: var(--x-size-border-radius-input-group-card);
|
|
7077
|
-
--x-size-border-radius-top-left-input-group-default: var(
|
|
7078
|
-
--x-size-border-radius-top-left-input-group-card
|
|
7079
|
-
);
|
|
7080
|
-
--x-size-border-radius-top-right-input-group-default: var(
|
|
7081
|
-
--x-size-border-radius-top-right-input-group-card
|
|
7082
|
-
);
|
|
7083
|
-
--x-size-border-radius-bottom-right-input-group-default: var(
|
|
7084
|
-
--x-size-border-radius-bottom-right-input-group-card
|
|
7085
|
-
);
|
|
7086
|
-
--x-size-border-radius-bottom-left-input-group-default: var(
|
|
7087
|
-
--x-size-border-radius-bottom-left-input-group-card
|
|
7088
|
-
);
|
|
7089
|
-
}
|
|
7090
|
-
.x-input-group--card.x-input-group__action:first-child,
|
|
7091
|
-
.x-input-group--card .x-input-group__action:first-child {
|
|
7092
|
-
--x-size-border-radius-top-right-input-group-default: 0;
|
|
7093
|
-
--x-size-border-radius-bottom-right-input-group-default: 0;
|
|
7094
|
-
}
|
|
7095
|
-
.x-input-group--card.x-input-group__action:last-child,
|
|
7096
|
-
.x-input-group--card .x-input-group__action:last-child {
|
|
7097
|
-
--x-size-border-radius-top-left-input-group-default: 0;
|
|
7098
|
-
--x-size-border-radius-bottom-left-input-group-default: 0;
|
|
7099
|
-
}
|
|
7100
|
-
:root {
|
|
7101
|
-
--x-size-border-radius-input-pill: var(--x-size-border-radius-base-pill);
|
|
7102
|
-
--x-size-border-radius-top-left-input-pill: var(--x-size-border-radius-input-pill);
|
|
7103
|
-
--x-size-border-radius-top-right-input-pill: var(--x-size-border-radius-input-pill);
|
|
7104
|
-
--x-size-border-radius-bottom-right-input-pill: var(--x-size-border-radius-input-pill);
|
|
7105
|
-
--x-size-border-radius-bottom-left-input-pill: var(--x-size-border-radius-input-pill);
|
|
7106
|
-
}
|
|
7107
7107
|
:root {
|
|
7108
7108
|
--x-size-border-radius-input-pill: var(--x-size-border-radius-base-pill);
|
|
7109
7109
|
--x-size-border-radius-top-left-input-pill: var(--x-size-border-radius-input-pill);
|
|
@@ -7130,6 +7130,16 @@
|
|
|
7130
7130
|
--x-size-border-width-bottom-input-line: var(--x-size-border-width-base);
|
|
7131
7131
|
--x-size-border-width-left-input-line: 0;
|
|
7132
7132
|
}
|
|
7133
|
+
:root {
|
|
7134
|
+
--x-size-padding-top-input-line: var(--x-size-base-03);
|
|
7135
|
+
--x-size-padding-right-input-line: 0;
|
|
7136
|
+
--x-size-padding-bottom-input-line: var(--x-size-base-03);
|
|
7137
|
+
--x-size-padding-left-input-line: 0;
|
|
7138
|
+
--x-size-border-width-top-input-line: 0;
|
|
7139
|
+
--x-size-border-width-right-input-line: 0;
|
|
7140
|
+
--x-size-border-width-bottom-input-line: var(--x-size-border-width-base);
|
|
7141
|
+
--x-size-border-width-left-input-line: 0;
|
|
7142
|
+
}
|
|
7133
7143
|
|
|
7134
7144
|
.x-input--line .x-input,
|
|
7135
7145
|
.x-input--line.x-input {
|
|
@@ -7142,16 +7152,6 @@
|
|
|
7142
7152
|
--x-size-border-width-bottom-input-default: var(--x-size-border-width-bottom-input-line);
|
|
7143
7153
|
--x-size-border-width-left-input-default: var(--x-size-border-width-left-input-line);
|
|
7144
7154
|
}
|
|
7145
|
-
:root {
|
|
7146
|
-
--x-size-padding-top-input-line: var(--x-size-base-03);
|
|
7147
|
-
--x-size-padding-right-input-line: 0;
|
|
7148
|
-
--x-size-padding-bottom-input-line: var(--x-size-base-03);
|
|
7149
|
-
--x-size-padding-left-input-line: 0;
|
|
7150
|
-
--x-size-border-width-top-input-line: 0;
|
|
7151
|
-
--x-size-border-width-right-input-line: 0;
|
|
7152
|
-
--x-size-border-width-bottom-input-line: var(--x-size-border-width-base);
|
|
7153
|
-
--x-size-border-width-left-input-line: 0;
|
|
7154
|
-
}
|
|
7155
7155
|
:root {
|
|
7156
7156
|
--x-color-background-input-default: var(--x-color-base-neutral-100);
|
|
7157
7157
|
--x-color-border-input-default: var(--x-color-base-neutral-70);
|
|
@@ -7187,26 +7187,6 @@
|
|
|
7187
7187
|
--x-size-border-radius-bottom-right-input-card: var(--x-size-border-radius-input-card);
|
|
7188
7188
|
--x-size-border-radius-bottom-left-input-card: var(--x-size-border-radius-input-card);
|
|
7189
7189
|
}
|
|
7190
|
-
:root {
|
|
7191
|
-
--x-size-border-radius-input-card: var(--x-size-border-radius-base-s);
|
|
7192
|
-
--x-size-border-radius-top-left-input-card: var(--x-size-border-radius-input-card);
|
|
7193
|
-
--x-size-border-radius-top-right-input-card: var(--x-size-border-radius-input-card);
|
|
7194
|
-
--x-size-border-radius-bottom-right-input-card: var(--x-size-border-radius-input-card);
|
|
7195
|
-
--x-size-border-radius-bottom-left-input-card: var(--x-size-border-radius-input-card);
|
|
7196
|
-
}
|
|
7197
|
-
|
|
7198
|
-
.x-input--card.x-input,
|
|
7199
|
-
.x-input--card .x-input {
|
|
7200
|
-
--x-size-border-radius-input-default: var(--x-size-border-radius-input-card);
|
|
7201
|
-
--x-size-border-radius-top-left-input-default: var(--x-size-border-radius-top-left-input-card);
|
|
7202
|
-
--x-size-border-radius-top-right-input-default: var(--x-size-border-radius-top-right-input-card);
|
|
7203
|
-
--x-size-border-radius-bottom-right-input-default: var(
|
|
7204
|
-
--x-size-border-radius-bottom-right-input-card
|
|
7205
|
-
);
|
|
7206
|
-
--x-size-border-radius-bottom-left-input-default: var(
|
|
7207
|
-
--x-size-border-radius-bottom-left-input-card
|
|
7208
|
-
);
|
|
7209
|
-
}
|
|
7210
7190
|
:root {
|
|
7211
7191
|
--x-color-background-input-default: var(--x-color-base-neutral-100);
|
|
7212
7192
|
--x-color-border-input-default: var(--x-color-base-neutral-70);
|
|
@@ -7319,14 +7299,18 @@
|
|
|
7319
7299
|
--x-size-width-icon-xl: var(--x-size-base-07);
|
|
7320
7300
|
--x-size-height-icon-xl: var(--x-size-base-07);
|
|
7321
7301
|
}
|
|
7302
|
+
:root {
|
|
7303
|
+
--x-size-width-icon-xl: var(--x-size-base-07);
|
|
7304
|
+
--x-size-height-icon-xl: var(--x-size-base-07);
|
|
7305
|
+
}
|
|
7322
7306
|
|
|
7323
7307
|
.x-icon--xl {
|
|
7324
7308
|
--x-size-width-icon-default: var(--x-size-width-icon-xl);
|
|
7325
7309
|
--x-size-height-icon-default: var(--x-size-height-icon-xl);
|
|
7326
7310
|
}
|
|
7327
7311
|
:root {
|
|
7328
|
-
--x-size-width-icon-
|
|
7329
|
-
--x-size-height-icon-
|
|
7312
|
+
--x-size-width-icon-s: var(--x-size-base-03);
|
|
7313
|
+
--x-size-height-icon-s: var(--x-size-base-03);
|
|
7330
7314
|
}
|
|
7331
7315
|
:root {
|
|
7332
7316
|
--x-size-width-icon-s: var(--x-size-base-03);
|
|
@@ -7337,10 +7321,6 @@
|
|
|
7337
7321
|
--x-size-width-icon-default: var(--x-size-width-icon-s);
|
|
7338
7322
|
--x-size-height-icon-default: var(--x-size-height-icon-s);
|
|
7339
7323
|
}
|
|
7340
|
-
:root {
|
|
7341
|
-
--x-size-width-icon-s: var(--x-size-base-03);
|
|
7342
|
-
--x-size-height-icon-s: var(--x-size-base-03);
|
|
7343
|
-
}
|
|
7344
7324
|
:root {
|
|
7345
7325
|
--x-size-width-icon-m: var(--x-size-base-05);
|
|
7346
7326
|
--x-size-height-icon-m: var(--x-size-base-05);
|
|
@@ -7376,6 +7356,11 @@
|
|
|
7376
7356
|
--x-string-stroke-linejoin-icon-default: mitter;
|
|
7377
7357
|
--x-size-stroke-width-icon-default: 1px;
|
|
7378
7358
|
}
|
|
7359
|
+
:root {
|
|
7360
|
+
--x-size-padding-grid: 0;
|
|
7361
|
+
--x-size-gap-grid: var(--x-size-base-03);
|
|
7362
|
+
--x-size-min-width-grid-item: 150px;
|
|
7363
|
+
}
|
|
7379
7364
|
:root {
|
|
7380
7365
|
--x-color-stroke-icon-default: currentColor;
|
|
7381
7366
|
--x-color-fill-icon-default: none;
|
|
@@ -7411,11 +7396,6 @@
|
|
|
7411
7396
|
--x-size-gap-grid: var(--x-size-base-03);
|
|
7412
7397
|
--x-size-min-width-grid-item: 150px;
|
|
7413
7398
|
}
|
|
7414
|
-
:root {
|
|
7415
|
-
--x-size-padding-grid: 0;
|
|
7416
|
-
--x-size-gap-grid: var(--x-size-base-03);
|
|
7417
|
-
--x-size-min-width-grid-item: 150px;
|
|
7418
|
-
}
|
|
7419
7399
|
|
|
7420
7400
|
.x-grid-list {
|
|
7421
7401
|
margin: 0;
|
|
@@ -7443,6 +7423,26 @@
|
|
|
7443
7423
|
.x-filter--justified .x-facet-filter > *:last-child:not(.x-filter__label) {
|
|
7444
7424
|
margin-left: auto;
|
|
7445
7425
|
}
|
|
7426
|
+
:root {
|
|
7427
|
+
--x-size-border-radius-input-card: var(--x-size-border-radius-base-s);
|
|
7428
|
+
--x-size-border-radius-top-left-input-card: var(--x-size-border-radius-input-card);
|
|
7429
|
+
--x-size-border-radius-top-right-input-card: var(--x-size-border-radius-input-card);
|
|
7430
|
+
--x-size-border-radius-bottom-right-input-card: var(--x-size-border-radius-input-card);
|
|
7431
|
+
--x-size-border-radius-bottom-left-input-card: var(--x-size-border-radius-input-card);
|
|
7432
|
+
}
|
|
7433
|
+
|
|
7434
|
+
.x-input--card.x-input,
|
|
7435
|
+
.x-input--card .x-input {
|
|
7436
|
+
--x-size-border-radius-input-default: var(--x-size-border-radius-input-card);
|
|
7437
|
+
--x-size-border-radius-top-left-input-default: var(--x-size-border-radius-top-left-input-card);
|
|
7438
|
+
--x-size-border-radius-top-right-input-default: var(--x-size-border-radius-top-right-input-card);
|
|
7439
|
+
--x-size-border-radius-bottom-right-input-default: var(
|
|
7440
|
+
--x-size-border-radius-bottom-right-input-card
|
|
7441
|
+
);
|
|
7442
|
+
--x-size-border-radius-bottom-left-input-default: var(
|
|
7443
|
+
--x-size-border-radius-bottom-left-input-card
|
|
7444
|
+
);
|
|
7445
|
+
}
|
|
7446
7446
|
:root {
|
|
7447
7447
|
--x-size-margin-filter-children: 0;
|
|
7448
7448
|
--x-size-padding-top-filter-children: 0;
|
|
@@ -7482,39 +7482,6 @@
|
|
|
7482
7482
|
);
|
|
7483
7483
|
--x-size-line-height-filter-default: var(--x-size-line-height-text);
|
|
7484
7484
|
}
|
|
7485
|
-
:root {
|
|
7486
|
-
--x-size-margin-filter-children: 0;
|
|
7487
|
-
--x-size-padding-top-filter-children: 0;
|
|
7488
|
-
--x-size-padding-right-filter-children: 0;
|
|
7489
|
-
--x-size-padding-bottom-filter-children: 0;
|
|
7490
|
-
--x-size-padding-left-filter-children: var(--x-size-base-05);
|
|
7491
|
-
}
|
|
7492
|
-
|
|
7493
|
-
.x-hierarchical-filter-container {
|
|
7494
|
-
list-style: none;
|
|
7495
|
-
}
|
|
7496
|
-
[dir="ltr"] .x-hierarchical-filter-container .x-hierarchical-filter__children,[dir="ltr"] .x-hierarchical-filter-container .x-hierarchical-filter__children.x-list {
|
|
7497
|
-
padding-left: var(--x-size-padding-left-filter-children);
|
|
7498
|
-
}
|
|
7499
|
-
[dir="rtl"] .x-hierarchical-filter-container .x-hierarchical-filter__children,[dir="rtl"] .x-hierarchical-filter-container .x-hierarchical-filter__children.x-list {
|
|
7500
|
-
padding-right: var(--x-size-padding-left-filter-children);
|
|
7501
|
-
}
|
|
7502
|
-
[dir="ltr"] .x-hierarchical-filter-container .x-hierarchical-filter__children,[dir="ltr"] .x-hierarchical-filter-container .x-hierarchical-filter__children.x-list {
|
|
7503
|
-
padding-right: var(--x-size-padding-right-filter-children);
|
|
7504
|
-
}
|
|
7505
|
-
[dir="rtl"] .x-hierarchical-filter-container .x-hierarchical-filter__children,[dir="rtl"] .x-hierarchical-filter-container .x-hierarchical-filter__children.x-list {
|
|
7506
|
-
padding-left: var(--x-size-padding-right-filter-children);
|
|
7507
|
-
}
|
|
7508
|
-
.x-hierarchical-filter-container .x-hierarchical-filter__children, .x-hierarchical-filter-container .x-hierarchical-filter__children.x-list {
|
|
7509
|
-
margin: var(--x-size-margin-filter-children);
|
|
7510
|
-
padding-top: var(--x-size-padding-top-filter-children);
|
|
7511
|
-
padding-bottom: var(--x-size-padding-bottom-filter-children);
|
|
7512
|
-
}
|
|
7513
|
-
.x-hierarchical-filter-container .x-hierarchical-filter-container,
|
|
7514
|
-
.x-hierarchical-filter-container .x-filter,
|
|
7515
|
-
.x-hierarchical-filter-container .x-facet-filter {
|
|
7516
|
-
width: 100%;
|
|
7517
|
-
}
|
|
7518
7485
|
:root {
|
|
7519
7486
|
--x-color-background-filter-default: transparent;
|
|
7520
7487
|
--x-color-border-filter-default: var(--x-color-background-filter-default);
|
|
@@ -7693,6 +7660,39 @@
|
|
|
7693
7660
|
--x-size-border-width-bottom-facet-header-line: var(--x-size-border-width-facet-header-line);
|
|
7694
7661
|
--x-size-border-width-left-facet-header-line: 0;
|
|
7695
7662
|
}
|
|
7663
|
+
:root {
|
|
7664
|
+
--x-size-margin-filter-children: 0;
|
|
7665
|
+
--x-size-padding-top-filter-children: 0;
|
|
7666
|
+
--x-size-padding-right-filter-children: 0;
|
|
7667
|
+
--x-size-padding-bottom-filter-children: 0;
|
|
7668
|
+
--x-size-padding-left-filter-children: var(--x-size-base-05);
|
|
7669
|
+
}
|
|
7670
|
+
|
|
7671
|
+
.x-hierarchical-filter-container {
|
|
7672
|
+
list-style: none;
|
|
7673
|
+
}
|
|
7674
|
+
[dir="ltr"] .x-hierarchical-filter-container .x-hierarchical-filter__children,[dir="ltr"] .x-hierarchical-filter-container .x-hierarchical-filter__children.x-list {
|
|
7675
|
+
padding-left: var(--x-size-padding-left-filter-children);
|
|
7676
|
+
}
|
|
7677
|
+
[dir="rtl"] .x-hierarchical-filter-container .x-hierarchical-filter__children,[dir="rtl"] .x-hierarchical-filter-container .x-hierarchical-filter__children.x-list {
|
|
7678
|
+
padding-right: var(--x-size-padding-left-filter-children);
|
|
7679
|
+
}
|
|
7680
|
+
[dir="ltr"] .x-hierarchical-filter-container .x-hierarchical-filter__children,[dir="ltr"] .x-hierarchical-filter-container .x-hierarchical-filter__children.x-list {
|
|
7681
|
+
padding-right: var(--x-size-padding-right-filter-children);
|
|
7682
|
+
}
|
|
7683
|
+
[dir="rtl"] .x-hierarchical-filter-container .x-hierarchical-filter__children,[dir="rtl"] .x-hierarchical-filter-container .x-hierarchical-filter__children.x-list {
|
|
7684
|
+
padding-left: var(--x-size-padding-right-filter-children);
|
|
7685
|
+
}
|
|
7686
|
+
.x-hierarchical-filter-container .x-hierarchical-filter__children, .x-hierarchical-filter-container .x-hierarchical-filter__children.x-list {
|
|
7687
|
+
margin: var(--x-size-margin-filter-children);
|
|
7688
|
+
padding-top: var(--x-size-padding-top-filter-children);
|
|
7689
|
+
padding-bottom: var(--x-size-padding-bottom-filter-children);
|
|
7690
|
+
}
|
|
7691
|
+
.x-hierarchical-filter-container .x-hierarchical-filter-container,
|
|
7692
|
+
.x-hierarchical-filter-container .x-filter,
|
|
7693
|
+
.x-hierarchical-filter-container .x-facet-filter {
|
|
7694
|
+
width: 100%;
|
|
7695
|
+
}
|
|
7696
7696
|
:root {
|
|
7697
7697
|
--x-color-background-facet-default: transparent;
|
|
7698
7698
|
--x-color-border-facet-default: var(--x-color-background-facet-default);
|
|
@@ -7918,15 +7918,12 @@
|
|
|
7918
7918
|
:root {
|
|
7919
7919
|
--x-size-width-dropdown-xl: 282px;
|
|
7920
7920
|
}
|
|
7921
|
-
|
|
7922
|
-
.x-dropdown.x-dropdown--xl {
|
|
7923
|
-
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-xl);
|
|
7924
|
-
}
|
|
7925
7921
|
:root {
|
|
7926
7922
|
--x-size-width-dropdown-xl: 282px;
|
|
7927
7923
|
}
|
|
7928
|
-
|
|
7929
|
-
|
|
7924
|
+
|
|
7925
|
+
.x-dropdown.x-dropdown--xl {
|
|
7926
|
+
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-xl);
|
|
7930
7927
|
}
|
|
7931
7928
|
:root {
|
|
7932
7929
|
--x-size-width-dropdown-s: 74px;
|
|
@@ -7935,6 +7932,9 @@
|
|
|
7935
7932
|
.x-dropdown.x-dropdown--s {
|
|
7936
7933
|
--x-size-width-dropdown-toggle-default: var(--x-size-width-dropdown-s);
|
|
7937
7934
|
}
|
|
7935
|
+
:root {
|
|
7936
|
+
--x-size-width-dropdown-s: 74px;
|
|
7937
|
+
}
|
|
7938
7938
|
:root {
|
|
7939
7939
|
--x-size-gap-dropdown-pill: var(--x-size-base-03);
|
|
7940
7940
|
--x-size-border-width-dropdown-list-pill: var(--x-size-border-width-base);
|
|
@@ -8168,6 +8168,19 @@
|
|
|
8168
8168
|
--x-string-overflow-dropdown-toggle-default: hidden;
|
|
8169
8169
|
--x-string-overflow-dropdown-list-default: hidden;
|
|
8170
8170
|
}
|
|
8171
|
+
:root {
|
|
8172
|
+
--x-size-gap-dropdown-card: var(--x-size-base-03);
|
|
8173
|
+
--x-size-border-radius-dropdown-card: var(--x-size-border-radius-base-s);
|
|
8174
|
+
--x-size-border-radius-top-left-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8175
|
+
--x-size-border-radius-top-right-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8176
|
+
--x-size-border-radius-bottom-right-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8177
|
+
--x-size-border-radius-bottom-left-dropdown-card: var(--x-size-border-radius-dropdown-card);
|
|
8178
|
+
--x-size-border-width-dropdown-list-card: var(--x-size-border-width-base);
|
|
8179
|
+
--x-size-border-width-top-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8180
|
+
--x-size-border-width-right-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8181
|
+
--x-size-border-width-bottom-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8182
|
+
--x-size-border-width-left-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8183
|
+
}
|
|
8171
8184
|
:root {
|
|
8172
8185
|
--x-size-border-radius-dropdown-default: var(--x-size-border-radius-base-none);
|
|
8173
8186
|
--x-size-border-radius-top-left-dropdown-default: var(--x-size-border-radius-dropdown-default);
|
|
@@ -8411,17 +8424,14 @@
|
|
|
8411
8424
|
left: 0;
|
|
8412
8425
|
}
|
|
8413
8426
|
:root {
|
|
8414
|
-
--x-
|
|
8415
|
-
--x-
|
|
8416
|
-
--x-
|
|
8417
|
-
--x-size-border-
|
|
8418
|
-
--x-size-border-
|
|
8419
|
-
--x-size-border-
|
|
8420
|
-
--x-size-border-width-
|
|
8421
|
-
--x-size-border-width-
|
|
8422
|
-
--x-size-border-width-right-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8423
|
-
--x-size-border-width-bottom-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8424
|
-
--x-size-border-width-left-dropdown-list-card: var(--x-size-border-width-dropdown-list-card);
|
|
8427
|
+
--x-color-background-button-tertiary: var(--x-color-base-neutral-95);
|
|
8428
|
+
--x-color-border-button-tertiary: var(--x-color-base-neutral-70);
|
|
8429
|
+
--x-color-text-button-tertiary: var(--x-color-text-default);
|
|
8430
|
+
--x-size-border-width-button-tertiary: var(--x-size-border-width-base);
|
|
8431
|
+
--x-size-border-width-top-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8432
|
+
--x-size-border-width-right-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8433
|
+
--x-size-border-width-bottom-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8434
|
+
--x-size-border-width-left-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8425
8435
|
}
|
|
8426
8436
|
:root {
|
|
8427
8437
|
--x-size-gap-dropdown-card: var(--x-size-base-03);
|
|
@@ -8487,16 +8497,6 @@
|
|
|
8487
8497
|
--x-size-border-width-bottom-button-default: var(--x-size-border-width-bottom-button-tertiary);
|
|
8488
8498
|
--x-size-border-width-left-button-default: var(--x-size-border-width-left-button-tertiary);
|
|
8489
8499
|
}
|
|
8490
|
-
:root {
|
|
8491
|
-
--x-color-background-button-tertiary: var(--x-color-base-neutral-95);
|
|
8492
|
-
--x-color-border-button-tertiary: var(--x-color-base-neutral-70);
|
|
8493
|
-
--x-color-text-button-tertiary: var(--x-color-text-default);
|
|
8494
|
-
--x-size-border-width-button-tertiary: var(--x-size-border-width-base);
|
|
8495
|
-
--x-size-border-width-top-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8496
|
-
--x-size-border-width-right-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8497
|
-
--x-size-border-width-bottom-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8498
|
-
--x-size-border-width-left-button-tertiary: var(--x-size-border-width-button-tertiary);
|
|
8499
|
-
}
|
|
8500
8500
|
:root {
|
|
8501
8501
|
--x-color-background-button-secondary: transparent;
|
|
8502
8502
|
--x-color-border-button-secondary: var(--x-color-border-button-default);
|
|
@@ -8536,11 +8536,29 @@
|
|
|
8536
8536
|
--x-size-border-radius-bottom-left-button-round: var(--x-size-border-radius-button-round);
|
|
8537
8537
|
}
|
|
8538
8538
|
:root {
|
|
8539
|
-
--x-size-border-radius-button-
|
|
8540
|
-
--x-size-border-radius-top-left-button-
|
|
8541
|
-
--x-size-border-radius-top-right-button-
|
|
8542
|
-
--x-size-border-radius-bottom-right-button-
|
|
8543
|
-
--x-size-border-radius-bottom-left-button-
|
|
8539
|
+
--x-size-border-radius-button-round: var(--x-size-border-radius-base-pill);
|
|
8540
|
+
--x-size-border-radius-top-left-button-round: var(--x-size-border-radius-button-round);
|
|
8541
|
+
--x-size-border-radius-top-right-button-round: var(--x-size-border-radius-button-round);
|
|
8542
|
+
--x-size-border-radius-bottom-right-button-round: var(--x-size-border-radius-button-round);
|
|
8543
|
+
--x-size-border-radius-bottom-left-button-round: var(--x-size-border-radius-button-round);
|
|
8544
|
+
}
|
|
8545
|
+
|
|
8546
|
+
.x-button--round.x-button,
|
|
8547
|
+
.x-button--round .x-button {
|
|
8548
|
+
--x-size-border-radius-button-default: var(--x-size-border-radius-button-round);
|
|
8549
|
+
--x-size-border-radius-top-left-button-default: var(--x-size-border-radius-top-left-button-round);
|
|
8550
|
+
--x-size-border-radius-top-right-button-default: var(
|
|
8551
|
+
--x-size-border-radius-top-right-button-round
|
|
8552
|
+
);
|
|
8553
|
+
--x-size-border-radius-bottom-right-button-default: var(
|
|
8554
|
+
--x-size-border-radius-bottom-right-button-round
|
|
8555
|
+
);
|
|
8556
|
+
--x-size-border-radius-bottom-left-button-default: var(
|
|
8557
|
+
--x-size-border-radius-bottom-left-button-round
|
|
8558
|
+
);
|
|
8559
|
+
min-width: var(--x-size-height-button-default);
|
|
8560
|
+
--x-size-padding-left-button-default: 0;
|
|
8561
|
+
--x-size-padding-right-button-default: 0;
|
|
8544
8562
|
}
|
|
8545
8563
|
:root {
|
|
8546
8564
|
--x-color-background-button-primary: var(--x-color-background-button-default);
|
|
@@ -8580,6 +8598,13 @@
|
|
|
8580
8598
|
--x-size-border-radius-bottom-right-button-pill: var(--x-size-border-radius-button-pill);
|
|
8581
8599
|
--x-size-border-radius-bottom-left-button-pill: var(--x-size-border-radius-button-pill);
|
|
8582
8600
|
}
|
|
8601
|
+
:root {
|
|
8602
|
+
--x-size-border-radius-button-pill: var(--x-size-border-radius-base-pill);
|
|
8603
|
+
--x-size-border-radius-top-left-button-pill: var(--x-size-border-radius-button-pill);
|
|
8604
|
+
--x-size-border-radius-top-right-button-pill: var(--x-size-border-radius-button-pill);
|
|
8605
|
+
--x-size-border-radius-bottom-right-button-pill: var(--x-size-border-radius-button-pill);
|
|
8606
|
+
--x-size-border-radius-bottom-left-button-pill: var(--x-size-border-radius-button-pill);
|
|
8607
|
+
}
|
|
8583
8608
|
|
|
8584
8609
|
.x-button--pill.x-button,
|
|
8585
8610
|
.x-button--pill .x-button {
|
|
@@ -8859,29 +8884,4 @@
|
|
|
8859
8884
|
--x-size-border-radius-base-m: var(--x-size-base-06);
|
|
8860
8885
|
--x-size-border-radius-base-pill: 99999px;
|
|
8861
8886
|
--x-size-border-width-base: 1px;
|
|
8862
|
-
}
|
|
8863
|
-
:root {
|
|
8864
|
-
--x-size-border-radius-button-round: var(--x-size-border-radius-base-pill);
|
|
8865
|
-
--x-size-border-radius-top-left-button-round: var(--x-size-border-radius-button-round);
|
|
8866
|
-
--x-size-border-radius-top-right-button-round: var(--x-size-border-radius-button-round);
|
|
8867
|
-
--x-size-border-radius-bottom-right-button-round: var(--x-size-border-radius-button-round);
|
|
8868
|
-
--x-size-border-radius-bottom-left-button-round: var(--x-size-border-radius-button-round);
|
|
8869
|
-
}
|
|
8870
|
-
|
|
8871
|
-
.x-button--round.x-button,
|
|
8872
|
-
.x-button--round .x-button {
|
|
8873
|
-
--x-size-border-radius-button-default: var(--x-size-border-radius-button-round);
|
|
8874
|
-
--x-size-border-radius-top-left-button-default: var(--x-size-border-radius-top-left-button-round);
|
|
8875
|
-
--x-size-border-radius-top-right-button-default: var(
|
|
8876
|
-
--x-size-border-radius-top-right-button-round
|
|
8877
|
-
);
|
|
8878
|
-
--x-size-border-radius-bottom-right-button-default: var(
|
|
8879
|
-
--x-size-border-radius-bottom-right-button-round
|
|
8880
|
-
);
|
|
8881
|
-
--x-size-border-radius-bottom-left-button-default: var(
|
|
8882
|
-
--x-size-border-radius-bottom-left-button-round
|
|
8883
|
-
);
|
|
8884
|
-
min-width: var(--x-size-height-button-default);
|
|
8885
|
-
--x-size-padding-left-button-default: 0;
|
|
8886
|
-
--x-size-padding-right-button-default: 0;
|
|
8887
8887
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empathyco/x-components",
|
|
3
|
-
"version": "6.0.0-alpha.
|
|
3
|
+
"version": "6.0.0-alpha.82",
|
|
4
4
|
"description": "Empathy X Components",
|
|
5
5
|
"author": "Empathy Systems Corporation S.L.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@badeball/cypress-cucumber-preprocessor": "20.0.0",
|
|
98
98
|
"@bahmutov/cypress-esbuild-preprocessor": "2.2.0",
|
|
99
|
-
"@empathyco/x-tailwindcss": "
|
|
99
|
+
"@empathyco/x-tailwindcss": "2.0.0-alpha.8",
|
|
100
100
|
"@microsoft/api-documenter": "7.23.0",
|
|
101
101
|
"@microsoft/api-extractor": "7.39.0",
|
|
102
102
|
"@testing-library/jest-dom": "5.17.0",
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"access": "public",
|
|
143
143
|
"directory": "dist"
|
|
144
144
|
},
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "581356fa1a13bba6c809ee8053d30a4de473e29f"
|
|
146
146
|
}
|