@kofile/gds-foundations 1.1.0 → 1.1.1
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/build/css/components/badge.module.css +19 -3
- package/build/css/components/button.module.css +18 -3
- package/build/css/components/dialog.module.css +15 -2
- package/build/css/components/field-message.module.css +13 -2
- package/build/css/components/form-label.module.css +13 -2
- package/build/css/components/input.module.css +30 -3
- package/build/css/components/label.module.css +12 -2
- package/build/css/components/link.module.css +48 -9
- package/build/css/components/segmented-controller.module.css +36 -2
- package/build/css/components/select.module.css +41 -7
- package/build/css/components/table.module.css +34 -5
- package/build/css/components/tabs.module.css +20 -2
- package/build/css/themes/badge/dark.css +1 -1
- package/build/css/themes/badge/light.css +4 -4
- package/build/css/themes/button/light.css +1 -1
- package/build/css/themes/checkbox/dark.css +1 -1
- package/build/css/themes/checkbox/light.css +2 -2
- package/build/css/themes/checkbox-tile/dark.css +2 -2
- package/build/css/themes/composite/shadows.css +12 -0
- package/build/css/themes/dialog/light.css +2 -2
- package/build/css/themes/global.css +812 -190
- package/build/css/themes/index.css +1 -0
- package/build/css/themes/input/light.css +1 -1
- package/build/css/themes/link/light.css +1 -1
- package/build/css/themes/radio-group-tile/dark.css +2 -2
- package/build/css/themes/select/dark.css +1 -1
- package/build/css/themes/select/light.css +2 -2
- package/build/css/themes/switch/light.css +3 -3
- package/build/css/themes/table/light.css +2 -2
- package/build/minified/badge.module.css +1 -1
- package/build/minified/button.module.css +2 -2
- package/build/minified/dialog.module.css +3 -1
- package/build/minified/field-message.module.css +1 -1
- package/build/minified/form-label.module.css +1 -1
- package/build/minified/global.css +1 -1
- package/build/minified/index.css +1 -1
- package/build/minified/input.module.css +14 -2
- package/build/minified/label.module.css +1 -1
- package/build/minified/link.module.css +1 -1
- package/build/minified/normalize.css +1 -0
- package/build/minified/segmented-controller.module.css +26 -2
- package/build/minified/select.module.css +10 -2
- package/build/minified/table.module.css +3 -3
- package/build/minified/tabs.module.css +9 -1
- package/package.json +5 -6
|
@@ -5,7 +5,13 @@
|
|
|
5
5
|
border-end-start-radius: var(--badge-size-sm-border-radius);
|
|
6
6
|
border-end-end-radius: var(--badge-size-sm-border-radius);
|
|
7
7
|
color: var(--badge-light-color-text-fill);
|
|
8
|
-
font: var(--badge-size-lg-typography);
|
|
8
|
+
font-family: var(--badge-size-lg-typography-font-family);
|
|
9
|
+
font-size: var(--badge-size-lg-typography-font-size);
|
|
10
|
+
font-weight: var(--badge-size-lg-typography-font-weight);
|
|
11
|
+
letter-spacing: var(--badge-size-lg-typography-letter-spacing);
|
|
12
|
+
line-height: var(--badge-size-lg-typography-line-height);
|
|
13
|
+
text-decoration: var(--badge-size-lg-typography-text-decoration);
|
|
14
|
+
|
|
9
15
|
display: inline-flex;
|
|
10
16
|
align-items: center;
|
|
11
17
|
gap: var(--badge-gap-spacing);
|
|
@@ -19,14 +25,24 @@
|
|
|
19
25
|
width: fit-content;
|
|
20
26
|
}
|
|
21
27
|
.badge[data-size="md"] {
|
|
22
|
-
font: var(--badge-size-md-typography);
|
|
28
|
+
font-family: var(--badge-size-md-typography-font-family);
|
|
29
|
+
font-size: var(--badge-size-md-typography-font-size);
|
|
30
|
+
font-weight: var(--badge-size-md-typography-font-weight);
|
|
31
|
+
letter-spacing: var(--badge-size-md-typography-letter-spacing);
|
|
32
|
+
line-height: var(--badge-size-md-typography-line-height);
|
|
33
|
+
text-decoration: var(--badge-size-md-typography-text-decoration);
|
|
23
34
|
padding-block-start: var(--badge-size-md-vertical-padding);
|
|
24
35
|
padding-block-end: var(--badge-size-md-vertical-padding);
|
|
25
36
|
padding-inline-start: var(--badge-size-md-horizontal-padding);
|
|
26
37
|
padding-inline-end: var(--badge-size-md-horizontal-padding);
|
|
27
38
|
}
|
|
28
39
|
.badge[data-size="sm"] {
|
|
29
|
-
font: var(--badge-size-sm-typography);
|
|
40
|
+
font-family: var(--badge-size-sm-typography-font-family);
|
|
41
|
+
font-size: var(--badge-size-sm-typography-font-size);
|
|
42
|
+
font-weight: var(--badge-size-sm-typography-font-weight);
|
|
43
|
+
letter-spacing: var(--badge-size-sm-typography-letter-spacing);
|
|
44
|
+
line-height: var(--badge-size-sm-typography-line-height);
|
|
45
|
+
text-decoration: var(--badge-size-sm-typography-text-decoration);
|
|
30
46
|
padding-block-start: var(--badge-size-sm-vertical-padding);
|
|
31
47
|
padding-block-end: var(--badge-size-sm-vertical-padding);
|
|
32
48
|
padding-inline-start: var(--badge-size-sm-horizontal-padding);
|
|
@@ -13,7 +13,12 @@
|
|
|
13
13
|
display: inline-flex;
|
|
14
14
|
gap: var(--button-size-xl-spacing);
|
|
15
15
|
align-items: center;
|
|
16
|
-
font: var(--button-size-xl-typography);
|
|
16
|
+
font-family: var(--button-size-xl-typography-font-family);
|
|
17
|
+
font-size: var(--button-size-xl-typography-font-size);
|
|
18
|
+
font-weight: var(--button-size-xl-typography-font-weight);
|
|
19
|
+
letter-spacing: var(--button-size-xl-typography-letter-spacing);
|
|
20
|
+
line-height: var(--button-size-xl-typography-line-height);
|
|
21
|
+
text-decoration: var(--button-size-xl-typography-text-decoration);
|
|
17
22
|
height: var(--button-size-xl-height);
|
|
18
23
|
padding-block-start: var(--button-size-xl-padding-top);
|
|
19
24
|
padding-block-end: var(--button-size-xl-padding-bottom);
|
|
@@ -73,7 +78,12 @@
|
|
|
73
78
|
}
|
|
74
79
|
|
|
75
80
|
.button[data-size="md"] {
|
|
76
|
-
font: var(--button-size-md-typography);
|
|
81
|
+
font-family: var(--button-size-md-typography-font-family);
|
|
82
|
+
font-size: var(--button-size-md-typography-font-size);
|
|
83
|
+
font-weight: var(--button-size-md-typography-font-weight);
|
|
84
|
+
letter-spacing: var(--button-size-md-typography-letter-spacing);
|
|
85
|
+
line-height: var(--button-size-md-typography-line-height);
|
|
86
|
+
text-decoration: var(--button-size-md-typography-text-decoration);
|
|
77
87
|
height: var(--button-size-md-height);
|
|
78
88
|
padding-block-start: var(--button-size-md-padding-top);
|
|
79
89
|
padding-block-end: var(--button-size-md-padding-bottom);
|
|
@@ -82,7 +92,12 @@
|
|
|
82
92
|
}
|
|
83
93
|
|
|
84
94
|
.button[data-size="lg"] {
|
|
85
|
-
font: var(--button-size-lg-typography);
|
|
95
|
+
font-family: var(--button-size-lg-typography-font-family);
|
|
96
|
+
font-size: var(--button-size-lg-typography-font-size);
|
|
97
|
+
font-weight: var(--button-size-lg-typography-font-weight);
|
|
98
|
+
letter-spacing: var(--button-size-lg-typography-letter-spacing);
|
|
99
|
+
line-height: var(--button-size-lg-typography-line-height);
|
|
100
|
+
text-decoration: var(--button-size-lg-typography-text-decoration);
|
|
86
101
|
height: var(--button-size-lg-height);
|
|
87
102
|
padding-block-start: var(--button-size-lg-padding-top);
|
|
88
103
|
padding-block-end: var(--button-size-lg-padding-bottom);
|
|
@@ -45,7 +45,12 @@
|
|
|
45
45
|
margin: var(--dialog-elements-title-margin);
|
|
46
46
|
margin-block-start: var(--dialog-elements-title-margin-block-start);
|
|
47
47
|
color: var(--dialog-light-elements-title-color-text-primary-default);
|
|
48
|
-
font: var(--dialog-elements-title-typography);
|
|
48
|
+
font-family: var(--dialog-elements-title-typography-font-family);
|
|
49
|
+
font-size: var(--dialog-elements-title-typography-font-size);
|
|
50
|
+
font-weight: var(--dialog-elements-title-typography-font-weight);
|
|
51
|
+
letter-spacing: var(--dialog-elements-title-typography-letter-spacing);
|
|
52
|
+
line-height: var(--dialog-elements-title-typography-line-height);
|
|
53
|
+
text-decoration: var(--dialog-elements-title-typography-text-decoration);
|
|
49
54
|
text-align: var(--dialog-elements-title-text-align);
|
|
50
55
|
}
|
|
51
56
|
.title[data-mode="dark"] {
|
|
@@ -56,7 +61,15 @@
|
|
|
56
61
|
margin: var(--dialog-elements-description-margin);
|
|
57
62
|
margin-block-start: var(--dialog-elements-description-margin-block-start);
|
|
58
63
|
color: var(--dialog-light-elements-description-color-text-primary-default);
|
|
59
|
-
font: var(--dialog-elements-description-typography);
|
|
64
|
+
font-family: var(--dialog-elements-description-typography-font-family);
|
|
65
|
+
font-size: var(--dialog-elements-description-typography-font-size);
|
|
66
|
+
font-weight: var(--dialog-elements-description-typography-font-weight);
|
|
67
|
+
letter-spacing: var(--dialog-elements-description-typography-letter-spacing);
|
|
68
|
+
line-height: var(--dialog-elements-description-typography-line-height);
|
|
69
|
+
text-decoration: var(
|
|
70
|
+
--dialog-elements-description-typography-text-decoration
|
|
71
|
+
);
|
|
72
|
+
|
|
60
73
|
text-align: var(--dialog-elements-description-text-align);
|
|
61
74
|
}
|
|
62
75
|
.description[data-mode="dark"] {
|
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
.message {
|
|
2
2
|
display: block;
|
|
3
3
|
color: var(--field-message-light-color-text-primary-default);
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
font-family: var(--field-message-size-md-typography-font-family);
|
|
6
|
+
font-size: var(--field-message-size-md-typography-font-size);
|
|
7
|
+
font-weight: var(--field-message-size-md-typography-font-weight);
|
|
8
|
+
letter-spacing: var(--field-message-size-md-typography-letter-spacing);
|
|
9
|
+
line-height: var(--field-message-size-md-typography-line-height);
|
|
10
|
+
text-decoration: var(--field-message-size-md-typography-text-decoration);
|
|
5
11
|
}
|
|
6
12
|
|
|
7
13
|
.message[data-size="sm"] {
|
|
8
|
-
font: var(--field-message-size-sm-typography);
|
|
14
|
+
font-family: var(--field-message-size-sm-typography-font-family);
|
|
15
|
+
font-size: var(--field-message-size-sm-typography-font-size);
|
|
16
|
+
font-weight: var(--field-message-size-sm-typography-font-weight);
|
|
17
|
+
letter-spacing: var(--field-message-size-sm-typography-letter-spacing);
|
|
18
|
+
line-height: var(--field-message-size-sm-typography-line-height);
|
|
19
|
+
text-decoration: var(--field-message-size-sm-typography-text-decoration);
|
|
9
20
|
}
|
|
10
21
|
|
|
11
22
|
.message[data-error="true"] {
|
|
@@ -1,13 +1,24 @@
|
|
|
1
1
|
.label {
|
|
2
2
|
box-sizing: border-box;
|
|
3
3
|
color: var(--form-label-light-color-text-primary-default);
|
|
4
|
-
font: var(--form-label-size-md-typography);
|
|
4
|
+
font-family: var(--form-label-size-md-typography-font-family);
|
|
5
|
+
font-size: var(--form-label-size-md-typography-font-size);
|
|
6
|
+
font-weight: var(--form-label-size-md-typography-font-weight);
|
|
7
|
+
letter-spacing: var(--form-label-size-md-typography-letter-spacing);
|
|
8
|
+
line-height: var(--form-label-size-md-typography-line-height);
|
|
9
|
+
text-decoration: var(--form-label-size-md-typography-text-decoration);
|
|
10
|
+
|
|
5
11
|
display: inline-flex;
|
|
6
12
|
align-items: center;
|
|
7
13
|
gap: var(--form-label-size-md-gap);
|
|
8
14
|
}
|
|
9
15
|
.label[data-size="sm"] {
|
|
10
|
-
font: var(--form-label-size-sm-typography);
|
|
16
|
+
font-family: var(--form-label-size-sm-typography-font-family);
|
|
17
|
+
font-size: var(--form-label-size-sm-typography-font-size);
|
|
18
|
+
font-weight: var(--form-label-size-sm-typography-font-weight);
|
|
19
|
+
letter-spacing: var(--form-label-size-sm-typography-letter-spacing);
|
|
20
|
+
line-height: var(--form-label-size-sm-typography-line-height);
|
|
21
|
+
text-decoration: var(--form-label-size-sm-typography-text-decoration);
|
|
11
22
|
}
|
|
12
23
|
.label[data-mode="dark"] {
|
|
13
24
|
color: var(--form-label-dark-color-text-primary-default);
|
|
@@ -18,7 +18,16 @@
|
|
|
18
18
|
border-width: var(--input-elements-text-field-size-xl-border-width);
|
|
19
19
|
box-sizing: border-box;
|
|
20
20
|
color: var(--input-light-elements-color-text-primary-default);
|
|
21
|
-
font: var(--input-elements-text-field-size-xl-typography);
|
|
21
|
+
font-family: var(--input-elements-text-field-size-xl-typography-font-family);
|
|
22
|
+
font-size: var(--input-elements-text-field-size-xl-typography-font-size);
|
|
23
|
+
font-weight: var(--input-elements-text-field-size-xl-typography-font-weight);
|
|
24
|
+
letter-spacing: var(
|
|
25
|
+
--input-elements-text-field-size-xl-typography-letter-spacing
|
|
26
|
+
);
|
|
27
|
+
line-height: var(--input-elements-text-field-size-xl-typography-line-height);
|
|
28
|
+
text-decoration: var(
|
|
29
|
+
--input-elements-text-field-size-xl-typography-text-decoration
|
|
30
|
+
);
|
|
22
31
|
outline: none;
|
|
23
32
|
padding-inline-start: var(--input-elements-text-field-size-xl-padding-inline);
|
|
24
33
|
padding-block: var(--input-elements-text-field-size-xl-padding-block);
|
|
@@ -34,7 +43,16 @@
|
|
|
34
43
|
--input-elements-text-field-size-lg-padding-inline-start
|
|
35
44
|
);
|
|
36
45
|
height: var(--input-elements-text-field-size-lg-height);
|
|
37
|
-
font: var(--input-elements-text-field-size-lg-typography);
|
|
46
|
+
font-family: var(--input-elements-text-field-size-lg-typography-font-family);
|
|
47
|
+
font-size: var(--input-elements-text-field-size-lg-typography-font-size);
|
|
48
|
+
font-weight: var(--input-elements-text-field-size-lg-typography-font-weight);
|
|
49
|
+
letter-spacing: var(
|
|
50
|
+
--input-elements-text-field-size-lg-typography-letter-spacing
|
|
51
|
+
);
|
|
52
|
+
line-height: var(--input-elements-text-field-size-lg-typography-line-height);
|
|
53
|
+
text-decoration: var(
|
|
54
|
+
--input-elements-text-field-size-lg-typography-text-decoration
|
|
55
|
+
);
|
|
38
56
|
}
|
|
39
57
|
.input[data-size="lg"] + .icon {
|
|
40
58
|
height: var(--input-elements-icon-size-lg-height);
|
|
@@ -47,7 +65,16 @@
|
|
|
47
65
|
--input-elements-text-field-size-md-padding-inline-start
|
|
48
66
|
);
|
|
49
67
|
height: var(--input-elements-text-field-size-md-height);
|
|
50
|
-
font: var(--input-elements-text-field-size-md-typography);
|
|
68
|
+
font-family: var(--input-elements-text-field-size-md-typography-font-family);
|
|
69
|
+
font-size: var(--input-elements-text-field-size-md-typography-font-size);
|
|
70
|
+
font-weight: var(--input-elements-text-field-size-md-typography-font-weight);
|
|
71
|
+
letter-spacing: var(
|
|
72
|
+
--input-elements-text-field-size-md-typography-letter-spacing
|
|
73
|
+
);
|
|
74
|
+
line-height: var(--input-elements-text-field-size-md-typography-line-height);
|
|
75
|
+
text-decoration: var(
|
|
76
|
+
--input-elements-text-field-size-md-typography-text-decoration
|
|
77
|
+
);
|
|
51
78
|
}
|
|
52
79
|
.input[data-size="md"] + .icon {
|
|
53
80
|
height: var(--input-elements-icon-size-md-height);
|
|
@@ -3,7 +3,12 @@
|
|
|
3
3
|
box-sizing: border-box;
|
|
4
4
|
color: var(--label-light-color-text-primary-default);
|
|
5
5
|
cursor: default;
|
|
6
|
-
font: var(--label-size-md-typography);
|
|
6
|
+
font-family: var(--label-size-md-typography-font-family);
|
|
7
|
+
font-size: var(--label-size-md-typography-font-size);
|
|
8
|
+
font-weight: var(--label-size-md-typography-font-weight);
|
|
9
|
+
letter-spacing: var(--label-size-md-typography-letter-spacing);
|
|
10
|
+
line-height: var(--label-size-md-typography-line-height);
|
|
11
|
+
text-decoration: var(--label-size-md-typography-text-decoration);
|
|
7
12
|
}
|
|
8
13
|
|
|
9
14
|
.label[aria-disabled="true"] {
|
|
@@ -13,7 +18,12 @@
|
|
|
13
18
|
}
|
|
14
19
|
|
|
15
20
|
.label[data-size="sm"] {
|
|
16
|
-
font: var(--label-size-sm-typography);
|
|
21
|
+
font-family: var(--label-size-sm-typography-font-family);
|
|
22
|
+
font-size: var(--label-size-sm-typography-font-size);
|
|
23
|
+
font-weight: var(--label-size-sm-typography-font-weight);
|
|
24
|
+
letter-spacing: var(--label-size-sm-typography-letter-spacing);
|
|
25
|
+
line-height: var(--label-size-sm-typography-line-height);
|
|
26
|
+
text-decoration: var(--label-size-sm-typography-text-decoration);
|
|
17
27
|
}
|
|
18
28
|
|
|
19
29
|
.label[data-mode="dark"] {
|
|
@@ -3,9 +3,13 @@
|
|
|
3
3
|
box-sizing: border-box;
|
|
4
4
|
color: var(--link-light-color-text-primary-default);
|
|
5
5
|
cursor: pointer;
|
|
6
|
-
font: var(--link-size-xl-typography);
|
|
6
|
+
font-family: var(--link-size-xl-typography-font-family);
|
|
7
|
+
font-size: var(--link-size-xl-typography-font-size);
|
|
8
|
+
font-weight: var(--link-size-xl-typography-font-weight);
|
|
9
|
+
letter-spacing: var(--link-size-xl-typography-letter-spacing);
|
|
10
|
+
line-height: var(--link-size-xl-typography-line-height);
|
|
11
|
+
text-decoration: var(--link-size-xl-typography-text-decoration);
|
|
7
12
|
display: inline-flex;
|
|
8
|
-
align-items: center;
|
|
9
13
|
gap: var(--link-gap-default);
|
|
10
14
|
vertical-align: top;
|
|
11
15
|
text-decoration: underline;
|
|
@@ -17,25 +21,60 @@
|
|
|
17
21
|
color: var(--link-light-color-text-primary-active);
|
|
18
22
|
}
|
|
19
23
|
.link[data-size="3xs"] {
|
|
20
|
-
font: var(--link-size-3xs-typography);
|
|
24
|
+
font-family: var(--link-size-3xs-typography-font-family);
|
|
25
|
+
font-size: var(--link-size-3xs-typography-font-size);
|
|
26
|
+
font-weight: var(--link-size-3xs-typography-font-weight);
|
|
27
|
+
letter-spacing: var(--link-size-3xs-typography-letter-spacing);
|
|
28
|
+
line-height: var(--link-size-3xs-typography-line-height);
|
|
29
|
+
text-decoration: var(--link-size-3xs-typography-text-decoration);
|
|
21
30
|
}
|
|
22
31
|
.link[data-size="2xs"] {
|
|
23
|
-
font: var(--link-size-2xs-typography);
|
|
32
|
+
font-family: var(--link-size-2xs-typography-font-family);
|
|
33
|
+
font-size: var(--link-size-2xs-typography-font-size);
|
|
34
|
+
font-weight: var(--link-size-2xs-typography-font-weight);
|
|
35
|
+
letter-spacing: var(--link-size-2xs-typography-letter-spacing);
|
|
36
|
+
line-height: var(--link-size-2xs-typography-line-height);
|
|
37
|
+
text-decoration: var(--link-size-2xs-typography-text-decoration);
|
|
24
38
|
}
|
|
25
39
|
.link[data-size="xs"] {
|
|
26
|
-
font: var(--link-size-xs-typography);
|
|
40
|
+
font-family: var(--link-size-xs-typography-font-family);
|
|
41
|
+
font-size: var(--link-size-xs-typography-font-size);
|
|
42
|
+
font-weight: var(--link-size-xs-typography-font-weight);
|
|
43
|
+
letter-spacing: var(--link-size-xs-typography-letter-spacing);
|
|
44
|
+
line-height: var(--link-size-xs-typography-line-height);
|
|
45
|
+
text-decoration: var(--link-size-xs-typography-text-decoration);
|
|
27
46
|
}
|
|
28
47
|
.link[data-size="sm"] {
|
|
29
|
-
font: var(--link-size-sm-typography);
|
|
48
|
+
font-family: var(--link-size-sm-typography-font-family);
|
|
49
|
+
font-size: var(--link-size-sm-typography-font-size);
|
|
50
|
+
font-weight: var(--link-size-sm-typography-font-weight);
|
|
51
|
+
letter-spacing: var(--link-size-sm-typography-letter-spacing);
|
|
52
|
+
line-height: var(--link-size-sm-typography-line-height);
|
|
53
|
+
text-decoration: var(--link-size-sm-typography-text-decoration);
|
|
30
54
|
}
|
|
31
55
|
.link[data-size="md"] {
|
|
32
|
-
font: var(--link-size-md-typography);
|
|
56
|
+
font-family: var(--link-size-md-typography-font-family);
|
|
57
|
+
font-size: var(--link-size-md-typography-font-size);
|
|
58
|
+
font-weight: var(--link-size-md-typography-font-weight);
|
|
59
|
+
letter-spacing: var(--link-size-md-typography-letter-spacing);
|
|
60
|
+
line-height: var(--link-size-md-typography-line-height);
|
|
61
|
+
text-decoration: var(--link-size-md-typography-text-decoration);
|
|
33
62
|
}
|
|
34
63
|
.link[data-size="lg"] {
|
|
35
|
-
font: var(--link-size-lg-typography);
|
|
64
|
+
font-family: var(--link-size-lg-typography-font-family);
|
|
65
|
+
font-size: var(--link-size-lg-typography-font-size);
|
|
66
|
+
font-weight: var(--link-size-lg-typography-font-weight);
|
|
67
|
+
letter-spacing: var(--link-size-lg-typography-letter-spacing);
|
|
68
|
+
line-height: var(--link-size-lg-typography-line-height);
|
|
69
|
+
text-decoration: var(--link-size-lg-typography-text-decoration);
|
|
36
70
|
}
|
|
37
71
|
.link[data-size="xl"] {
|
|
38
|
-
font: var(--link-size-xl-typography);
|
|
72
|
+
font-family: var(--link-size-xl-typography-font-family);
|
|
73
|
+
font-size: var(--link-size-xl-typography-font-size);
|
|
74
|
+
font-weight: var(--link-size-xl-typography-font-weight);
|
|
75
|
+
letter-spacing: var(--link-size-xl-typography-letter-spacing);
|
|
76
|
+
line-height: var(--link-size-xl-typography-line-height);
|
|
77
|
+
text-decoration: var(--link-size-xl-typography-text-decoration);
|
|
39
78
|
}
|
|
40
79
|
.link[data-weight="regular"] {
|
|
41
80
|
font-weight: var(--link-weight-regular);
|
|
@@ -34,7 +34,24 @@ input {
|
|
|
34
34
|
display: flex;
|
|
35
35
|
align-items: center;
|
|
36
36
|
justify-content: center;
|
|
37
|
-
font: var(
|
|
37
|
+
font-family: var(
|
|
38
|
+
--segmented-controller-elements-trigger-size-lg-typography-font-family
|
|
39
|
+
);
|
|
40
|
+
font-size: var(
|
|
41
|
+
--segmented-controller-elements-trigger-size-lg-typography-font-size
|
|
42
|
+
);
|
|
43
|
+
font-weight: var(
|
|
44
|
+
--segmented-controller-elements-trigger-size-lg-typography-font-weight
|
|
45
|
+
);
|
|
46
|
+
letter-spacing: var(
|
|
47
|
+
--segmented-controller-elements-trigger-size-lg-typography-letter-spacing
|
|
48
|
+
);
|
|
49
|
+
line-height: var(
|
|
50
|
+
--segmented-controller-elements-trigger-size-lg-typography-line-height
|
|
51
|
+
);
|
|
52
|
+
text-decoration: var(
|
|
53
|
+
--segmented-controller-elements-trigger-size-lg-typography-text-decoration
|
|
54
|
+
);
|
|
38
55
|
color: var(--segmented-controller-trigger-color);
|
|
39
56
|
}
|
|
40
57
|
.trigger:hover {
|
|
@@ -77,7 +94,24 @@ input {
|
|
|
77
94
|
margin: -1px;
|
|
78
95
|
}
|
|
79
96
|
.trigger[data-size="md"] {
|
|
80
|
-
font: var(
|
|
97
|
+
font-family: var(
|
|
98
|
+
--segmented-controller-elements-trigger-size-md-typography-font-family
|
|
99
|
+
);
|
|
100
|
+
font-size: var(
|
|
101
|
+
--segmented-controller-elements-trigger-size-md-typography-font-size
|
|
102
|
+
);
|
|
103
|
+
font-weight: var(
|
|
104
|
+
--segmented-controller-elements-trigger-size-md-typography-font-weight
|
|
105
|
+
);
|
|
106
|
+
letter-spacing: var(
|
|
107
|
+
--segmented-controller-elements-trigger-size-md-typography-letter-spacing
|
|
108
|
+
);
|
|
109
|
+
line-height: var(
|
|
110
|
+
--segmented-controller-elements-trigger-size-md-typography-line-height
|
|
111
|
+
);
|
|
112
|
+
text-decoration: var(
|
|
113
|
+
--segmented-controller-elements-trigger-size-md-typography-text-decoration
|
|
114
|
+
);
|
|
81
115
|
padding-block: var(
|
|
82
116
|
--segmented-controller-elements-trigger-size-md-padding-block
|
|
83
117
|
);
|
|
@@ -137,12 +137,27 @@
|
|
|
137
137
|
);
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
140
|
+
.selection {
|
|
141
|
+
padding-block-start: var(--spacing-2xs);
|
|
142
|
+
position: sticky;
|
|
143
|
+
top: 0;
|
|
144
|
+
background-color: white;
|
|
145
|
+
z-index: 1;
|
|
146
|
+
width: 100%;
|
|
147
|
+
display: flex;
|
|
148
|
+
alignitems: center;
|
|
149
|
+
border-block-end: var(--border-width-sm) solid
|
|
150
|
+
var(--select-light-elements-separtor-color-background-primary-default);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.count {
|
|
154
|
+
margin: 0 auto;
|
|
155
|
+
margin-right: var(--spacing-xs);
|
|
156
|
+
font: var(--font-size-xs-regular);
|
|
157
|
+
color: var(--color-neutral-600);
|
|
158
|
+
display: flex;
|
|
159
|
+
align-items: center;
|
|
160
|
+
}
|
|
146
161
|
|
|
147
162
|
.info {
|
|
148
163
|
margin: 0 auto;
|
|
@@ -242,7 +257,16 @@
|
|
|
242
257
|
|
|
243
258
|
.heading {
|
|
244
259
|
display: inline-block;
|
|
245
|
-
font: var(--select-elements-heading-size-sm-typography);
|
|
260
|
+
font-family: var(--select-elements-heading-size-sm-typography-font-family);
|
|
261
|
+
font-size: var(--select-elements-heading-size-sm-typography-font-size);
|
|
262
|
+
font-weight: var(--select-elements-heading-size-sm-typography-font-weight);
|
|
263
|
+
letter-spacing: var(
|
|
264
|
+
--select-elements-heading-size-sm-typography-letter-spacing
|
|
265
|
+
);
|
|
266
|
+
line-height: var(--select-elements-heading-size-sm-typography-line-height);
|
|
267
|
+
text-decoration: var(
|
|
268
|
+
--select-elements-heading-size-sm-typography-text-decoration
|
|
269
|
+
);
|
|
246
270
|
color: var(--select-light-elements-heading-color-text-primary-default);
|
|
247
271
|
padding-block: var(--select-elements-heading-size-sm-padding-block);
|
|
248
272
|
padding-inline: var(--select-elements-heading-size-sm-padding-inline);
|
|
@@ -254,6 +278,16 @@
|
|
|
254
278
|
|
|
255
279
|
.label {
|
|
256
280
|
font: var(--select-elements-label-size-sm-typography);
|
|
281
|
+
font-family: var(--select-elements-label-size-sm-typography-font-family);
|
|
282
|
+
font-size: var(--select-elements-label-size-sm-typography-font-size);
|
|
283
|
+
font-weight: var(--select-elements-label-size-sm-typography-font-weight);
|
|
284
|
+
letter-spacing: var(
|
|
285
|
+
--select-elements-label-size-sm-typography-letter-spacing
|
|
286
|
+
);
|
|
287
|
+
line-height: var(--select-elements-label-size-sm-typography-line-height);
|
|
288
|
+
text-decoration: var(
|
|
289
|
+
--select-elements-label-size-sm-typography-text-decoration
|
|
290
|
+
);
|
|
257
291
|
color: var(--select-light-elements-label-color-text-primary-default);
|
|
258
292
|
}
|
|
259
293
|
|
|
@@ -136,7 +136,12 @@
|
|
|
136
136
|
border-bottom-style: solid;
|
|
137
137
|
border-bottom-width: var(--table-elements-th-size-xl-border-bottom-width);
|
|
138
138
|
color: var(--table-light-elements-th-color-text-primary-default);
|
|
139
|
-
font: var(--table-elements-th-size-xl-typography);
|
|
139
|
+
font-family: var(--table-elements-th-size-xl-typography-font-family);
|
|
140
|
+
font-size: var(--table-elements-th-size-xl-typography-font-size);
|
|
141
|
+
font-weight: var(--table-elements-th-size-xl-typography-font-weight);
|
|
142
|
+
letter-spacing: var(--table-elements-th-size-xl-typography-letter-spacing);
|
|
143
|
+
line-height: var(--table-elements-th-size-xl-typography-line-height);
|
|
144
|
+
text-decoration: var(--table-elements-th-size-xl-typography-text-decoration);
|
|
140
145
|
height: var(--table-elements-th-size-xl-max-height);
|
|
141
146
|
padding-inline: var(--table-elements-th-size-xl-padding-inline);
|
|
142
147
|
padding-block-start: var(--table-elements-th-size-xl-padding-block-start);
|
|
@@ -154,7 +159,13 @@
|
|
|
154
159
|
}
|
|
155
160
|
|
|
156
161
|
.th[data-size="2xl"] {
|
|
157
|
-
font: var(--table-elements-th-size-2xl-typography);
|
|
162
|
+
font-family: var(--table-elements-th-size-2xl-typography-font-family);
|
|
163
|
+
font-size: var(--table-elements-th-size-2xl-typography-font-size);
|
|
164
|
+
font-weight: var(--table-elements-th-size-2xl-typography-font-weight);
|
|
165
|
+
letter-spacing: var(--table-elements-th-size-2xl-typography-letter-spacing);
|
|
166
|
+
line-height: var(--table-elements-th-size-2xl-typography-line-height);
|
|
167
|
+
text-decoration: var(--table-elements-th-size-2xl-typography-text-decoration);
|
|
168
|
+
|
|
158
169
|
height: var(--table-elements-th-size-2xl-max-height);
|
|
159
170
|
padding-block-start: var(--table-elements-th-size-2xl-padding-block-start);
|
|
160
171
|
padding-block-end: var(--table-elements-th-size-2xl-padding-block-end);
|
|
@@ -180,18 +191,36 @@
|
|
|
180
191
|
.td {
|
|
181
192
|
box-sizing: border-box;
|
|
182
193
|
color: var(--table-light-elements-td-color-text-primary-default);
|
|
183
|
-
font: var(--table-elements-td-size-2xl-typography);
|
|
194
|
+
font-family: var(--table-elements-td-size-2xl-typography-font-family);
|
|
195
|
+
font-size: var(--table-elements-td-size-2xl-typography-font-size);
|
|
196
|
+
font-weight: var(--table-elements-td-size-2xl-typography-font-weight);
|
|
197
|
+
letter-spacing: var(--table-elements-td-size-2xl-typography-letter-spacing);
|
|
198
|
+
line-height: var(--table-elements-td-size-2xl-typography-line-height);
|
|
199
|
+
text-decoration: var(--table-elements-td-size-2xl-typography-text-decoration);
|
|
200
|
+
|
|
184
201
|
height: var(--table-elements-td-size-2xl-max-height);
|
|
185
202
|
padding-inline: var(--table-elements-td-size-2xl-padding-inline);
|
|
186
203
|
}
|
|
187
204
|
|
|
188
205
|
.td[data-size="xl"] {
|
|
189
|
-
font: var(--table-elements-td-size-xl-typography);
|
|
206
|
+
font-family: var(--table-elements-td-size-xl-typography-font-family);
|
|
207
|
+
font-size: var(--table-elements-td-size-xl-typography-font-size);
|
|
208
|
+
font-weight: var(--table-elements-td-size-xl-typography-font-weight);
|
|
209
|
+
letter-spacing: var(--table-elements-td-size-xl-typography-letter-spacing);
|
|
210
|
+
line-height: var(--table-elements-td-size-xl-typography-line-height);
|
|
211
|
+
text-decoration: var(--table-elements-td-size-xl-typography-text-decoration);
|
|
212
|
+
|
|
190
213
|
height: var(--table-elements-td-size-xl-max-height);
|
|
191
214
|
}
|
|
192
215
|
|
|
193
216
|
.td[data-size="lg"] {
|
|
194
|
-
font: var(--table-elements-td-size-lg-typography);
|
|
217
|
+
font-family: var(--table-elements-td-size-lg-typography-font-family);
|
|
218
|
+
font-size: var(--table-elements-td-size-lg-typography-font-size);
|
|
219
|
+
font-weight: var(--table-elements-td-size-lg-typography-font-weight);
|
|
220
|
+
letter-spacing: var(--table-elements-td-size-lg-typography-letter-spacing);
|
|
221
|
+
line-height: var(--table-elements-td-size-lg-typography-line-height);
|
|
222
|
+
text-decoration: var(--table-elements-td-size-lg-typography-text-decoration);
|
|
223
|
+
|
|
195
224
|
line-height: var(--line-heights-3xs);
|
|
196
225
|
height: var(--table-elements-td-size-lg-max-height);
|
|
197
226
|
padding-inline-start: var(--table-elements-td-size-lg-padding-inline);
|
|
@@ -31,7 +31,16 @@
|
|
|
31
31
|
display: flex;
|
|
32
32
|
align-items: center;
|
|
33
33
|
justify-content: center;
|
|
34
|
-
font: var(--tabs-elements-trigger-size-lg-typography);
|
|
34
|
+
font-family: var(--tabs-elements-trigger-size-lg-typography-font-family);
|
|
35
|
+
font-size: var(--tabs-elements-trigger-size-lg-typography-font-size);
|
|
36
|
+
font-weight: var(--tabs-elements-trigger-size-lg-typography-font-weight);
|
|
37
|
+
letter-spacing: var(
|
|
38
|
+
--tabs-elements-trigger-size-lg-typography-letter-spacing
|
|
39
|
+
);
|
|
40
|
+
line-height: var(--tabs-elements-trigger-size-lg-typography-line-height);
|
|
41
|
+
text-decoration: var(
|
|
42
|
+
--tabs-elements-trigger-size-lg-typography-text-decoration
|
|
43
|
+
);
|
|
35
44
|
height: var(--tabs-elements-trigger-size-lg-max-height);
|
|
36
45
|
color: var(--tabs-trigger-color);
|
|
37
46
|
}
|
|
@@ -44,7 +53,16 @@
|
|
|
44
53
|
border-color: var(--tabs-light-elements-trigger-color-border-primary-active);
|
|
45
54
|
}
|
|
46
55
|
.trigger[data-size="xl"] {
|
|
47
|
-
font: var(--tabs-elements-trigger-size-
|
|
56
|
+
font-family: var(--tabs-elements-trigger-size-lg-typography-font-family);
|
|
57
|
+
font-size: var(--tabs-elements-trigger-size-lg-typography-font-size);
|
|
58
|
+
font-weight: var(--tabs-elements-trigger-size-lg-typography-font-weight);
|
|
59
|
+
letter-spacing: var(
|
|
60
|
+
--tabs-elements-trigger-size-lg-typography-letter-spacing
|
|
61
|
+
);
|
|
62
|
+
line-height: var(--tabs-elements-trigger-size-lg-typography-line-height);
|
|
63
|
+
text-decoration: var(
|
|
64
|
+
--tabs-elements-trigger-size-lg-typography-text-decoration
|
|
65
|
+
);
|
|
48
66
|
height: var(--tabs-elements-trigger-size-xl-max-height);
|
|
49
67
|
}
|
|
50
68
|
.trigger[data-mode="dark"] {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
:host {
|
|
4
4
|
--badge-dark-color-background-neutral-light-fill: #343944;
|
|
5
5
|
--badge-dark-color-background-neutral-dark-fill: #242831;
|
|
6
|
-
--badge-dark-color-background-primary-fill: #
|
|
6
|
+
--badge-dark-color-background-primary-fill: #041c4f;
|
|
7
7
|
--badge-dark-color-background-success-fill: #063724;
|
|
8
8
|
--badge-dark-color-background-danger-fill: #5c0b09;
|
|
9
9
|
--badge-dark-color-background-warning-fill: #553008;
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
--badge-light-color-background-neutral-light-fill: #edeeef;
|
|
5
5
|
--badge-light-color-background-neutral-dark-fill: #d5d7db;
|
|
6
6
|
--badge-light-color-background-primary-fill: #d9eafe;
|
|
7
|
-
--badge-light-color-background-success-fill: #
|
|
8
|
-
--badge-light-color-background-danger-fill: #
|
|
9
|
-
--badge-light-color-background-warning-fill: #
|
|
10
|
-
--badge-light-color-background-hightlight-fill: #
|
|
7
|
+
--badge-light-color-background-success-fill: #c0f6dc;
|
|
8
|
+
--badge-light-color-background-danger-fill: #fedcdc;
|
|
9
|
+
--badge-light-color-background-warning-fill: #ffe4c2;
|
|
10
|
+
--badge-light-color-background-hightlight-fill: #fdeeaf;
|
|
11
11
|
--badge-light-color-text-fill: #121212;
|
|
12
12
|
}
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
--button-light-color-background-transparent-neutral-hover: #edeeef;
|
|
19
19
|
--button-light-color-background-transparent-neutral-active: #d5d7db;
|
|
20
20
|
--button-light-color-border-solid-primary-default: #063b99;
|
|
21
|
-
--button-light-color-border-solid-primary-hover: #
|
|
21
|
+
--button-light-color-border-solid-primary-hover: #041c4f;
|
|
22
22
|
--button-light-color-border-solid-danger-default: #ab1a1d;
|
|
23
23
|
--button-light-color-border-solid-danger-hover: #7e130e;
|
|
24
24
|
--button-light-color-border-outlined-primary-default: #0c57cd;
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
--checkbox-dark-color-background-indeterminate-hover: #ffffff;
|
|
13
13
|
--checkbox-dark-color-border-primary-active: #3a89fd;
|
|
14
14
|
--checkbox-dark-color-border-primary-default: #343944;
|
|
15
|
-
--checkbox-dark-color-border-primary-hover: #
|
|
15
|
+
--checkbox-dark-color-border-primary-hover: #041c4f;
|
|
16
16
|
--checkbox-dark-color-border-danger-default: #ab1a1d;
|
|
17
17
|
--checkbox-dark-color-border-danger-hover: #7e130e;
|
|
18
18
|
--checkbox-dark-color-outline-primary-fill: #063b99;
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
--checkbox-light-color-background-indeterminate-active: #0c57cd;
|
|
11
11
|
--checkbox-light-color-background-indeterminate-default: #0c57cd;
|
|
12
12
|
--checkbox-light-color-background-indeterminate-hover: #ffffff;
|
|
13
|
-
--checkbox-light-color-border-primary-active: #
|
|
13
|
+
--checkbox-light-color-border-primary-active: #041c4f;
|
|
14
14
|
--checkbox-light-color-border-primary-default: #343944;
|
|
15
|
-
--checkbox-light-color-border-primary-hover: #
|
|
15
|
+
--checkbox-light-color-border-primary-hover: #041c4f;
|
|
16
16
|
--checkbox-light-color-border-danger-default: #ab1a1d;
|
|
17
17
|
--checkbox-light-color-border-danger-hover: #7e130e;
|
|
18
18
|
--checkbox-light-color-outline-primary-fill: #063b99;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
|
|
2
2
|
:root,
|
|
3
3
|
:host {
|
|
4
|
-
--checkbox-tile-dark-color-background-primary-active: #
|
|
4
|
+
--checkbox-tile-dark-color-background-primary-active: #041c4f;
|
|
5
5
|
--checkbox-tile-dark-color-background-primary-default: #242831;
|
|
6
6
|
--checkbox-tile-dark-color-background-primary-hover: #343944;
|
|
7
|
-
--checkbox-tile-dark-color-background-altbackground-active: #
|
|
7
|
+
--checkbox-tile-dark-color-background-altbackground-active: #041c4f;
|
|
8
8
|
--checkbox-tile-dark-color-background-altbackground-default: #121212;
|
|
9
9
|
--checkbox-tile-dark-color-background-altbackground-hover: #343944;
|
|
10
10
|
--checkbox-tile-dark-color-border-primary-active: #0c57cd;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--shadow-xs: var(--shadow-xs-offset-x) var(--shadow-xs-offset-y)
|
|
3
|
+
var(--shadow-xs-blur) var(--shadow-xs-spread) var(--shadow-xs-color);
|
|
4
|
+
--shadow-sm: var(--shadow-sm-offset-x) var(--shadow-sm-offset-y)
|
|
5
|
+
var(--shadow-sm-blur) var(--shadow-sm-spread) var(--shadow-sm-color);
|
|
6
|
+
--shadow-md: var(--shadow-md-offset-x) var(--shadow-md-offset-y)
|
|
7
|
+
var(--shadow-md-blur) var(--shadow-md-spread) var(--shadow-md-color);
|
|
8
|
+
--shadow-lg: var(--shadow-lg-offset-x) var(--shadow-lg-offset-y)
|
|
9
|
+
var(--shadow-lg-blur) var(--shadow-lg-spread) var(--shadow-lg-color);
|
|
10
|
+
--shadow-xl: var(--shadow-xl-offset-x) var(--shadow-xl-offset-y)
|
|
11
|
+
var(--shadow-xl-blur) var(--shadow-xl-spread) var(--shadow-xl-color);
|
|
12
|
+
}
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
--dialog-light-elements-title-color-text-primary-default: #121212;
|
|
7
7
|
--dialog-light-elements-description-color-text-primary-default: #6b7280;
|
|
8
8
|
--dialog-light-elements-icon-color-background-generic-default: #edeeef;
|
|
9
|
-
--dialog-light-elements-icon-color-background-destructive-default: #
|
|
10
|
-
--dialog-light-elements-icon-color-background-error-default: #
|
|
9
|
+
--dialog-light-elements-icon-color-background-destructive-default: #feecec;
|
|
10
|
+
--dialog-light-elements-icon-color-background-error-default: #feecec;
|
|
11
11
|
--dialog-light-elements-icon-color-background-success-default: #e2fdee;
|
|
12
12
|
--dialog-light-elements-icon-color-background-loading-default: transparent;
|
|
13
13
|
}
|