@cloudscape-design/components-themeable 3.0.336 → 3.0.338
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/code-editor/ace-editor.scss +43 -9
- package/lib/internal/template/code-editor/index.d.ts.map +1 -1
- package/lib/internal/template/code-editor/index.js +4 -10
- package/lib/internal/template/code-editor/index.js.map +1 -1
- package/lib/internal/template/code-editor/pane.d.ts.map +1 -1
- package/lib/internal/template/code-editor/pane.js +3 -19
- package/lib/internal/template/code-editor/pane.js.map +1 -1
- package/lib/internal/template/code-editor/setup-editor.d.ts.map +1 -1
- package/lib/internal/template/code-editor/setup-editor.js +23 -10
- package/lib/internal/template/code-editor/setup-editor.js.map +1 -1
- package/lib/internal/template/code-editor/styles.css.js +32 -32
- package/lib/internal/template/code-editor/styles.scoped.css +214 -162
- package/lib/internal/template/code-editor/styles.selectors.js +32 -32
- package/lib/internal/template/code-editor/util.d.ts +2 -1
- package/lib/internal/template/code-editor/util.d.ts.map +1 -1
- package/lib/internal/template/code-editor/util.js +16 -4
- package/lib/internal/template/code-editor/util.js.map +1 -1
- package/lib/internal/template/internal/environment.js +1 -1
- package/lib/internal/template/package.json +1 -1
- package/lib/internal/template/text-filter/interfaces.d.ts +2 -1
- package/lib/internal/template/text-filter/interfaces.d.ts.map +1 -1
- package/lib/internal/template/text-filter/interfaces.js.map +1 -1
- package/lib/internal/template/text-filter/internal.d.ts.map +1 -1
- package/lib/internal/template/text-filter/internal.js +4 -3
- package/lib/internal/template/text-filter/internal.js.map +1 -1
- package/package.json +1 -1
|
@@ -95,22 +95,29 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
95
95
|
SPDX-License-Identifier: Apache-2.0
|
|
96
96
|
*/
|
|
97
97
|
/* stylelint-disable selector-combinator-disallowed-list, @cloudscape-design/no-implicit-descendant */
|
|
98
|
-
.awsui_code-
|
|
98
|
+
.awsui_code-editor-refresh_1gl9c_1xg3r_98 .ace_editor .ace_gutter:not(#\9) {
|
|
99
|
+
border-top-left-radius: calc(var(--border-radius-code-editor-kygsx4, 0px) - var(--border-item-width-x3q2fl, 1px));
|
|
100
|
+
}
|
|
101
|
+
.awsui_code-editor-refresh_1gl9c_1xg3r_98 .ace_editor .ace_scroller:not(#\9) {
|
|
102
|
+
border-top-right-radius: calc(var(--border-radius-code-editor-kygsx4, 0px) - var(--border-item-width-x3q2fl, 1px));
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor:not(#\9) {
|
|
99
106
|
font-family: Monaco, Menlo, Consolas, "Courier Prime", Courier, "Courier New", monospace;
|
|
100
107
|
font-size: 14px;
|
|
101
108
|
line-height: 20px;
|
|
102
109
|
}
|
|
103
|
-
.awsui_code-
|
|
104
|
-
.awsui_code-
|
|
110
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_error:not(#\9),
|
|
111
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_warning:not(#\9) {
|
|
105
112
|
cursor: pointer;
|
|
106
113
|
background-repeat: no-repeat;
|
|
107
114
|
background-size: 16px 16px;
|
|
108
115
|
background-position: 4px 2px;
|
|
109
116
|
}
|
|
110
|
-
.awsui_code-
|
|
117
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_info:not(#\9) {
|
|
111
118
|
background-image: none;
|
|
112
119
|
}
|
|
113
|
-
.awsui_code-
|
|
120
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_error:not(#\9) {
|
|
114
121
|
color: var(--color-text-status-error-6ntion, #d13212);
|
|
115
122
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d13212' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Ccircle cx='8' cy='8' r='7'/%3E %3Cpath d='M10.828 5.172l-5.656 5.656M10.828 10.828L5.172 5.172'/%3E %3C/svg%3E");
|
|
116
123
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
@@ -118,60 +125,60 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
118
125
|
}
|
|
119
126
|
@supports (--css-variable-support-check: #000) {
|
|
120
127
|
@media not print {
|
|
121
|
-
.awsui_code-
|
|
128
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_error:not(#\9) {
|
|
122
129
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
123
130
|
}
|
|
124
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
131
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_error:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_error:not(#\9) {
|
|
125
132
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23ff5d64' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Ccircle cx='8' cy='8' r='7'/%3E %3Cpath d='M10.828 5.172l-5.656 5.656M10.828 10.828L5.172 5.172'/%3E %3C/svg%3E");
|
|
126
133
|
}
|
|
127
134
|
}
|
|
128
135
|
}
|
|
129
136
|
@supports (--css-variable-support-check: #000) {
|
|
130
|
-
.awsui-visual-refresh .awsui_code-
|
|
137
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_error:not(#\9) {
|
|
131
138
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d91515' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Ccircle cx='8' cy='8' r='7'/%3E %3Cpath d='M10.828 5.172l-5.656 5.656M10.828 10.828L5.172 5.172'/%3E %3C/svg%3E");
|
|
132
139
|
}
|
|
133
140
|
@media not print {
|
|
134
|
-
.awsui_code-
|
|
141
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_error:not(#\9) {
|
|
135
142
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
136
143
|
}
|
|
137
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
144
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_error:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_error:not(#\9) {
|
|
138
145
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23eb6f6f' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Ccircle cx='8' cy='8' r='7'/%3E %3Cpath d='M10.828 5.172l-5.656 5.656M10.828 10.828L5.172 5.172'/%3E %3C/svg%3E");
|
|
139
146
|
}
|
|
140
147
|
}
|
|
141
148
|
}
|
|
142
|
-
.awsui_code-
|
|
149
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_warning:not(#\9) {
|
|
143
150
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d13212' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M8 1l7 14H1L8 1z'/%3E %3Cpath d='M7.99 12H8v.01h-.01zM8 6v4'/%3E %3C/svg%3E");
|
|
144
151
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
145
152
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
146
153
|
}
|
|
147
154
|
@supports (--css-variable-support-check: #000) {
|
|
148
155
|
@media not print {
|
|
149
|
-
.awsui_code-
|
|
156
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_warning:not(#\9) {
|
|
150
157
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
151
158
|
}
|
|
152
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
159
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_warning:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_warning:not(#\9) {
|
|
153
160
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23ff5d64' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M8 1l7 14H1L8 1z'/%3E %3Cpath d='M7.99 12H8v.01h-.01zM8 6v4'/%3E %3C/svg%3E");
|
|
154
161
|
}
|
|
155
162
|
}
|
|
156
163
|
}
|
|
157
164
|
@supports (--css-variable-support-check: #000) {
|
|
158
|
-
.awsui-visual-refresh .awsui_code-
|
|
165
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_warning:not(#\9) {
|
|
159
166
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d91515' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M8 1l7 14H1L8 1z'/%3E %3Cpath d='M7.99 12H8v.01h-.01zM8 6v4'/%3E %3C/svg%3E");
|
|
160
167
|
}
|
|
161
168
|
@media not print {
|
|
162
|
-
.awsui_code-
|
|
169
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_warning:not(#\9) {
|
|
163
170
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
164
171
|
}
|
|
165
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
172
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_warning:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell.ace_warning:not(#\9) {
|
|
166
173
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23eb6f6f' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M8 1l7 14H1L8 1z'/%3E %3Cpath d='M7.99 12H8v.01h-.01zM8 6v4'/%3E %3C/svg%3E");
|
|
167
174
|
}
|
|
168
175
|
}
|
|
169
176
|
}
|
|
170
|
-
.awsui_code-
|
|
177
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-cell:not(#\9) {
|
|
171
178
|
padding-left: 24px;
|
|
172
179
|
padding-right: 16px;
|
|
173
180
|
}
|
|
174
|
-
.awsui_code-
|
|
181
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget:not(#\9) {
|
|
175
182
|
/* A good test case for disabled folds
|
|
176
183
|
<<html<<<<
|
|
177
184
|
</html>
|
|
@@ -180,251 +187,303 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
180
187
|
margin-right: -15px;
|
|
181
188
|
background-color: transparent;
|
|
182
189
|
border: none;
|
|
190
|
+
}
|
|
191
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter_annotation:not(#\9) {
|
|
192
|
+
margin-left: -21px;
|
|
193
|
+
}
|
|
194
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget:not(#\9),
|
|
195
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter_annotation:not(#\9) {
|
|
183
196
|
box-shadow: none;
|
|
184
197
|
}
|
|
185
|
-
.awsui_code-
|
|
198
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget:not(#\9):focus,
|
|
199
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter_annotation:not(#\9):focus {
|
|
200
|
+
position: relative;
|
|
201
|
+
}
|
|
202
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget:not(#\9):focus,
|
|
203
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter_annotation:not(#\9):focus {
|
|
204
|
+
outline: 2px dotted transparent;
|
|
205
|
+
outline-offset: calc(-1px - 1px);
|
|
206
|
+
}
|
|
207
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget:not(#\9):focus::before,
|
|
208
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter_annotation:not(#\9):focus::before {
|
|
209
|
+
content: " ";
|
|
210
|
+
display: block;
|
|
211
|
+
position: absolute;
|
|
212
|
+
left: calc(-1 * -1px);
|
|
213
|
+
top: calc(-1 * -1px);
|
|
214
|
+
width: calc(100% + 2 * -1px);
|
|
215
|
+
height: calc(100% + 2 * -1px);
|
|
216
|
+
border-radius: var(--border-radius-control-default-focus-ring-uu8qi4, 2px);
|
|
217
|
+
box-shadow: 0 0 0 2px var(--color-border-item-focused-4clyb1, #0073bb);
|
|
218
|
+
}
|
|
219
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_marker-layer > .ace_active-line:not(#\9) {
|
|
186
220
|
background: transparent;
|
|
187
221
|
box-sizing: border-box;
|
|
188
222
|
border-top: 1px solid var(--color-border-code-editor-ace-active-line-light-theme-47zraw, #d5dbdb);
|
|
189
223
|
border-bottom: 1px solid var(--color-border-code-editor-ace-active-line-light-theme-47zraw, #d5dbdb);
|
|
190
224
|
}
|
|
191
|
-
.awsui_code-
|
|
225
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor.ace_dark .ace_marker-layer > .ace_active-line:not(#\9) {
|
|
192
226
|
border-top: 1px solid var(--color-border-code-editor-ace-active-line-dark-theme-fc0euz, #687078);
|
|
193
227
|
border-bottom: 1px solid var(--color-border-code-editor-ace-active-line-dark-theme-fc0euz, #687078);
|
|
194
228
|
}
|
|
195
|
-
.awsui_code-
|
|
229
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter:not(#\9) {
|
|
196
230
|
background-color: var(--color-background-code-editor-gutter-default-hx14ys, #f2f3f3);
|
|
197
231
|
color: var(--color-text-code-editor-gutter-default-bwvqvq, #16191f);
|
|
198
232
|
}
|
|
199
|
-
.awsui_code-
|
|
233
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter:not(#\9):focus,
|
|
234
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_scroller:not(#\9):focus {
|
|
235
|
+
box-shadow: inset 0 0 0 2px var(--color-border-item-focused-4clyb1, #0073bb);
|
|
236
|
+
}
|
|
237
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9) {
|
|
200
238
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23545b64' fill='%23545b64' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
201
239
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
202
240
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
203
241
|
}
|
|
204
242
|
@supports (--css-variable-support-check: #000) {
|
|
205
243
|
@media not print {
|
|
206
|
-
.awsui_code-
|
|
244
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9) {
|
|
207
245
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
208
246
|
}
|
|
209
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
247
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9) {
|
|
210
248
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d5dbdb' fill='%23d5dbdb' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
211
249
|
}
|
|
212
250
|
}
|
|
213
251
|
}
|
|
214
252
|
@supports (--css-variable-support-check: #000) {
|
|
215
|
-
.awsui-visual-refresh .awsui_code-
|
|
253
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9) {
|
|
216
254
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23414d5c' fill='%23414d5c' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
217
255
|
}
|
|
218
256
|
@media not print {
|
|
219
|
-
.awsui_code-
|
|
257
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9) {
|
|
220
258
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
221
259
|
}
|
|
222
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
260
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9) {
|
|
223
261
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d1d5db' fill='%23d1d5db' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
224
262
|
}
|
|
225
263
|
}
|
|
226
264
|
}
|
|
227
|
-
.awsui_code-
|
|
265
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9):hover {
|
|
228
266
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%2316191f' fill='%2316191f' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
229
267
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
230
268
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
231
269
|
}
|
|
232
270
|
@supports (--css-variable-support-check: #000) {
|
|
233
271
|
@media not print {
|
|
234
|
-
.awsui_code-
|
|
272
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9):hover {
|
|
235
273
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
236
274
|
}
|
|
237
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
275
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9):hover, .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9):hover {
|
|
238
276
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fafafa' fill='%23fafafa' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
239
277
|
}
|
|
240
278
|
}
|
|
241
279
|
}
|
|
242
280
|
@supports (--css-variable-support-check: #000) {
|
|
243
|
-
.awsui-visual-refresh .awsui_code-
|
|
281
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9):hover {
|
|
244
282
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23000716' fill='%23000716' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
245
283
|
}
|
|
246
284
|
@media not print {
|
|
247
|
-
.awsui_code-
|
|
285
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9):hover {
|
|
248
286
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
249
287
|
}
|
|
250
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
288
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9):hover, .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_open:not(#\9):hover {
|
|
251
289
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fbfbfb' fill='%23fbfbfb' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
252
290
|
}
|
|
253
291
|
}
|
|
254
292
|
}
|
|
255
|
-
.awsui_code-
|
|
293
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9) {
|
|
256
294
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23545b64' fill='%23545b64' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
257
295
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
258
296
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
259
297
|
}
|
|
260
298
|
@supports (--css-variable-support-check: #000) {
|
|
261
299
|
@media not print {
|
|
262
|
-
.awsui_code-
|
|
300
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9) {
|
|
263
301
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
264
302
|
}
|
|
265
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
303
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9) {
|
|
266
304
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d5dbdb' fill='%23d5dbdb' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
267
305
|
}
|
|
268
306
|
}
|
|
269
307
|
}
|
|
270
308
|
@supports (--css-variable-support-check: #000) {
|
|
271
|
-
.awsui-visual-refresh .awsui_code-
|
|
309
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9) {
|
|
272
310
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23414d5c' fill='%23414d5c' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
273
311
|
}
|
|
274
312
|
@media not print {
|
|
275
|
-
.awsui_code-
|
|
313
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9) {
|
|
276
314
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
277
315
|
}
|
|
278
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
316
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9) {
|
|
279
317
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d1d5db' fill='%23d1d5db' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
280
318
|
}
|
|
281
319
|
}
|
|
282
320
|
}
|
|
283
|
-
.awsui_code-
|
|
321
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
284
322
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%2316191f' fill='%2316191f' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
285
323
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
286
324
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
287
325
|
}
|
|
288
326
|
@supports (--css-variable-support-check: #000) {
|
|
289
327
|
@media not print {
|
|
290
|
-
.awsui_code-
|
|
328
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
291
329
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
292
330
|
}
|
|
293
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
331
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
294
332
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fafafa' fill='%23fafafa' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
295
333
|
}
|
|
296
334
|
}
|
|
297
335
|
}
|
|
298
336
|
@supports (--css-variable-support-check: #000) {
|
|
299
|
-
.awsui-visual-refresh .awsui_code-
|
|
337
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
300
338
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23000716' fill='%23000716' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
301
339
|
}
|
|
302
340
|
@media not print {
|
|
303
|
-
.awsui_code-
|
|
341
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
304
342
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
305
343
|
}
|
|
306
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
344
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
307
345
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fbfbfb' fill='%23fbfbfb' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
308
346
|
}
|
|
309
347
|
}
|
|
310
348
|
}
|
|
311
|
-
.awsui_code-
|
|
349
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line:not(#\9) {
|
|
312
350
|
background-color: var(--color-background-code-editor-gutter-active-line-default-v3re8u, #687078);
|
|
313
351
|
color: var(--color-text-code-editor-gutter-active-line-x1146e, #ffffff);
|
|
314
352
|
}
|
|
315
|
-
.awsui_code-
|
|
353
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line .ace_fold-widget:not(#\9):focus,
|
|
354
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line .ace_gutter_annotation:not(#\9):focus {
|
|
355
|
+
position: relative;
|
|
356
|
+
}
|
|
357
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line .ace_fold-widget:not(#\9):focus,
|
|
358
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line .ace_gutter_annotation:not(#\9):focus {
|
|
359
|
+
outline: 2px dotted transparent;
|
|
360
|
+
outline-offset: calc(-2px - 1px);
|
|
361
|
+
}
|
|
362
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line .ace_fold-widget:not(#\9):focus::before,
|
|
363
|
+
body[data-awsui-focus-visible=true] .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line .ace_gutter_annotation:not(#\9):focus::before {
|
|
364
|
+
content: " ";
|
|
365
|
+
display: block;
|
|
366
|
+
position: absolute;
|
|
367
|
+
left: calc(-1 * -2px);
|
|
368
|
+
top: calc(-1 * -2px);
|
|
369
|
+
width: calc(100% + 2 * -2px);
|
|
370
|
+
height: calc(100% + 2 * -2px);
|
|
371
|
+
border-radius: var(--border-radius-control-default-focus-ring-uu8qi4, 2px);
|
|
372
|
+
box-shadow: 0 0 0 2px var(--color-text-code-editor-gutter-active-line-x1146e, #ffffff);
|
|
373
|
+
}
|
|
374
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9) {
|
|
316
375
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d5dbdb' fill='%23d5dbdb' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
317
376
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
318
377
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
319
378
|
}
|
|
320
379
|
@supports (--css-variable-support-check: #000) {
|
|
321
380
|
@media not print {
|
|
322
|
-
.awsui_code-
|
|
381
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9) {
|
|
323
382
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
324
383
|
}
|
|
325
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
384
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9) {
|
|
326
385
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23414750' fill='%23414750' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
327
386
|
}
|
|
328
387
|
}
|
|
329
388
|
}
|
|
330
389
|
@supports (--css-variable-support-check: #000) {
|
|
331
|
-
.awsui-visual-refresh .awsui_code-
|
|
390
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9) {
|
|
332
391
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d1d5db' fill='%23d1d5db' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
333
392
|
}
|
|
334
393
|
@media not print {
|
|
335
|
-
.awsui_code-
|
|
394
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9) {
|
|
336
395
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
337
396
|
}
|
|
338
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
397
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9) {
|
|
339
398
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23192534' fill='%23192534' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
340
399
|
}
|
|
341
400
|
}
|
|
342
401
|
}
|
|
343
|
-
.awsui_code-
|
|
402
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
344
403
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fafafa' fill='%23fafafa' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
345
404
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
346
405
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
347
406
|
}
|
|
348
407
|
@supports (--css-variable-support-check: #000) {
|
|
349
408
|
@media not print {
|
|
350
|
-
.awsui_code-
|
|
409
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
351
410
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
352
411
|
}
|
|
353
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
412
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9):hover, .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
354
413
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%2316191f' fill='%2316191f' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
355
414
|
}
|
|
356
415
|
}
|
|
357
416
|
}
|
|
358
417
|
@supports (--css-variable-support-check: #000) {
|
|
359
|
-
.awsui-visual-refresh .awsui_code-
|
|
418
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
360
419
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fbfbfb' fill='%23fbfbfb' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
361
420
|
}
|
|
362
421
|
@media not print {
|
|
363
|
-
.awsui_code-
|
|
422
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
364
423
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
365
424
|
}
|
|
366
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
425
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9):hover, .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
367
426
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23000716' fill='%23000716' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
368
427
|
}
|
|
369
428
|
}
|
|
370
429
|
}
|
|
371
|
-
.awsui_code-
|
|
430
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9) {
|
|
372
431
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d5dbdb' fill='%23d5dbdb' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
373
432
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
374
433
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
375
434
|
}
|
|
376
435
|
@supports (--css-variable-support-check: #000) {
|
|
377
436
|
@media not print {
|
|
378
|
-
.awsui_code-
|
|
437
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9) {
|
|
379
438
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
380
439
|
}
|
|
381
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
440
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9) {
|
|
382
441
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23414750' fill='%23414750' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
383
442
|
}
|
|
384
443
|
}
|
|
385
444
|
}
|
|
386
445
|
@supports (--css-variable-support-check: #000) {
|
|
387
|
-
.awsui-visual-refresh .awsui_code-
|
|
446
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9) {
|
|
388
447
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d1d5db' fill='%23d1d5db' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
389
448
|
}
|
|
390
449
|
@media not print {
|
|
391
|
-
.awsui_code-
|
|
450
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9) {
|
|
392
451
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
393
452
|
}
|
|
394
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
453
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9) {
|
|
395
454
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23192534' fill='%23192534' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
396
455
|
}
|
|
397
456
|
}
|
|
398
457
|
}
|
|
399
|
-
.awsui_code-
|
|
458
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
400
459
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fafafa' fill='%23fafafa' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
401
460
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
402
461
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
403
462
|
}
|
|
404
463
|
@supports (--css-variable-support-check: #000) {
|
|
405
464
|
@media not print {
|
|
406
|
-
.awsui_code-
|
|
465
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
407
466
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
408
467
|
}
|
|
409
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
468
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
410
469
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%2316191f' fill='%2316191f' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
411
470
|
}
|
|
412
471
|
}
|
|
413
472
|
}
|
|
414
473
|
@supports (--css-variable-support-check: #000) {
|
|
415
|
-
.awsui-visual-refresh .awsui_code-
|
|
474
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
416
475
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fbfbfb' fill='%23fbfbfb' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
417
476
|
}
|
|
418
477
|
@media not print {
|
|
419
|
-
.awsui_code-
|
|
478
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
420
479
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
421
480
|
}
|
|
422
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
481
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
423
482
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23000716' fill='%23000716' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
424
483
|
}
|
|
425
484
|
}
|
|
426
485
|
}
|
|
427
|
-
.awsui_code-
|
|
486
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error:not(#\9) {
|
|
428
487
|
color: var(--color-text-code-editor-gutter-active-line-x1146e, #ffffff);
|
|
429
488
|
background-color: var(--color-background-code-editor-gutter-active-line-error-sy4x9c, #d13212);
|
|
430
489
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23ffffff' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Ccircle cx='8' cy='8' r='7'/%3E %3Cpath d='M10.828 5.172l-5.656 5.656M10.828 10.828L5.172 5.172'/%3E %3C/svg%3E");
|
|
@@ -433,181 +492,174 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
433
492
|
}
|
|
434
493
|
@supports (--css-variable-support-check: #000) {
|
|
435
494
|
@media not print {
|
|
436
|
-
.awsui_code-
|
|
495
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error:not(#\9) {
|
|
437
496
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
438
497
|
}
|
|
439
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
498
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error:not(#\9) {
|
|
440
499
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%2316191f' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Ccircle cx='8' cy='8' r='7'/%3E %3Cpath d='M10.828 5.172l-5.656 5.656M10.828 10.828L5.172 5.172'/%3E %3C/svg%3E");
|
|
441
500
|
}
|
|
442
501
|
}
|
|
443
502
|
}
|
|
444
503
|
@supports (--css-variable-support-check: #000) {
|
|
445
|
-
.awsui-visual-refresh .awsui_code-
|
|
504
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error:not(#\9) {
|
|
446
505
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23ffffff' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Ccircle cx='8' cy='8' r='7'/%3E %3Cpath d='M10.828 5.172l-5.656 5.656M10.828 10.828L5.172 5.172'/%3E %3C/svg%3E");
|
|
447
506
|
}
|
|
448
507
|
@media not print {
|
|
449
|
-
.awsui_code-
|
|
508
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error:not(#\9) {
|
|
450
509
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
451
510
|
}
|
|
452
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
511
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error:not(#\9) {
|
|
453
512
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23000716' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Ccircle cx='8' cy='8' r='7'/%3E %3Cpath d='M10.828 5.172l-5.656 5.656M10.828 10.828L5.172 5.172'/%3E %3C/svg%3E");
|
|
454
513
|
}
|
|
455
514
|
}
|
|
456
515
|
}
|
|
457
|
-
.awsui_code-
|
|
516
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning:not(#\9) {
|
|
458
517
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23ffffff' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M8 1l7 14H1L8 1z'/%3E %3Cpath d='M7.99 12H8v.01h-.01zM8 6v4'/%3E %3C/svg%3E");
|
|
459
518
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
460
519
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
461
520
|
}
|
|
462
521
|
@supports (--css-variable-support-check: #000) {
|
|
463
522
|
@media not print {
|
|
464
|
-
.awsui_code-
|
|
523
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning:not(#\9) {
|
|
465
524
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
466
525
|
}
|
|
467
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
526
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning:not(#\9) {
|
|
468
527
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%2316191f' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M8 1l7 14H1L8 1z'/%3E %3Cpath d='M7.99 12H8v.01h-.01zM8 6v4'/%3E %3C/svg%3E");
|
|
469
528
|
}
|
|
470
529
|
}
|
|
471
530
|
}
|
|
472
531
|
@supports (--css-variable-support-check: #000) {
|
|
473
|
-
.awsui-visual-refresh .awsui_code-
|
|
532
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning:not(#\9) {
|
|
474
533
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23ffffff' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M8 1l7 14H1L8 1z'/%3E %3Cpath d='M7.99 12H8v.01h-.01zM8 6v4'/%3E %3C/svg%3E");
|
|
475
534
|
}
|
|
476
535
|
@media not print {
|
|
477
|
-
.awsui_code-
|
|
536
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning:not(#\9) {
|
|
478
537
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
479
538
|
}
|
|
480
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
539
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning:not(#\9) {
|
|
481
540
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23000716' fill-opacity='0' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M8 1l7 14H1L8 1z'/%3E %3Cpath d='M7.99 12H8v.01h-.01zM8 6v4'/%3E %3C/svg%3E");
|
|
482
541
|
}
|
|
483
542
|
}
|
|
484
543
|
}
|
|
485
|
-
.awsui_code-
|
|
544
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9), .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9) {
|
|
486
545
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d5dbdb' fill='%23d5dbdb' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
487
546
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
488
547
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
489
548
|
}
|
|
490
549
|
@supports (--css-variable-support-check: #000) {
|
|
491
550
|
@media not print {
|
|
492
|
-
.awsui_code-
|
|
551
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9), .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9) {
|
|
493
552
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
494
553
|
}
|
|
495
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
554
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9), .awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9) {
|
|
496
555
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23414750' fill='%23414750' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
497
556
|
}
|
|
498
557
|
}
|
|
499
558
|
}
|
|
500
559
|
@supports (--css-variable-support-check: #000) {
|
|
501
|
-
.awsui-visual-refresh .awsui_code-
|
|
560
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9), .awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9) {
|
|
502
561
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d1d5db' fill='%23d1d5db' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
503
562
|
}
|
|
504
563
|
@media not print {
|
|
505
|
-
.awsui_code-
|
|
564
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9), .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9) {
|
|
506
565
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
507
566
|
}
|
|
508
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
567
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9), .awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9) {
|
|
509
568
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23192534' fill='%23192534' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
510
569
|
}
|
|
511
570
|
}
|
|
512
571
|
}
|
|
513
|
-
.awsui_code-
|
|
572
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9):hover, .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
514
573
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fafafa' fill='%23fafafa' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
515
574
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
516
575
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
517
576
|
}
|
|
518
577
|
@supports (--css-variable-support-check: #000) {
|
|
519
578
|
@media not print {
|
|
520
|
-
.awsui_code-
|
|
579
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9):hover, .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
521
580
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
522
581
|
}
|
|
523
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
582
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9):hover, .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9):hover, .awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9):hover, .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
524
583
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%2316191f' fill='%2316191f' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
525
584
|
}
|
|
526
585
|
}
|
|
527
586
|
}
|
|
528
587
|
@supports (--css-variable-support-check: #000) {
|
|
529
|
-
.awsui-visual-refresh .awsui_code-
|
|
588
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9):hover, .awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
530
589
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fbfbfb' fill='%23fbfbfb' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
531
590
|
}
|
|
532
591
|
@media not print {
|
|
533
|
-
.awsui_code-
|
|
592
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9):hover, .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
534
593
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
535
594
|
}
|
|
536
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
595
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9):hover, .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:not(#\9):hover, .awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9):hover, .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:not(#\9):hover {
|
|
537
596
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23000716' fill='%23000716' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
538
597
|
}
|
|
539
598
|
}
|
|
540
599
|
}
|
|
541
|
-
.awsui_code-
|
|
600
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9), .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9) {
|
|
542
601
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d5dbdb' fill='%23d5dbdb' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
543
602
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
544
603
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
545
604
|
}
|
|
546
605
|
@supports (--css-variable-support-check: #000) {
|
|
547
606
|
@media not print {
|
|
548
|
-
.awsui_code-
|
|
607
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9), .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9) {
|
|
549
608
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
550
609
|
}
|
|
551
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
610
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9), .awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9), .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9) {
|
|
552
611
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23414750' fill='%23414750' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
553
612
|
}
|
|
554
613
|
}
|
|
555
614
|
}
|
|
556
615
|
@supports (--css-variable-support-check: #000) {
|
|
557
|
-
.awsui-visual-refresh .awsui_code-
|
|
616
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9), .awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9) {
|
|
558
617
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23d1d5db' fill='%23d1d5db' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
559
618
|
}
|
|
560
619
|
@media not print {
|
|
561
|
-
.awsui_code-
|
|
620
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9), .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9) {
|
|
562
621
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
563
622
|
}
|
|
564
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
623
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9), .awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9), .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9) {
|
|
565
624
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23192534' fill='%23192534' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
566
625
|
}
|
|
567
626
|
}
|
|
568
627
|
}
|
|
569
|
-
.awsui_code-
|
|
628
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
570
629
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fafafa' fill='%23fafafa' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
571
630
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
572
631
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
573
632
|
}
|
|
574
633
|
@supports (--css-variable-support-check: #000) {
|
|
575
634
|
@media not print {
|
|
576
|
-
.awsui_code-
|
|
635
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
577
636
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
578
637
|
}
|
|
579
|
-
.awsui-polaris-dark-mode .awsui_code-
|
|
638
|
+
.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
580
639
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%2316191f' fill='%2316191f' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
581
640
|
}
|
|
582
641
|
}
|
|
583
642
|
}
|
|
584
643
|
@supports (--css-variable-support-check: #000) {
|
|
585
|
-
.awsui-visual-refresh .awsui_code-
|
|
644
|
+
.awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-visual-refresh .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
586
645
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fbfbfb' fill='%23fbfbfb' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
587
646
|
}
|
|
588
647
|
@media not print {
|
|
589
|
-
.awsui_code-
|
|
648
|
+
.awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
590
649
|
/* stylelint-disable selector-combinator-disallowed-list, selector-class-pattern */
|
|
591
650
|
}
|
|
592
|
-
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-
|
|
651
|
+
.awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-visual-refresh.awsui-polaris-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9):hover, .awsui-visual-refresh.awsui-dark-mode .awsui_code-editor_1gl9c_1xg3r_98 .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:not(#\9):hover {
|
|
593
652
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23000716' fill='%23000716' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
594
653
|
}
|
|
595
654
|
}
|
|
596
655
|
}
|
|
597
656
|
|
|
598
|
-
.awsui_code-editor-refresh_1gl9c_18051_598 .ace_editor .ace_gutter:not(#\9) {
|
|
599
|
-
border-top-left-radius: calc(var(--border-radius-code-editor-kygsx4, 0px) - var(--border-item-width-x3q2fl, 1px));
|
|
600
|
-
}
|
|
601
|
-
.awsui_code-editor-refresh_1gl9c_18051_598 .ace_editor .ace_scroller:not(#\9) {
|
|
602
|
-
border-top-right-radius: calc(var(--border-radius-code-editor-kygsx4, 0px) - var(--border-item-width-x3q2fl, 1px));
|
|
603
|
-
}
|
|
604
|
-
|
|
605
657
|
/* stylelint-enable selector-combinator-disallowed-list, @cloudscape-design/no-implicit-descendant */
|
|
606
658
|
/*
|
|
607
659
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
608
660
|
SPDX-License-Identifier: Apache-2.0
|
|
609
661
|
*/
|
|
610
|
-
.
|
|
662
|
+
.awsui_pane_1gl9c_1xg3r_662:not(#\9) {
|
|
611
663
|
display: flex;
|
|
612
664
|
position: relative;
|
|
613
665
|
flex-direction: row;
|
|
@@ -618,74 +670,74 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
618
670
|
background: var(--color-background-code-editor-status-bar-y32lc8, #f2f3f3);
|
|
619
671
|
color: var(--color-text-body-default-4colr5, #16191f);
|
|
620
672
|
}
|
|
621
|
-
.awsui_pane__close-
|
|
673
|
+
.awsui_pane__close-container_1gl9c_1xg3r_673:not(#\9) {
|
|
622
674
|
position: absolute;
|
|
623
675
|
top: 0;
|
|
624
676
|
right: calc(var(--space-s-o95p2n, 12px) / 2);
|
|
625
677
|
}
|
|
626
|
-
.
|
|
678
|
+
.awsui_pane__list_1gl9c_1xg3r_678:not(#\9) {
|
|
627
679
|
flex: 1;
|
|
628
680
|
overflow: auto;
|
|
629
681
|
max-height: 100%;
|
|
630
682
|
box-sizing: border-box;
|
|
631
683
|
margin-right: calc(var(--font-body-m-line-height-9vkzhc, 22px) + 2 * var(--space-xs-7veqkr, 8px));
|
|
632
684
|
}
|
|
633
|
-
.
|
|
685
|
+
.awsui_pane__table_1gl9c_1xg3r_685:not(#\9) {
|
|
634
686
|
width: 100%;
|
|
635
687
|
border-spacing: 0;
|
|
636
688
|
margin: var(--space-s-o95p2n, 12px) 0;
|
|
637
689
|
}
|
|
638
|
-
.
|
|
690
|
+
.awsui_pane__item_1gl9c_1xg3r_690 > .awsui_pane__cell_1gl9c_1xg3r_690:not(#\9) {
|
|
639
691
|
border-top: var(--border-item-width-x3q2fl, 1px) solid var(--color-transparent-ctc9eq, transparent);
|
|
640
692
|
border-bottom: var(--border-item-width-x3q2fl, 1px) solid var(--color-transparent-ctc9eq, transparent);
|
|
641
693
|
}
|
|
642
|
-
.
|
|
694
|
+
.awsui_pane__item_1gl9c_1xg3r_690 > .awsui_pane__cell_1gl9c_1xg3r_690:not(#\9):first-child {
|
|
643
695
|
border-left: var(--border-item-width-x3q2fl, 1px) solid var(--color-transparent-ctc9eq, transparent);
|
|
644
696
|
border-top-left-radius: var(--border-radius-item-gy51bh, 0px);
|
|
645
697
|
border-bottom-left-radius: var(--border-radius-item-gy51bh, 0px);
|
|
646
698
|
}
|
|
647
|
-
.
|
|
699
|
+
.awsui_pane__item_1gl9c_1xg3r_690 > .awsui_pane__cell_1gl9c_1xg3r_690:not(#\9):last-child {
|
|
648
700
|
border-right: var(--border-item-width-x3q2fl, 1px) solid var(--color-transparent-ctc9eq, transparent);
|
|
649
701
|
border-top-right-radius: var(--border-radius-item-gy51bh, 0px);
|
|
650
702
|
border-bottom-right-radius: var(--border-radius-item-gy51bh, 0px);
|
|
651
703
|
}
|
|
652
|
-
.awsui_pane__item--
|
|
704
|
+
.awsui_pane__item--highlighted_1gl9c_1xg3r_704:not(#\9), .awsui_pane__item_1gl9c_1xg3r_690:not(#\9):hover, .awsui_pane__item_1gl9c_1xg3r_690:not(#\9):focus {
|
|
653
705
|
cursor: pointer;
|
|
654
706
|
outline: none;
|
|
655
707
|
}
|
|
656
|
-
.awsui_pane__item--
|
|
708
|
+
.awsui_pane__item--highlighted_1gl9c_1xg3r_704 > .awsui_pane__cell_1gl9c_1xg3r_690:not(#\9), .awsui_pane__item_1gl9c_1xg3r_690:not(#\9):hover > .awsui_pane__cell_1gl9c_1xg3r_690, .awsui_pane__item_1gl9c_1xg3r_690:not(#\9):focus > .awsui_pane__cell_1gl9c_1xg3r_690 {
|
|
657
709
|
background-color: var(--color-background-code-editor-pane-item-hover-ck35nl, #eaeded);
|
|
658
710
|
}
|
|
659
|
-
.awsui_pane__item--
|
|
711
|
+
.awsui_pane__item--highlighted_1gl9c_1xg3r_704 > .awsui_pane__cell_1gl9c_1xg3r_690:not(#\9), .awsui_pane__item_1gl9c_1xg3r_690:not(#\9):hover > .awsui_pane__cell_1gl9c_1xg3r_690, .awsui_pane__item_1gl9c_1xg3r_690:not(#\9):focus > .awsui_pane__cell_1gl9c_1xg3r_690 {
|
|
660
712
|
border-top: var(--border-item-width-x3q2fl, 1px) solid var(--color-border-code-editor-pane-item-hover-455lav, #687078);
|
|
661
713
|
border-bottom: var(--border-item-width-x3q2fl, 1px) solid var(--color-border-code-editor-pane-item-hover-455lav, #687078);
|
|
662
714
|
}
|
|
663
|
-
.awsui_pane__item--
|
|
715
|
+
.awsui_pane__item--highlighted_1gl9c_1xg3r_704 > .awsui_pane__cell_1gl9c_1xg3r_690:not(#\9):first-child, .awsui_pane__item_1gl9c_1xg3r_690:not(#\9):hover > .awsui_pane__cell_1gl9c_1xg3r_690:first-child, .awsui_pane__item_1gl9c_1xg3r_690:not(#\9):focus > .awsui_pane__cell_1gl9c_1xg3r_690:first-child {
|
|
664
716
|
border-left: var(--border-item-width-x3q2fl, 1px) solid var(--color-border-code-editor-pane-item-hover-455lav, #687078);
|
|
665
717
|
border-top-left-radius: var(--border-radius-item-gy51bh, 0px);
|
|
666
718
|
border-bottom-left-radius: var(--border-radius-item-gy51bh, 0px);
|
|
667
719
|
}
|
|
668
|
-
.awsui_pane__item--
|
|
720
|
+
.awsui_pane__item--highlighted_1gl9c_1xg3r_704 > .awsui_pane__cell_1gl9c_1xg3r_690:not(#\9):last-child, .awsui_pane__item_1gl9c_1xg3r_690:not(#\9):hover > .awsui_pane__cell_1gl9c_1xg3r_690:last-child, .awsui_pane__item_1gl9c_1xg3r_690:not(#\9):focus > .awsui_pane__cell_1gl9c_1xg3r_690:last-child {
|
|
669
721
|
border-right: var(--border-item-width-x3q2fl, 1px) solid var(--color-border-code-editor-pane-item-hover-455lav, #687078);
|
|
670
722
|
border-top-right-radius: var(--border-radius-item-gy51bh, 0px);
|
|
671
723
|
border-bottom-right-radius: var(--border-radius-item-gy51bh, 0px);
|
|
672
724
|
}
|
|
673
|
-
.
|
|
725
|
+
.awsui_pane__location_1gl9c_1xg3r_725:not(#\9), .awsui_pane__description_1gl9c_1xg3r_725:not(#\9) {
|
|
674
726
|
padding: var(--space-xxs-xx079q, 4px) var(--space-s-o95p2n, 12px);
|
|
675
727
|
}
|
|
676
|
-
.
|
|
728
|
+
.awsui_pane__location_1gl9c_1xg3r_725:not(#\9) {
|
|
677
729
|
vertical-align: baseline;
|
|
678
730
|
white-space: nowrap;
|
|
679
731
|
padding-left: calc(var(--space-l-z6h7qi, 20px) + var(--space-s-o95p2n, 12px));
|
|
680
732
|
}
|
|
681
|
-
.
|
|
733
|
+
.awsui_pane__description_1gl9c_1xg3r_725:not(#\9) {
|
|
682
734
|
padding-right: 0;
|
|
683
735
|
min-width: 0;
|
|
684
736
|
-ms-word-break: break-all;
|
|
685
737
|
word-break: break-word;
|
|
686
738
|
}
|
|
687
739
|
|
|
688
|
-
.awsui_focus-
|
|
740
|
+
.awsui_focus-lock_1gl9c_1xg3r_740:not(#\9) {
|
|
689
741
|
height: 100%;
|
|
690
742
|
}
|
|
691
743
|
|
|
@@ -693,7 +745,7 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
693
745
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
694
746
|
SPDX-License-Identifier: Apache-2.0
|
|
695
747
|
*/
|
|
696
|
-
.awsui_code-
|
|
748
|
+
.awsui_code-editor_1gl9c_1xg3r_98:not(#\9) {
|
|
697
749
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
698
750
|
border-collapse: separate;
|
|
699
751
|
border-spacing: 0;
|
|
@@ -736,23 +788,23 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
736
788
|
width: 100%;
|
|
737
789
|
}
|
|
738
790
|
|
|
739
|
-
.
|
|
791
|
+
.awsui_editor_1gl9c_1xg3r_765:not(#\9) {
|
|
740
792
|
position: absolute;
|
|
741
793
|
top: 0;
|
|
742
794
|
right: 0;
|
|
743
795
|
bottom: 0;
|
|
744
796
|
left: 0;
|
|
745
797
|
}
|
|
746
|
-
.
|
|
798
|
+
.awsui_editor_1gl9c_1xg3r_765:not(#\9):focus {
|
|
747
799
|
position: relative;
|
|
748
800
|
position: absolute;
|
|
749
801
|
overflow: visible;
|
|
750
802
|
}
|
|
751
|
-
.
|
|
803
|
+
.awsui_editor_1gl9c_1xg3r_765:not(#\9):focus {
|
|
752
804
|
outline: 2px dotted transparent;
|
|
753
805
|
outline-offset: calc(3px - 1px);
|
|
754
806
|
}
|
|
755
|
-
.
|
|
807
|
+
.awsui_editor_1gl9c_1xg3r_765:not(#\9):focus::before {
|
|
756
808
|
content: " ";
|
|
757
809
|
display: block;
|
|
758
810
|
position: absolute;
|
|
@@ -764,12 +816,12 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
764
816
|
box-shadow: 0 0 0 2px var(--color-border-item-focused-4clyb1, #0073bb);
|
|
765
817
|
}
|
|
766
818
|
|
|
767
|
-
.awsui_editor-
|
|
819
|
+
.awsui_editor-refresh_1gl9c_1xg3r_793:not(#\9) {
|
|
768
820
|
border-top-left-radius: calc(var(--border-radius-code-editor-kygsx4, 0px) - var(--border-item-width-x3q2fl, 1px));
|
|
769
821
|
border-top-right-radius: calc(var(--border-radius-code-editor-kygsx4, 0px) - var(--border-item-width-x3q2fl, 1px));
|
|
770
822
|
}
|
|
771
823
|
|
|
772
|
-
.awsui_status-
|
|
824
|
+
.awsui_status-bar_1gl9c_1xg3r_798:not(#\9) {
|
|
773
825
|
display: flex;
|
|
774
826
|
vertical-align: middle;
|
|
775
827
|
border-top: var(--border-item-width-x3q2fl, 1px) solid var(--color-border-code-editor-default-gopxy0, #d5dbdb);
|
|
@@ -778,41 +830,41 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
778
830
|
-ms-word-break: break-all;
|
|
779
831
|
word-break: break-word;
|
|
780
832
|
}
|
|
781
|
-
.awsui_status-bar-with-hidden-
|
|
833
|
+
.awsui_status-bar-with-hidden-pane_1gl9c_1xg3r_807:not(#\9) {
|
|
782
834
|
border-bottom-left-radius: var(--border-radius-code-editor-kygsx4, 0px);
|
|
783
835
|
border-bottom-right-radius: var(--border-radius-code-editor-kygsx4, 0px);
|
|
784
836
|
}
|
|
785
|
-
.awsui_status-
|
|
837
|
+
.awsui_status-bar__left_1gl9c_1xg3r_811:not(#\9) {
|
|
786
838
|
flex: 1;
|
|
787
839
|
display: flex;
|
|
788
840
|
flex-wrap: wrap;
|
|
789
841
|
padding-left: var(--space-l-z6h7qi, 20px);
|
|
790
842
|
border-right: var(--border-item-width-x3q2fl, 1px) solid var(--color-border-code-editor-default-gopxy0, #d5dbdb);
|
|
791
843
|
}
|
|
792
|
-
.awsui_status-bar__left-
|
|
844
|
+
.awsui_status-bar__left-virtual_1gl9c_1xg3r_818:not(#\9) {
|
|
793
845
|
flex-wrap: nowrap;
|
|
794
846
|
white-space: nowrap;
|
|
795
847
|
}
|
|
796
|
-
.awsui_status-
|
|
848
|
+
.awsui_status-bar__right_1gl9c_1xg3r_822:not(#\9) {
|
|
797
849
|
display: flex;
|
|
798
850
|
align-items: center;
|
|
799
851
|
}
|
|
800
|
-
.awsui_status-bar__language-
|
|
852
|
+
.awsui_status-bar__language-mode_1gl9c_1xg3r_826:not(#\9), .awsui_status-bar__cursor-position_1gl9c_1xg3r_826:not(#\9) {
|
|
801
853
|
display: inline-block;
|
|
802
854
|
color: var(--color-text-body-default-4colr5, #16191f);
|
|
803
855
|
padding: var(--space-scaled-xs-sg3tfb, 8px) var(--space-s-o95p2n, 12px);
|
|
804
856
|
}
|
|
805
|
-
.awsui_status-bar__cog-
|
|
857
|
+
.awsui_status-bar__cog-button_1gl9c_1xg3r_831:not(#\9) {
|
|
806
858
|
padding: calc(var(--space-scaled-xxs-gmgwxk, 4px) - 1px) calc(var(--space-xs-7veqkr, 8px) - 2px);
|
|
807
859
|
}
|
|
808
860
|
|
|
809
|
-
.awsui_status-bar-
|
|
861
|
+
.awsui_status-bar-virtual_1gl9c_1xg3r_835:not(#\9) {
|
|
810
862
|
position: absolute !important;
|
|
811
863
|
top: -9999px !important;
|
|
812
864
|
left: -9999px !important;
|
|
813
865
|
}
|
|
814
866
|
|
|
815
|
-
.awsui_tab-
|
|
867
|
+
.awsui_tab-button_1gl9c_1xg3r_841:not(#\9) {
|
|
816
868
|
position: relative;
|
|
817
869
|
display: inline-block;
|
|
818
870
|
padding: var(--space-scaled-xs-sg3tfb, 8px) var(--space-s-o95p2n, 12px);
|
|
@@ -825,10 +877,10 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
825
877
|
cursor: pointer;
|
|
826
878
|
z-index: 1;
|
|
827
879
|
}
|
|
828
|
-
.awsui_tab-button--
|
|
880
|
+
.awsui_tab-button--refresh_1gl9c_1xg3r_854:not(#\9) {
|
|
829
881
|
padding-bottom: calc(var(--space-scaled-xs-sg3tfb, 8px) + var(--border-active-width-yythya, 2px) - 2px);
|
|
830
882
|
}
|
|
831
|
-
.awsui_tab-
|
|
883
|
+
.awsui_tab-button_1gl9c_1xg3r_841:not(#\9)::after {
|
|
832
884
|
content: "";
|
|
833
885
|
position: absolute;
|
|
834
886
|
left: 0;
|
|
@@ -839,46 +891,46 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
839
891
|
background: var(--color-text-status-error-6ntion, #d13212);
|
|
840
892
|
opacity: 0;
|
|
841
893
|
}
|
|
842
|
-
.awsui_tab-button--
|
|
894
|
+
.awsui_tab-button--active_1gl9c_1xg3r_868:not(#\9)::after {
|
|
843
895
|
opacity: 1;
|
|
844
896
|
}
|
|
845
|
-
.awsui_tab-button--
|
|
897
|
+
.awsui_tab-button--refresh_1gl9c_1xg3r_854:not(#\9)::after {
|
|
846
898
|
transition: opacity var(--motion-duration-refresh-only-medium-smx8a1, 165ms) var(--motion-easing-refresh-only-c-yvk8k3, cubic-bezier(0.84, 0, 0.16, 1));
|
|
847
899
|
}
|
|
848
900
|
@media (prefers-reduced-motion: reduce) {
|
|
849
|
-
.awsui_tab-button--
|
|
901
|
+
.awsui_tab-button--refresh_1gl9c_1xg3r_854:not(#\9)::after {
|
|
850
902
|
animation: none;
|
|
851
903
|
transition: none;
|
|
852
904
|
}
|
|
853
905
|
}
|
|
854
|
-
.awsui-motion-disabled .awsui_tab-button--
|
|
906
|
+
.awsui-motion-disabled .awsui_tab-button--refresh_1gl9c_1xg3r_854:not(#\9)::after, .awsui-mode-entering .awsui_tab-button--refresh_1gl9c_1xg3r_854:not(#\9)::after {
|
|
855
907
|
animation: none;
|
|
856
908
|
transition: none;
|
|
857
909
|
}
|
|
858
|
-
.awsui_tab-
|
|
910
|
+
.awsui_tab-button_1gl9c_1xg3r_841:not(#\9):hover {
|
|
859
911
|
color: var(--color-text-code-editor-tab-button-error-6uvp9u, #ffffff);
|
|
860
912
|
background: var(--color-text-status-error-6ntion, #d13212);
|
|
861
913
|
}
|
|
862
|
-
.awsui_tab-button--
|
|
914
|
+
.awsui_tab-button--disabled_1gl9c_1xg3r_888:not(#\9) {
|
|
863
915
|
font-weight: normal;
|
|
864
916
|
color: var(--color-text-code-editor-status-bar-disabled-g1lmt9, #879596);
|
|
865
917
|
cursor: default;
|
|
866
918
|
}
|
|
867
|
-
.awsui_tab-button--
|
|
919
|
+
.awsui_tab-button--disabled_1gl9c_1xg3r_888:not(#\9):hover {
|
|
868
920
|
color: var(--color-text-code-editor-status-bar-disabled-g1lmt9, #879596);
|
|
869
921
|
background: transparent;
|
|
870
922
|
}
|
|
871
|
-
.awsui_tab-button--
|
|
923
|
+
.awsui_tab-button--disabled_1gl9c_1xg3r_888:not(#\9)::after {
|
|
872
924
|
display: none;
|
|
873
925
|
}
|
|
874
|
-
body[data-awsui-focus-visible=true] .awsui_tab-
|
|
926
|
+
body[data-awsui-focus-visible=true] .awsui_tab-button_1gl9c_1xg3r_841:not(#\9):focus {
|
|
875
927
|
position: relative;
|
|
876
928
|
}
|
|
877
|
-
body[data-awsui-focus-visible=true] .awsui_tab-
|
|
929
|
+
body[data-awsui-focus-visible=true] .awsui_tab-button_1gl9c_1xg3r_841:not(#\9):focus {
|
|
878
930
|
outline: 2px dotted transparent;
|
|
879
931
|
outline-offset: calc(var(--space-code-editor-status-focus-outline-gutter-svnmb3, 3px) - 1px);
|
|
880
932
|
}
|
|
881
|
-
body[data-awsui-focus-visible=true] .awsui_tab-
|
|
933
|
+
body[data-awsui-focus-visible=true] .awsui_tab-button_1gl9c_1xg3r_841:not(#\9):focus::before {
|
|
882
934
|
content: " ";
|
|
883
935
|
display: block;
|
|
884
936
|
position: absolute;
|
|
@@ -889,19 +941,19 @@ body[data-awsui-focus-visible=true] .awsui_tab-button_1gl9c_18051_789:not(#\9):f
|
|
|
889
941
|
border-radius: var(--border-radius-control-default-focus-ring-uu8qi4, 2px);
|
|
890
942
|
box-shadow: 0 0 0 2px var(--color-border-item-focused-4clyb1, #0073bb);
|
|
891
943
|
}
|
|
892
|
-
.awsui_tab-button--
|
|
944
|
+
.awsui_tab-button--divider_1gl9c_1xg3r_918:not(#\9) {
|
|
893
945
|
display: inline-block;
|
|
894
946
|
height: var(--font-body-m-line-height-9vkzhc, 22px);
|
|
895
947
|
width: var(--border-code-editor-status-divider-width-mt04p4, 0px);
|
|
896
948
|
background: var(--color-border-tabs-divider-8f8ime, #aab7b8);
|
|
897
949
|
vertical-align: middle;
|
|
898
950
|
}
|
|
899
|
-
.awsui_tab-button--
|
|
951
|
+
.awsui_tab-button--errors_1gl9c_1xg3r_925:not(#\9), .awsui_tab-button--warnings_1gl9c_1xg3r_925:not(#\9) {
|
|
900
952
|
/* used in test-utils */
|
|
901
953
|
}
|
|
902
954
|
|
|
903
|
-
.awsui_loading-
|
|
904
|
-
.awsui_error-
|
|
955
|
+
.awsui_loading-screen_1gl9c_1xg3r_929:not(#\9),
|
|
956
|
+
.awsui_error-screen_1gl9c_1xg3r_930:not(#\9) {
|
|
905
957
|
display: flex;
|
|
906
958
|
align-items: center;
|
|
907
959
|
justify-content: center;
|
|
@@ -911,6 +963,6 @@ body[data-awsui-focus-visible=true] .awsui_tab-button_1gl9c_18051_789:not(#\9):f
|
|
|
911
963
|
border-radius: var(--border-radius-code-editor-kygsx4, 0px);
|
|
912
964
|
}
|
|
913
965
|
|
|
914
|
-
.awsui_error-
|
|
966
|
+
.awsui_error-screen_1gl9c_1xg3r_930:not(#\9) {
|
|
915
967
|
color: var(--color-text-status-error-6ntion, #d13212);
|
|
916
968
|
}
|