@cloudscape-design/components-themeable 3.0.440 → 3.0.442
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/lib/internal/manifest.json +1 -1
- package/lib/internal/scss/attribute-editor/styles.scss +1 -1
- package/lib/internal/scss/breadcrumb-group/item/styles.scss +1 -1
- package/lib/internal/scss/internal/components/token-list/styles.scss +1 -1
- package/lib/internal/scss/internal/styles/links.scss +17 -14
- package/lib/internal/scss/link/constants.scss +46 -8
- package/lib/internal/scss/link/styles.scss +7 -19
- package/lib/internal/scss/tag-editor/styles.scss +1 -1
- package/lib/internal/template/attribute-editor/styles.css.js +14 -14
- package/lib/internal/template/attribute-editor/styles.scoped.css +28 -28
- package/lib/internal/template/attribute-editor/styles.selectors.js +14 -14
- package/lib/internal/template/breadcrumb-group/item/styles.css.js +9 -9
- package/lib/internal/template/breadcrumb-group/item/styles.scoped.css +21 -21
- package/lib/internal/template/breadcrumb-group/item/styles.selectors.js +9 -9
- package/lib/internal/template/button-dropdown/utils/use-button-dropdown.d.ts.map +1 -1
- package/lib/internal/template/button-dropdown/utils/use-button-dropdown.js +3 -0
- package/lib/internal/template/button-dropdown/utils/use-button-dropdown.js.map +1 -1
- package/lib/internal/template/date-picker/index.d.ts.map +1 -1
- package/lib/internal/template/date-picker/index.js +1 -0
- package/lib/internal/template/date-picker/index.js.map +1 -1
- package/lib/internal/template/date-range-picker/index.d.ts.map +1 -1
- package/lib/internal/template/date-range-picker/index.js +3 -0
- package/lib/internal/template/date-range-picker/index.js.map +1 -1
- package/lib/internal/template/help-panel/styles.css.js +4 -4
- package/lib/internal/template/help-panel/styles.scoped.css +71 -71
- package/lib/internal/template/help-panel/styles.selectors.js +4 -4
- package/lib/internal/template/internal/components/autosuggest-input/index.d.ts.map +1 -1
- package/lib/internal/template/internal/components/autosuggest-input/index.js +2 -0
- package/lib/internal/template/internal/components/autosuggest-input/index.js.map +1 -1
- package/lib/internal/template/internal/components/options-list/utils/use-keyboard.d.ts.map +1 -1
- package/lib/internal/template/internal/components/options-list/utils/use-keyboard.js +1 -0
- package/lib/internal/template/internal/components/options-list/utils/use-keyboard.js.map +1 -1
- package/lib/internal/template/internal/components/token-list/styles.css.js +9 -9
- package/lib/internal/template/internal/components/token-list/styles.scoped.css +24 -24
- package/lib/internal/template/internal/components/token-list/styles.selectors.js +9 -9
- package/lib/internal/template/internal/environment.js +1 -1
- package/lib/internal/template/internal/environment.json +1 -1
- package/lib/internal/template/link/styles.css.js +20 -20
- package/lib/internal/template/link/styles.scoped.css +108 -107
- package/lib/internal/template/link/styles.selectors.js +20 -20
- package/lib/internal/template/popover/body.d.ts.map +1 -1
- package/lib/internal/template/popover/body.js +1 -0
- package/lib/internal/template/popover/body.js.map +1 -1
- package/lib/internal/template/popover/internal.js +7 -2
- package/lib/internal/template/popover/internal.js.map +1 -1
- package/lib/internal/template/tag-editor/styles.css.js +3 -3
- package/lib/internal/template/tag-editor/styles.scoped.css +14 -14
- package/lib/internal/template/tag-editor/styles.selectors.js +3 -3
- package/lib/internal/template/text-content/styles.css.js +1 -1
- package/lib/internal/template/text-content/styles.scoped.css +68 -68
- package/lib/internal/template/text-content/styles.selectors.js +1 -1
- package/package.json +1 -1
|
@@ -11,15 +11,12 @@
|
|
|
11
11
|
@use '../hooks/focus-visible/' as focus-visible;
|
|
12
12
|
@use '../../link/constants.scss' as constants;
|
|
13
13
|
|
|
14
|
-
@mixin link-style($variant) {
|
|
14
|
+
@mixin link-variant-style($variant) {
|
|
15
15
|
color: map.get($variant, 'text-color-default');
|
|
16
16
|
font-weight: map.get($variant, 'font-weight');
|
|
17
17
|
letter-spacing: map.get($variant, 'letter-spacing');
|
|
18
|
-
|
|
19
|
-
text-decoration: map.get($variant, 'decoration');
|
|
20
|
-
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
18
|
+
text-decoration-line: map.get($variant, 'decoration-line');
|
|
21
19
|
text-decoration-color: map.get($variant, 'decoration-color');
|
|
22
|
-
text-decoration-thickness: map.get($variant, 'decoration-thickness');
|
|
23
20
|
|
|
24
21
|
@include styles.with-motion {
|
|
25
22
|
transition-property: color, text-decoration;
|
|
@@ -42,25 +39,31 @@
|
|
|
42
39
|
&:active,
|
|
43
40
|
&:focus,
|
|
44
41
|
&:hover {
|
|
45
|
-
text-decoration: underline;
|
|
46
|
-
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
42
|
+
text-decoration-line: underline;
|
|
47
43
|
text-decoration-color: map.get($variant, 'decoration-color-hover');
|
|
48
|
-
text-decoration-thickness: map.get($variant, 'decoration-thickness');
|
|
49
44
|
}
|
|
50
45
|
}
|
|
51
46
|
|
|
52
|
-
@mixin link-
|
|
53
|
-
|
|
47
|
+
@mixin link-font-size-style($font-size) {
|
|
48
|
+
text-underline-offset: map.get($font-size, 'text-underline-offset');
|
|
49
|
+
text-decoration-thickness: map.get($font-size, 'text-decoration-thickness');
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@mixin link-default($font-size: 'inherit') {
|
|
53
|
+
@include link-variant-style(map.get(constants.$link-variants, 'secondary'));
|
|
54
|
+
@include link-font-size-style(map.get(constants.$link-font-sizes, $font-size));
|
|
54
55
|
}
|
|
55
56
|
|
|
56
57
|
/* Style used for links in slots/components that are text heavy, to help links stand out among
|
|
57
58
|
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
|
|
58
|
-
@mixin link-inline {
|
|
59
|
-
@include link-style(map.get(constants.$link-variants, 'primary'));
|
|
59
|
+
@mixin link-inline($font-size: 'inherit') {
|
|
60
|
+
@include link-variant-style(map.get(constants.$link-variants, 'primary'));
|
|
61
|
+
@include link-font-size-style(map.get(constants.$link-font-sizes, $font-size));
|
|
60
62
|
}
|
|
61
63
|
|
|
62
64
|
// Need style as a mixin for tag editor only, because it needs special keyup/keydown behavior and thus cannot use the Link component
|
|
63
|
-
@mixin link-recovery {
|
|
65
|
+
@mixin link-recovery($font-size: 'inherit') {
|
|
64
66
|
@include typography.font-smoothing;
|
|
65
|
-
@include link-style(map.get(constants.$link-variants, 'recovery'));
|
|
67
|
+
@include link-variant-style(map.get(constants.$link-variants, 'recovery'));
|
|
68
|
+
@include link-font-size-style(map.get(constants.$link-font-sizes, $font-size));
|
|
66
69
|
}
|
|
@@ -7,13 +7,52 @@
|
|
|
7
7
|
@use '../internal/styles/typography/constants.scss' as styles;
|
|
8
8
|
@use '../internal/styles/tokens' as awsui;
|
|
9
9
|
|
|
10
|
+
$link-font-sizes: (
|
|
11
|
+
'body-s': (
|
|
12
|
+
'text-underline-offset': 0.3em,
|
|
13
|
+
'text-decoration-thickness': 1px,
|
|
14
|
+
),
|
|
15
|
+
'body-m': (
|
|
16
|
+
'text-underline-offset': 0.25em,
|
|
17
|
+
'text-decoration-thickness': 1px,
|
|
18
|
+
),
|
|
19
|
+
'heading-xs': (
|
|
20
|
+
'text-underline-offset': 0.25em,
|
|
21
|
+
'text-decoration-thickness': 1px,
|
|
22
|
+
),
|
|
23
|
+
'heading-s': (
|
|
24
|
+
'text-underline-offset': 0.3em,
|
|
25
|
+
'text-decoration-thickness': 1px,
|
|
26
|
+
),
|
|
27
|
+
'heading-m': (
|
|
28
|
+
'text-underline-offset': 0.25em,
|
|
29
|
+
'text-decoration-thickness': 1px,
|
|
30
|
+
),
|
|
31
|
+
'heading-l': (
|
|
32
|
+
'text-underline-offset': 0.25em,
|
|
33
|
+
'text-decoration-thickness': 1px,
|
|
34
|
+
),
|
|
35
|
+
'heading-xl': (
|
|
36
|
+
'text-underline-offset': 0.25em,
|
|
37
|
+
'text-decoration-thickness': 1px,
|
|
38
|
+
),
|
|
39
|
+
'display-l': (
|
|
40
|
+
'text-underline-offset': 0.25em,
|
|
41
|
+
'text-decoration-thickness': 2px,
|
|
42
|
+
),
|
|
43
|
+
'inherit': (
|
|
44
|
+
'text-underline-offset': 0.25em,
|
|
45
|
+
'text-decoration-thickness': 1px,
|
|
46
|
+
),
|
|
47
|
+
);
|
|
48
|
+
|
|
10
49
|
$link-variants: (
|
|
11
50
|
'secondary': (
|
|
12
51
|
'text-color-default': awsui.$color-text-link-default,
|
|
13
52
|
'text-color-hover': awsui.$color-text-link-hover,
|
|
14
53
|
'text-color-active': awsui.$color-text-link-hover,
|
|
15
54
|
'font-weight': inherit,
|
|
16
|
-
'decoration': none,
|
|
55
|
+
'decoration-line': none,
|
|
17
56
|
'decoration-color': transparent,
|
|
18
57
|
'decoration-color-hover': currentColor,
|
|
19
58
|
'letter-spacing': normal,
|
|
@@ -23,7 +62,7 @@ $link-variants: (
|
|
|
23
62
|
'text-color-hover': awsui.$color-text-link-hover,
|
|
24
63
|
'text-color-active': awsui.$color-text-link-hover,
|
|
25
64
|
'font-weight': inherit,
|
|
26
|
-
'decoration': underline,
|
|
65
|
+
'decoration-line': underline,
|
|
27
66
|
'decoration-color': currentColor,
|
|
28
67
|
'decoration-color-hover': currentColor,
|
|
29
68
|
'letter-spacing': normal,
|
|
@@ -33,7 +72,7 @@ $link-variants: (
|
|
|
33
72
|
'text-color-hover': awsui.$color-text-link-hover,
|
|
34
73
|
'text-color-active': awsui.$color-text-link-hover,
|
|
35
74
|
'font-weight': awsui.$font-button-weight,
|
|
36
|
-
'decoration': none,
|
|
75
|
+
'decoration-line': none,
|
|
37
76
|
'decoration-color': transparent,
|
|
38
77
|
'decoration-color-hover': awsui.$color-text-link-button-underline-hover,
|
|
39
78
|
'letter-spacing': styles.$letter-spacing-bold-link,
|
|
@@ -43,17 +82,16 @@ $link-variants: (
|
|
|
43
82
|
'text-color-hover': awsui.$color-text-link-hover,
|
|
44
83
|
'text-color-active': awsui.$color-text-link-hover,
|
|
45
84
|
'font-weight': awsui.$font-box-value-large-weight,
|
|
46
|
-
'decoration': underline,
|
|
85
|
+
'decoration-line': underline,
|
|
47
86
|
'decoration-color': currentColor,
|
|
48
87
|
'decoration-color-hover': currentColor,
|
|
49
|
-
'decoration-thickness': 0.3rem,
|
|
50
88
|
),
|
|
51
89
|
'top-navigation': (
|
|
52
90
|
'text-color-default': awsui.$color-text-interactive-default,
|
|
53
91
|
'text-color-hover': awsui.$color-text-interactive-hover,
|
|
54
92
|
'text-color-active': awsui.$color-text-interactive-active,
|
|
55
93
|
'font-weight': styles.$font-weight-bold,
|
|
56
|
-
'decoration': none,
|
|
94
|
+
'decoration-line': none,
|
|
57
95
|
'decoration-color': transparent,
|
|
58
96
|
'decoration-color-hover': transparent,
|
|
59
97
|
'letter-spacing': styles.$letter-spacing-bold-link,
|
|
@@ -67,7 +105,7 @@ $link-variants: (
|
|
|
67
105
|
'text-color-active': awsui.$color-text-link-hover,
|
|
68
106
|
'font-weight': awsui.$font-link-button-weight,
|
|
69
107
|
// Decoration fallback is for IE11, and IE11 does not support VR, so no variable needed
|
|
70
|
-
'decoration': underline,
|
|
108
|
+
'decoration-line': underline,
|
|
71
109
|
'decoration-color': awsui.$color-text-link-button-underline,
|
|
72
110
|
'decoration-color-hover': awsui.$color-text-link-button-underline-hover,
|
|
73
111
|
'letter-spacing': awsui.$font-link-button-letter-spacing,
|
|
@@ -82,7 +120,7 @@ $link-styles: (
|
|
|
82
120
|
'text-color-hover': awsui.$color-text-link-button-normal-hover,
|
|
83
121
|
'text-color-active': awsui.$color-text-link-button-normal-active,
|
|
84
122
|
'font-weight': awsui.$font-button-weight,
|
|
85
|
-
'decoration': none,
|
|
123
|
+
'decoration-line': none,
|
|
86
124
|
'decoration-color': transparent,
|
|
87
125
|
'decoration-color-hover': transparent,
|
|
88
126
|
'letter-spacing': awsui.$font-button-letter-spacing,
|
|
@@ -9,18 +9,6 @@
|
|
|
9
9
|
@use '../internal/hooks/focus-visible' as focus-visible;
|
|
10
10
|
@use './constants' as constants;
|
|
11
11
|
|
|
12
|
-
$font-sizes: (
|
|
13
|
-
'body-s',
|
|
14
|
-
'body-m',
|
|
15
|
-
'heading-xs',
|
|
16
|
-
'heading-s',
|
|
17
|
-
'heading-m',
|
|
18
|
-
'heading-l',
|
|
19
|
-
'heading-xl',
|
|
20
|
-
'display-l',
|
|
21
|
-
'inherit'
|
|
22
|
-
);
|
|
23
|
-
|
|
24
12
|
.link {
|
|
25
13
|
@include styles.styles-reset;
|
|
26
14
|
display: inline;
|
|
@@ -36,20 +24,19 @@ $font-sizes: (
|
|
|
36
24
|
-webkit-font-smoothing: inherit;
|
|
37
25
|
-moz-osx-font-smoothing: inherit;
|
|
38
26
|
}
|
|
39
|
-
@include styles.link-style(map.get(constants.$link-variants, $variant));
|
|
27
|
+
@include styles.link-variant-style(map.get(constants.$link-variants, $variant));
|
|
40
28
|
}
|
|
41
29
|
}
|
|
42
30
|
|
|
43
31
|
&.button {
|
|
44
32
|
@include styles.font-smoothing;
|
|
45
|
-
@include styles.link-style(map.get(constants.$link-styles, 'button'));
|
|
33
|
+
@include styles.link-variant-style(map.get(constants.$link-styles, 'button'));
|
|
46
34
|
}
|
|
47
35
|
|
|
48
36
|
&.color-inverted {
|
|
49
37
|
color: awsui.$color-text-notification-default;
|
|
50
38
|
&:not(.button) {
|
|
51
|
-
text-decoration: underline;
|
|
52
|
-
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
39
|
+
text-decoration-line: underline;
|
|
53
40
|
text-decoration-color: currentColor;
|
|
54
41
|
}
|
|
55
42
|
&:hover {
|
|
@@ -61,9 +48,10 @@ $font-sizes: (
|
|
|
61
48
|
@include styles.link-focus;
|
|
62
49
|
}
|
|
63
50
|
|
|
64
|
-
@each $
|
|
65
|
-
&.font-size-#{$
|
|
66
|
-
@include styles.font($
|
|
51
|
+
@each $font-size, $properties in constants.$link-font-sizes {
|
|
52
|
+
&.font-size-#{$font-size} {
|
|
53
|
+
@include styles.font($font-size);
|
|
54
|
+
@include styles.link-font-size-style(map.get(constants.$link-font-sizes, $font-size));
|
|
67
55
|
}
|
|
68
56
|
}
|
|
69
57
|
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
|
|
2
2
|
import './styles.scoped.css';
|
|
3
3
|
export default {
|
|
4
|
-
"empty-appear": "awsui_empty-
|
|
5
|
-
"awsui-motion-fade-in": "awsui_awsui-motion-fade-
|
|
6
|
-
"root": "
|
|
7
|
-
"empty": "
|
|
8
|
-
"row": "
|
|
9
|
-
"row-control": "awsui_row-
|
|
10
|
-
"field": "
|
|
11
|
-
"add-button": "awsui_add-
|
|
12
|
-
"remove-button": "awsui_remove-
|
|
13
|
-
"button-container-haslabel": "awsui_button-container-
|
|
14
|
-
"button-container-nolabel": "awsui_button-container-
|
|
15
|
-
"divider": "
|
|
16
|
-
"additional-info": "awsui_additional-
|
|
17
|
-
"right-align": "awsui_right-
|
|
4
|
+
"empty-appear": "awsui_empty-appear_n4qlp_y86kd_93",
|
|
5
|
+
"awsui-motion-fade-in": "awsui_awsui-motion-fade-in_n4qlp_y86kd_1",
|
|
6
|
+
"root": "awsui_root_n4qlp_y86kd_119",
|
|
7
|
+
"empty": "awsui_empty_n4qlp_y86kd_93",
|
|
8
|
+
"row": "awsui_row_n4qlp_y86kd_139",
|
|
9
|
+
"row-control": "awsui_row-control_n4qlp_y86kd_143",
|
|
10
|
+
"field": "awsui_field_n4qlp_y86kd_147",
|
|
11
|
+
"add-button": "awsui_add-button_n4qlp_y86kd_151",
|
|
12
|
+
"remove-button": "awsui_remove-button_n4qlp_y86kd_155",
|
|
13
|
+
"button-container-haslabel": "awsui_button-container-haslabel_n4qlp_y86kd_159",
|
|
14
|
+
"button-container-nolabel": "awsui_button-container-nolabel_n4qlp_y86kd_163",
|
|
15
|
+
"divider": "awsui_divider_n4qlp_y86kd_167",
|
|
16
|
+
"additional-info": "awsui_additional-info_n4qlp_y86kd_171",
|
|
17
|
+
"right-align": "awsui_right-align_n4qlp_y86kd_217"
|
|
18
18
|
};
|
|
19
19
|
|
|
@@ -90,10 +90,10 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
90
90
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
91
91
|
SPDX-License-Identifier: Apache-2.0
|
|
92
92
|
*/
|
|
93
|
-
.awsui_empty-
|
|
94
|
-
animation: awsui_awsui-motion-fade-
|
|
93
|
+
.awsui_empty-appear_n4qlp_y86kd_93:not(#\9) {
|
|
94
|
+
animation: awsui_awsui-motion-fade-in_n4qlp_y86kd_1 var(--motion-duration-transition-show-paced-wrsk0l, 180ms) var(--motion-easing-transition-show-paced-o52el4, ease-out);
|
|
95
95
|
}
|
|
96
|
-
@keyframes awsui_awsui-motion-fade-
|
|
96
|
+
@keyframes awsui_awsui-motion-fade-in_n4qlp_y86kd_1 {
|
|
97
97
|
from {
|
|
98
98
|
opacity: 0.2;
|
|
99
99
|
}
|
|
@@ -102,12 +102,12 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
@media (prefers-reduced-motion: reduce) {
|
|
105
|
-
.awsui_empty-
|
|
105
|
+
.awsui_empty-appear_n4qlp_y86kd_93:not(#\9) {
|
|
106
106
|
animation: none;
|
|
107
107
|
transition: none;
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
|
-
.awsui-motion-disabled .awsui_empty-
|
|
110
|
+
.awsui-motion-disabled .awsui_empty-appear_n4qlp_y86kd_93:not(#\9), .awsui-mode-entering .awsui_empty-appear_n4qlp_y86kd_93:not(#\9) {
|
|
111
111
|
animation: none;
|
|
112
112
|
transition: none;
|
|
113
113
|
}
|
|
@@ -116,7 +116,7 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
116
116
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
117
117
|
SPDX-License-Identifier: Apache-2.0
|
|
118
118
|
*/
|
|
119
|
-
.
|
|
119
|
+
.awsui_root_n4qlp_y86kd_119:not(#\9) {
|
|
120
120
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
121
121
|
border-collapse: separate;
|
|
122
122
|
border-spacing: 0;
|
|
@@ -156,45 +156,45 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
156
156
|
display: block;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
.
|
|
159
|
+
.awsui_empty_n4qlp_y86kd_93:not(#\9) {
|
|
160
160
|
font-size: var(--font-size-body-m-pa3mqb, 14px);
|
|
161
161
|
line-height: var(--line-height-body-m-2zx78l, 22px);
|
|
162
162
|
color: var(--color-text-empty-jskpnv, #687078);
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
-
.
|
|
165
|
+
.awsui_row_n4qlp_y86kd_139:not(#\9) {
|
|
166
166
|
/* used in test-utils */
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
.awsui_row-
|
|
169
|
+
.awsui_row-control_n4qlp_y86kd_143:not(#\9) {
|
|
170
170
|
/* used in test-utils */
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
-
.
|
|
173
|
+
.awsui_field_n4qlp_y86kd_147:not(#\9) {
|
|
174
174
|
/* used in test-utils */
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
-
.awsui_add-
|
|
177
|
+
.awsui_add-button_n4qlp_y86kd_151:not(#\9) {
|
|
178
178
|
/* used in test-utils */
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
-
.awsui_remove-
|
|
181
|
+
.awsui_remove-button_n4qlp_y86kd_155:not(#\9) {
|
|
182
182
|
/* used in test-utils */
|
|
183
183
|
}
|
|
184
184
|
|
|
185
|
-
.awsui_button-container-
|
|
185
|
+
.awsui_button-container-haslabel_n4qlp_y86kd_159:not(#\9) {
|
|
186
186
|
padding-top: calc(var(--space-xxs-9rrxti, 4px) + var(--line-height-body-m-2zx78l, 22px));
|
|
187
187
|
}
|
|
188
188
|
|
|
189
|
-
.awsui_button-container-
|
|
189
|
+
.awsui_button-container-nolabel_n4qlp_y86kd_163:not(#\9) {
|
|
190
190
|
padding-top: var(--space-xxs-9rrxti, 4px);
|
|
191
191
|
}
|
|
192
192
|
|
|
193
|
-
.
|
|
193
|
+
.awsui_divider_n4qlp_y86kd_167:not(#\9) {
|
|
194
194
|
border-bottom: var(--border-divider-section-width-4ozgf3, 1px) solid var(--color-border-divider-default-cr3oi6, #eaeded);
|
|
195
195
|
}
|
|
196
196
|
|
|
197
|
-
.awsui_additional-
|
|
197
|
+
.awsui_additional-info_n4qlp_y86kd_171:not(#\9) {
|
|
198
198
|
color: var(--color-text-form-secondary-rh78tu, #687078);
|
|
199
199
|
font-size: var(--font-size-body-s-533prh, 12px);
|
|
200
200
|
line-height: var(--line-height-body-s-n0pazd, 16px);
|
|
@@ -204,44 +204,44 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
204
204
|
margin-top: var(--space-xxs-9rrxti, 4px);
|
|
205
205
|
/* stylelint-disable-next-line selector-max-type */
|
|
206
206
|
}
|
|
207
|
-
.awsui_additional-
|
|
207
|
+
.awsui_additional-info_n4qlp_y86kd_171 > a:not(#\9) {
|
|
208
208
|
color: var(--color-text-link-default-hop3gv, #0073bb);
|
|
209
209
|
font-weight: inherit;
|
|
210
210
|
letter-spacing: normal;
|
|
211
|
-
text-decoration: underline;
|
|
212
|
-
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
211
|
+
text-decoration-line: underline;
|
|
213
212
|
text-decoration-color: currentColor;
|
|
214
213
|
transition-property: color, -webkit-text-decoration;
|
|
215
214
|
transition-property: color, text-decoration;
|
|
216
215
|
transition-property: color, text-decoration, -webkit-text-decoration;
|
|
217
216
|
transition-duration: var(--motion-duration-refresh-only-medium-0rwzu1, 165ms);
|
|
217
|
+
text-underline-offset: 0.3em;
|
|
218
|
+
text-decoration-thickness: 1px;
|
|
218
219
|
}
|
|
219
220
|
@media (prefers-reduced-motion: reduce) {
|
|
220
|
-
.awsui_additional-
|
|
221
|
+
.awsui_additional-info_n4qlp_y86kd_171 > a:not(#\9) {
|
|
221
222
|
animation: none;
|
|
222
223
|
transition: none;
|
|
223
224
|
}
|
|
224
225
|
}
|
|
225
|
-
.awsui-motion-disabled .awsui_additional-
|
|
226
|
+
.awsui-motion-disabled .awsui_additional-info_n4qlp_y86kd_171 > a:not(#\9), .awsui-mode-entering .awsui_additional-info_n4qlp_y86kd_171 > a:not(#\9) {
|
|
226
227
|
animation: none;
|
|
227
228
|
transition: none;
|
|
228
229
|
}
|
|
229
|
-
.awsui_additional-
|
|
230
|
+
.awsui_additional-info_n4qlp_y86kd_171 > a:not(#\9):hover {
|
|
230
231
|
cursor: pointer;
|
|
231
232
|
color: var(--color-text-link-hover-8s5z9d, #0a4a74);
|
|
232
233
|
}
|
|
233
|
-
.awsui_additional-
|
|
234
|
+
.awsui_additional-info_n4qlp_y86kd_171 > a:not(#\9):focus {
|
|
234
235
|
outline: none;
|
|
235
236
|
}
|
|
236
|
-
.awsui_additional-
|
|
237
|
+
.awsui_additional-info_n4qlp_y86kd_171 > a:not(#\9):active {
|
|
237
238
|
color: var(--color-text-link-hover-8s5z9d, #0a4a74);
|
|
238
239
|
}
|
|
239
|
-
.awsui_additional-
|
|
240
|
-
text-decoration: underline;
|
|
241
|
-
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
240
|
+
.awsui_additional-info_n4qlp_y86kd_171 > a:not(#\9):active, .awsui_additional-info_n4qlp_y86kd_171 > a:not(#\9):focus, .awsui_additional-info_n4qlp_y86kd_171 > a:not(#\9):hover {
|
|
241
|
+
text-decoration-line: underline;
|
|
242
242
|
text-decoration-color: currentColor;
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
-
.awsui_right-
|
|
245
|
+
.awsui_right-align_n4qlp_y86kd_217:not(#\9) {
|
|
246
246
|
float: right;
|
|
247
247
|
}
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
// es-module interop with Babel and Typescript
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
module.exports.default = {
|
|
5
|
-
"empty-appear": "awsui_empty-
|
|
6
|
-
"awsui-motion-fade-in": "awsui_awsui-motion-fade-
|
|
7
|
-
"root": "
|
|
8
|
-
"empty": "
|
|
9
|
-
"row": "
|
|
10
|
-
"row-control": "awsui_row-
|
|
11
|
-
"field": "
|
|
12
|
-
"add-button": "awsui_add-
|
|
13
|
-
"remove-button": "awsui_remove-
|
|
14
|
-
"button-container-haslabel": "awsui_button-container-
|
|
15
|
-
"button-container-nolabel": "awsui_button-container-
|
|
16
|
-
"divider": "
|
|
17
|
-
"additional-info": "awsui_additional-
|
|
18
|
-
"right-align": "awsui_right-
|
|
5
|
+
"empty-appear": "awsui_empty-appear_n4qlp_y86kd_93",
|
|
6
|
+
"awsui-motion-fade-in": "awsui_awsui-motion-fade-in_n4qlp_y86kd_1",
|
|
7
|
+
"root": "awsui_root_n4qlp_y86kd_119",
|
|
8
|
+
"empty": "awsui_empty_n4qlp_y86kd_93",
|
|
9
|
+
"row": "awsui_row_n4qlp_y86kd_139",
|
|
10
|
+
"row-control": "awsui_row-control_n4qlp_y86kd_143",
|
|
11
|
+
"field": "awsui_field_n4qlp_y86kd_147",
|
|
12
|
+
"add-button": "awsui_add-button_n4qlp_y86kd_151",
|
|
13
|
+
"remove-button": "awsui_remove-button_n4qlp_y86kd_155",
|
|
14
|
+
"button-container-haslabel": "awsui_button-container-haslabel_n4qlp_y86kd_159",
|
|
15
|
+
"button-container-nolabel": "awsui_button-container-nolabel_n4qlp_y86kd_163",
|
|
16
|
+
"divider": "awsui_divider_n4qlp_y86kd_167",
|
|
17
|
+
"additional-info": "awsui_additional-info_n4qlp_y86kd_171",
|
|
18
|
+
"right-align": "awsui_right-align_n4qlp_y86kd_217"
|
|
19
19
|
};
|
|
20
20
|
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
2
|
import './styles.scoped.css';
|
|
3
3
|
export default {
|
|
4
|
-
"link": "
|
|
5
|
-
"breadcrumb": "
|
|
6
|
-
"icon": "
|
|
7
|
-
"anchor": "
|
|
8
|
-
"last": "
|
|
9
|
-
"compressed": "
|
|
10
|
-
"text": "
|
|
11
|
-
"virtual-item": "awsui_virtual-
|
|
12
|
-
"item-popover": "awsui_item-
|
|
4
|
+
"link": "awsui_link_1kosq_ttk24_93",
|
|
5
|
+
"breadcrumb": "awsui_breadcrumb_1kosq_ttk24_97",
|
|
6
|
+
"icon": "awsui_icon_1kosq_ttk24_100",
|
|
7
|
+
"anchor": "awsui_anchor_1kosq_ttk24_104",
|
|
8
|
+
"last": "awsui_last_1kosq_ttk24_147",
|
|
9
|
+
"compressed": "awsui_compressed_1kosq_ttk24_157",
|
|
10
|
+
"text": "awsui_text_1kosq_ttk24_161",
|
|
11
|
+
"virtual-item": "awsui_virtual-item_1kosq_ttk24_168",
|
|
12
|
+
"item-popover": "awsui_item-popover_1kosq_ttk24_175"
|
|
13
13
|
};
|
|
14
14
|
|
|
@@ -90,55 +90,55 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
90
90
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
91
91
|
SPDX-License-Identifier: Apache-2.0
|
|
92
92
|
*/
|
|
93
|
-
.
|
|
93
|
+
.awsui_link_1kosq_ttk24_93:not(#\9):after {
|
|
94
94
|
display: none;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
.
|
|
97
|
+
.awsui_breadcrumb_1kosq_ttk24_97:not(#\9) {
|
|
98
98
|
display: flex;
|
|
99
99
|
}
|
|
100
|
-
.
|
|
100
|
+
.awsui_breadcrumb_1kosq_ttk24_97 > .awsui_icon_1kosq_ttk24_100:not(#\9) {
|
|
101
101
|
margin: 0 var(--space-xs-xf5ch3, 8px);
|
|
102
102
|
color: var(--color-text-breadcrumb-icon-egad48, #687078);
|
|
103
103
|
}
|
|
104
|
-
.
|
|
104
|
+
.awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9) {
|
|
105
105
|
color: var(--color-text-link-default-hop3gv, #0073bb);
|
|
106
106
|
font-weight: inherit;
|
|
107
107
|
letter-spacing: normal;
|
|
108
|
-
text-decoration: underline;
|
|
109
|
-
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
108
|
+
text-decoration-line: underline;
|
|
110
109
|
text-decoration-color: currentColor;
|
|
111
110
|
transition-property: color, -webkit-text-decoration;
|
|
112
111
|
transition-property: color, text-decoration;
|
|
113
112
|
transition-property: color, text-decoration, -webkit-text-decoration;
|
|
114
113
|
transition-duration: var(--motion-duration-refresh-only-medium-0rwzu1, 165ms);
|
|
114
|
+
text-underline-offset: 0.25em;
|
|
115
|
+
text-decoration-thickness: 1px;
|
|
115
116
|
}
|
|
116
117
|
@media (prefers-reduced-motion: reduce) {
|
|
117
|
-
.
|
|
118
|
+
.awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9) {
|
|
118
119
|
animation: none;
|
|
119
120
|
transition: none;
|
|
120
121
|
}
|
|
121
122
|
}
|
|
122
|
-
.awsui-motion-disabled .
|
|
123
|
+
.awsui-motion-disabled .awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9), .awsui-mode-entering .awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9) {
|
|
123
124
|
animation: none;
|
|
124
125
|
transition: none;
|
|
125
126
|
}
|
|
126
|
-
.
|
|
127
|
+
.awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9):hover {
|
|
127
128
|
cursor: pointer;
|
|
128
129
|
color: var(--color-text-link-hover-8s5z9d, #0a4a74);
|
|
129
130
|
}
|
|
130
|
-
.
|
|
131
|
+
.awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9):focus {
|
|
131
132
|
outline: none;
|
|
132
133
|
}
|
|
133
|
-
.
|
|
134
|
+
.awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9):active {
|
|
134
135
|
color: var(--color-text-link-hover-8s5z9d, #0a4a74);
|
|
135
136
|
}
|
|
136
|
-
.
|
|
137
|
-
text-decoration: underline;
|
|
138
|
-
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
137
|
+
.awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9):active, .awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9):focus, .awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9):hover {
|
|
138
|
+
text-decoration-line: underline;
|
|
139
139
|
text-decoration-color: currentColor;
|
|
140
140
|
}
|
|
141
|
-
body[data-awsui-focus-visible=true] .
|
|
141
|
+
body[data-awsui-focus-visible=true] .awsui_breadcrumb_1kosq_ttk24_97 > .awsui_anchor_1kosq_ttk24_104:not(#\9):focus {
|
|
142
142
|
outline: thin dotted;
|
|
143
143
|
outline: var(--border-link-focus-ring-outline-gygm43, 5px auto Highlight);
|
|
144
144
|
outline-offset: 2px;
|
|
@@ -146,34 +146,34 @@ body[data-awsui-focus-visible=true] .awsui_breadcrumb_1kosq_2vw2o_97 > .awsui_an
|
|
|
146
146
|
border-radius: var(--border-radius-control-default-focus-ring-a78bgq, 2px);
|
|
147
147
|
box-shadow: 0 0 0 var(--border-link-focus-ring-shadow-spread-efbp5h, 0px) var(--color-border-item-focused-v8nq2m, #0073bb);
|
|
148
148
|
}
|
|
149
|
-
.
|
|
149
|
+
.awsui_breadcrumb_1kosq_ttk24_97.awsui_last_1kosq_ttk24_147 > .awsui_icon_1kosq_ttk24_100:not(#\9) {
|
|
150
150
|
display: none;
|
|
151
151
|
}
|
|
152
|
-
.
|
|
152
|
+
.awsui_breadcrumb_1kosq_ttk24_97.awsui_last_1kosq_ttk24_147 > .awsui_anchor_1kosq_ttk24_104:not(#\9) {
|
|
153
153
|
color: var(--color-text-breadcrumb-current-pm5uhh, #687078);
|
|
154
154
|
font-weight: 700;
|
|
155
155
|
text-decoration: none;
|
|
156
156
|
cursor: default;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
.
|
|
159
|
+
.awsui_compressed_1kosq_ttk24_157:not(#\9) {
|
|
160
160
|
min-width: 0;
|
|
161
161
|
overflow: hidden;
|
|
162
162
|
}
|
|
163
|
-
.
|
|
163
|
+
.awsui_compressed_1kosq_ttk24_157 > .awsui_text_1kosq_ttk24_161:not(#\9) {
|
|
164
164
|
overflow: hidden;
|
|
165
165
|
text-overflow: ellipsis;
|
|
166
166
|
white-space: nowrap;
|
|
167
167
|
display: block;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
-
.awsui_virtual-
|
|
170
|
+
.awsui_virtual-item_1kosq_ttk24_168:not(#\9) {
|
|
171
171
|
position: absolute !important;
|
|
172
172
|
top: -9999px !important;
|
|
173
173
|
left: -9999px !important;
|
|
174
174
|
visibility: hidden;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
-
.awsui_item-
|
|
177
|
+
.awsui_item-popover_1kosq_ttk24_175:not(#\9) {
|
|
178
178
|
/* used in tests */
|
|
179
179
|
}
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
// es-module interop with Babel and Typescript
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
module.exports.default = {
|
|
5
|
-
"link": "
|
|
6
|
-
"breadcrumb": "
|
|
7
|
-
"icon": "
|
|
8
|
-
"anchor": "
|
|
9
|
-
"last": "
|
|
10
|
-
"compressed": "
|
|
11
|
-
"text": "
|
|
12
|
-
"virtual-item": "awsui_virtual-
|
|
13
|
-
"item-popover": "awsui_item-
|
|
5
|
+
"link": "awsui_link_1kosq_ttk24_93",
|
|
6
|
+
"breadcrumb": "awsui_breadcrumb_1kosq_ttk24_97",
|
|
7
|
+
"icon": "awsui_icon_1kosq_ttk24_100",
|
|
8
|
+
"anchor": "awsui_anchor_1kosq_ttk24_104",
|
|
9
|
+
"last": "awsui_last_1kosq_ttk24_147",
|
|
10
|
+
"compressed": "awsui_compressed_1kosq_ttk24_157",
|
|
11
|
+
"text": "awsui_text_1kosq_ttk24_161",
|
|
12
|
+
"virtual-item": "awsui_virtual-item_1kosq_ttk24_168",
|
|
13
|
+
"item-popover": "awsui_item-popover_1kosq_ttk24_175"
|
|
14
14
|
};
|
|
15
15
|
|