@cumulus-ui/components 0.5.3 → 0.5.4
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/dist/code-editor/styles.d.ts.map +1 -1
- package/dist/collection-preferences/styles.d.ts.map +1 -1
- package/dist/error-boundary/styles.d.ts +5 -0
- package/dist/error-boundary/styles.d.ts.map +1 -0
- package/dist/index.js +1290 -10
- package/dist/internal/styles/app-layout-visual-refresh.d.ts.map +1 -1
- package/dist/popover/styles.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7272,6 +7272,59 @@ var componentStyles18 = css46`
|
|
|
7272
7272
|
inset-block-start: 0;
|
|
7273
7273
|
inset-inline-start: 0;
|
|
7274
7274
|
|
|
7275
|
+
}
|
|
7276
|
+
.arrow-outer::after, .arrow-inner::after {
|
|
7277
|
+
content: "";
|
|
7278
|
+
box-sizing: border-box;
|
|
7279
|
+
display: inline-block;
|
|
7280
|
+
position: absolute;
|
|
7281
|
+
border-start-start-radius: 2px;
|
|
7282
|
+
border-start-end-radius: 0;
|
|
7283
|
+
border-end-start-radius: 0;
|
|
7284
|
+
border-end-end-radius: 0;
|
|
7285
|
+
inset-block-end: 0;
|
|
7286
|
+
inset-inline-start: 0;
|
|
7287
|
+
inline-size: 14px;
|
|
7288
|
+
block-size: 14px;
|
|
7289
|
+
transform: rotate(45deg);
|
|
7290
|
+
transform-origin: 0 100%;
|
|
7291
|
+
}
|
|
7292
|
+
.arrow-outer:dir(rtl)::after, .arrow-inner:dir(rtl)::after {
|
|
7293
|
+
transform: rotate(-45deg);
|
|
7294
|
+
transform-origin: 100% 100%;
|
|
7295
|
+
}
|
|
7296
|
+
.arrow-outer::after {
|
|
7297
|
+
background-color: var(--color-border-popover-1ye6tz, #b4b4bb);
|
|
7298
|
+
}
|
|
7299
|
+
.arrow-inner {
|
|
7300
|
+
inset-block-start: calc(var(--border-width-popover-nflirh, 2px) + 1px);
|
|
7301
|
+
}
|
|
7302
|
+
.arrow-inner::after {
|
|
7303
|
+
border-start-start-radius: 1px;
|
|
7304
|
+
border-start-end-radius: 0;
|
|
7305
|
+
border-end-start-radius: 0;
|
|
7306
|
+
border-end-end-radius: 0;
|
|
7307
|
+
background-color: var(--color-background-popover-e20fy8, #ffffff);
|
|
7308
|
+
}
|
|
7309
|
+
.arrow-position-right-top > .arrow-outer::after, .arrow-position-right-bottom > .arrow-outer::after {
|
|
7310
|
+
box-shadow: -0.71px 0.71px 4px -2px var(--color-shadow-default-o7dmmm, rgba(15, 20, 26, 0.12));
|
|
7311
|
+
}
|
|
7312
|
+
.arrow-position-left-top > .arrow-outer::after, .arrow-position-left-bottom > .arrow-outer::after {
|
|
7313
|
+
box-shadow: 0.71px -0.71px 4px -2px var(--color-shadow-default-o7dmmm, rgba(15, 20, 26, 0.12));
|
|
7314
|
+
}
|
|
7315
|
+
.arrow-position-top-center > .arrow-outer::after, .arrow-position-top-right > .arrow-outer::after, .arrow-position-top-left > .arrow-outer::after, .arrow-position-top-responsive > .arrow-outer::after {
|
|
7316
|
+
box-shadow: -0.71px -0.71px 4px -2px var(--color-shadow-default-o7dmmm, rgba(15, 20, 26, 0.12));
|
|
7317
|
+
}
|
|
7318
|
+
.arrow-position-bottom-center > .arrow-outer::after, .arrow-position-bottom-right > .arrow-outer::after, .arrow-position-bottom-left > .arrow-outer::after, .arrow-position-bottom-responsive > .arrow-outer::after {
|
|
7319
|
+
box-shadow: 0.71px 0.71px 4px -2px var(--color-shadow-default-o7dmmm, rgba(15, 20, 26, 0.12));
|
|
7320
|
+
}
|
|
7321
|
+
|
|
7322
|
+
.arrow-variant-info > .arrow-outer::after {
|
|
7323
|
+
background-color: var(--color-border-status-info-qf6jok, #006ce0);
|
|
7324
|
+
}
|
|
7325
|
+
.arrow-variant-info > .arrow-inner::after {
|
|
7326
|
+
background-color: var(--color-background-status-info-sfobba, #f0fbff);
|
|
7327
|
+
}
|
|
7275
7328
|
|
|
7276
7329
|
.body {
|
|
7277
7330
|
font-size: var(--font-size-body-m-a7nh2n, 14px);
|
|
@@ -7308,8 +7361,47 @@ var componentStyles18 = css46`
|
|
|
7308
7361
|
order: 1;
|
|
7309
7362
|
}
|
|
7310
7363
|
|
|
7311
|
-
.
|
|
7364
|
+
.header-row {
|
|
7365
|
+
margin-block-end: var(--space-xs-ymlm0b, 8px);
|
|
7366
|
+
}
|
|
7367
|
+
|
|
7368
|
+
.header {
|
|
7369
|
+
word-wrap: break-word;
|
|
7370
|
+
max-inline-size: 100%;
|
|
7371
|
+
overflow: hidden;
|
|
7372
|
+
font-family: var(--font-family-heading-ugphat, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
|
|
7373
|
+
font-size: var(--font-size-heading-xs-j8yzxv, 14px);
|
|
7374
|
+
line-height: var(--line-height-heading-xs-q9j004, 18px);
|
|
7375
|
+
letter-spacing: var(--letter-spacing-heading-xs-fgog7a, normal);
|
|
7376
|
+
font-weight: var(--font-weight-heading-xs-wqqpne, 700);
|
|
7377
|
+
-webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
|
|
7378
|
+
-moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
|
|
7379
|
+
flex: 1 1 auto;
|
|
7380
|
+
|
|
7381
|
+
}
|
|
7382
|
+
.header > h2 {
|
|
7383
|
+
font-family: var(--font-family-heading-ugphat, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
|
|
7384
|
+
font-size: var(--font-size-heading-xs-j8yzxv, 14px);
|
|
7385
|
+
line-height: var(--line-height-heading-xs-q9j004, 18px);
|
|
7386
|
+
letter-spacing: var(--letter-spacing-heading-xs-fgog7a, normal);
|
|
7387
|
+
font-weight: var(--font-weight-heading-xs-wqqpne, 700);
|
|
7388
|
+
-webkit-font-smoothing: var(--font-smoothing-webkit-oemolo, antialiased);
|
|
7389
|
+
-moz-osx-font-smoothing: var(--font-smoothing-moz-osx-hbm0aq, grayscale);
|
|
7390
|
+
display: inline;
|
|
7391
|
+
}
|
|
7312
7392
|
|
|
7393
|
+
.content {
|
|
7394
|
+
word-wrap: break-word;
|
|
7395
|
+
max-inline-size: 100%;
|
|
7396
|
+
overflow: hidden;
|
|
7397
|
+
word-break: normal;
|
|
7398
|
+
color: var(--color-text-body-secondary-yna5sb, #424650);
|
|
7399
|
+
flex: 1 1 auto;
|
|
7400
|
+
min-inline-size: 0;
|
|
7401
|
+
}
|
|
7402
|
+
.content-overflow-visible {
|
|
7403
|
+
overflow: visible;
|
|
7404
|
+
}
|
|
7313
7405
|
|
|
7314
7406
|
.container {
|
|
7315
7407
|
display: inline-block;
|
|
@@ -7400,6 +7492,64 @@ var componentStyles18 = css46`
|
|
|
7400
7492
|
transform: rotate(-90deg);
|
|
7401
7493
|
transform-origin: 0 100%;
|
|
7402
7494
|
|
|
7495
|
+
}
|
|
7496
|
+
.container-arrow-position-right-top:dir(rtl), .container-arrow-position-right-bottom:dir(rtl) {
|
|
7497
|
+
transform: rotate(90deg);
|
|
7498
|
+
transform-origin: 100% 100%;
|
|
7499
|
+
}
|
|
7500
|
+
.container-arrow-position-right-top {
|
|
7501
|
+
inset-block-start: calc(12px + 10px);
|
|
7502
|
+
inset-inline-start: 0;
|
|
7503
|
+
}
|
|
7504
|
+
.container-arrow-position-right-bottom {
|
|
7505
|
+
inset-block-end: 12px;
|
|
7506
|
+
inset-inline-start: 0;
|
|
7507
|
+
}
|
|
7508
|
+
.container-arrow-position-left-top, .container-arrow-position-left-bottom {
|
|
7509
|
+
transform: rotate(90deg);
|
|
7510
|
+
transform-origin: 100% 100%;
|
|
7511
|
+
|
|
7512
|
+
}
|
|
7513
|
+
.container-arrow-position-left-top:dir(rtl), .container-arrow-position-left-bottom:dir(rtl) {
|
|
7514
|
+
transform: rotate(-90deg);
|
|
7515
|
+
transform-origin: 0% 100%;
|
|
7516
|
+
}
|
|
7517
|
+
.container-arrow-position-left-top {
|
|
7518
|
+
inset-block-start: calc(12px + 10px);
|
|
7519
|
+
inset-inline-end: 0;
|
|
7520
|
+
}
|
|
7521
|
+
.container-arrow-position-left-bottom {
|
|
7522
|
+
inset-block-end: 12px;
|
|
7523
|
+
inset-inline-end: 0;
|
|
7524
|
+
}
|
|
7525
|
+
.container-arrow-position-top-center, .container-arrow-position-top-right, .container-arrow-position-top-left, .container-arrow-position-top-responsive {
|
|
7526
|
+
transform: rotate(180deg);
|
|
7527
|
+
transform-origin: 50% 50%;
|
|
7528
|
+
}
|
|
7529
|
+
.container-arrow-position-top-center {
|
|
7530
|
+
inset-block-end: -10px;
|
|
7531
|
+
inset-inline-start: calc(50% - 10px);
|
|
7532
|
+
}
|
|
7533
|
+
.container-arrow-position-top-right {
|
|
7534
|
+
inset-block-end: -10px;
|
|
7535
|
+
inset-inline-start: 12px;
|
|
7536
|
+
}
|
|
7537
|
+
.container-arrow-position-top-left {
|
|
7538
|
+
inset-block-end: -10px;
|
|
7539
|
+
inset-inline-start: calc(100% - 20px - 12px);
|
|
7540
|
+
}
|
|
7541
|
+
.container-arrow-position-bottom-center {
|
|
7542
|
+
inset-block-start: -10px;
|
|
7543
|
+
inset-inline-start: calc(50% - 10px);
|
|
7544
|
+
}
|
|
7545
|
+
.container-arrow-position-bottom-right {
|
|
7546
|
+
inset-block-start: -10px;
|
|
7547
|
+
inset-inline-start: 12px;
|
|
7548
|
+
}
|
|
7549
|
+
.container-arrow-position-bottom-left {
|
|
7550
|
+
inset-block-start: -10px;
|
|
7551
|
+
inset-inline-start: calc(100% - 20px - 12px);
|
|
7552
|
+
}
|
|
7403
7553
|
|
|
7404
7554
|
.container {
|
|
7405
7555
|
animation: awsui_awsui-motion-fade-in_xjuzf_45l16_1 var(--motion-duration-show-paced-otsjh8, 180ms) var(--motion-easing-show-paced-ym6eyn, ease-out);
|
|
@@ -17891,10 +18041,41 @@ import { property as property48, state as state16 } from "lit/decorators.js";
|
|
|
17891
18041
|
// src/collection-preferences/styles.ts
|
|
17892
18042
|
import { css as css107 } from "lit";
|
|
17893
18043
|
var componentStyles47 = css107`
|
|
17894
|
-
.visible-content
|
|
17895
|
-
|
|
17896
|
-
|
|
17897
|
-
|
|
18044
|
+
.visible-content-title {
|
|
18045
|
+
font-size: var(--font-size-body-m-a7nh2n, 14px);
|
|
18046
|
+
line-height: var(--line-height-body-m-2mh3ke, 20px);
|
|
18047
|
+
font-weight: var(--font-display-label-weight-zavpeo, 700);
|
|
18048
|
+
color: var(--color-text-form-label-6sbm75, #0f141a);
|
|
18049
|
+
margin-block-start: 0;
|
|
18050
|
+
margin-block-end: var(--space-scaled-l-sej05l, 20px);
|
|
18051
|
+
margin-inline: 0;
|
|
18052
|
+
}
|
|
18053
|
+
|
|
18054
|
+
.visible-content-group-label {
|
|
18055
|
+
color: var(--color-text-group-label-a2qc05, #424650);
|
|
18056
|
+
padding-block-end: var(--space-xs-ymlm0b, 8px);
|
|
18057
|
+
border-block-end: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-divider-secondary-qoitch, #ebebf0);
|
|
18058
|
+
}
|
|
18059
|
+
|
|
18060
|
+
.visible-content-option {
|
|
18061
|
+
display: flex;
|
|
18062
|
+
flex-wrap: nowrap;
|
|
18063
|
+
justify-content: space-between;
|
|
18064
|
+
padding-block: var(--space-xs-ymlm0b, 8px);
|
|
18065
|
+
padding-inline-start: var(--space-scaled-l-sej05l, 20px);
|
|
18066
|
+
padding-inline-end: 0px;
|
|
18067
|
+
border-block-end: var(--border-divider-list-width-tdfx1x, 1px) solid var(--color-border-divider-secondary-qoitch, #ebebf0);
|
|
18068
|
+
}
|
|
18069
|
+
.visible-content-option:last-child {
|
|
18070
|
+
border-block-end: none;
|
|
18071
|
+
}
|
|
18072
|
+
|
|
18073
|
+
.visible-content-option-label {
|
|
18074
|
+
overflow: hidden;
|
|
18075
|
+
text-overflow: ellipsis;
|
|
18076
|
+
padding-inline-end: var(--space-l-2ud1p3, 20px);
|
|
18077
|
+
flex-grow: 1;
|
|
18078
|
+
}
|
|
17898
18079
|
|
|
17899
18080
|
.content-display-option-content {
|
|
17900
18081
|
font-size: var(--font-size-body-m-a7nh2n, 14px);
|
|
@@ -23891,6 +24072,287 @@ import { classMap as classMap54 } from "lit/directives/class-map.js";
|
|
|
23891
24072
|
// src/code-editor/styles.ts
|
|
23892
24073
|
import { css as css141 } from "lit";
|
|
23893
24074
|
var componentStyles63 = css141`
|
|
24075
|
+
.code-editor-refresh .ace_editor .ace_gutter {
|
|
24076
|
+
border-start-start-radius: calc(var(--border-radius-code-editor-5palck, 8px) - var(--border-item-width-miijiw, 2px));
|
|
24077
|
+
}
|
|
24078
|
+
.code-editor-refresh .ace_editor .ace_scroller {
|
|
24079
|
+
border-start-end-radius: calc(var(--border-radius-code-editor-5palck, 8px) - var(--border-item-width-miijiw, 2px));
|
|
24080
|
+
}
|
|
24081
|
+
|
|
24082
|
+
.code-editor .ace_editor {
|
|
24083
|
+
font-family: Monaco, Menlo, Consolas, "Courier Prime", Courier, "Courier New", monospace;
|
|
24084
|
+
font-size: 14px;
|
|
24085
|
+
line-height: 20px;
|
|
24086
|
+
}
|
|
24087
|
+
.code-editor .ace_editor .ace_gutter-cell.ace_error,
|
|
24088
|
+
.code-editor .ace_editor .ace_gutter-cell.ace_warning {
|
|
24089
|
+
cursor: pointer;
|
|
24090
|
+
background-repeat: no-repeat;
|
|
24091
|
+
background-size: 16px 16px;
|
|
24092
|
+
background-position: 4px 2px;
|
|
24093
|
+
}
|
|
24094
|
+
.code-editor .ace_editor .ace_gutter-cell.ace_info {
|
|
24095
|
+
background-image: none;
|
|
24096
|
+
}
|
|
24097
|
+
.code-editor .ace_editor .ace_gutter-cell.ace_error {
|
|
24098
|
+
color: var(--color-text-status-error-ksqavh, #db0000);
|
|
24099
|
+
}
|
|
24100
|
+
@supports (--css-variable-support-check: #000) {
|
|
24101
|
+
body .code-editor .ace_editor .ace_gutter-cell.ace_error {
|
|
24102
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23db0000' 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");
|
|
24103
|
+
}
|
|
24104
|
+
@media not print {
|
|
24105
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-cell.ace_error, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-cell.ace_error {
|
|
24106
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23ff7a7a' 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");
|
|
24107
|
+
}
|
|
24108
|
+
}
|
|
24109
|
+
}
|
|
24110
|
+
@supports (--css-variable-support-check: #000) {
|
|
24111
|
+
body .code-editor .ace_editor .ace_gutter-cell.ace_warning {
|
|
24112
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23855900' 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");
|
|
24113
|
+
}
|
|
24114
|
+
@media not print {
|
|
24115
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-cell.ace_warning, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-cell.ace_warning {
|
|
24116
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23fbd332' 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");
|
|
24117
|
+
}
|
|
24118
|
+
}
|
|
24119
|
+
}
|
|
24120
|
+
.code-editor .ace_editor .ace_gutter-cell {
|
|
24121
|
+
padding-inline: 24px 16px;
|
|
24122
|
+
}
|
|
24123
|
+
.code-editor .ace_editor .ace_fold-widget {
|
|
24124
|
+
/* A good test case for disabled folds
|
|
24125
|
+
<<html<<<<
|
|
24126
|
+
</html>
|
|
24127
|
+
*/
|
|
24128
|
+
inline-size: 14px;
|
|
24129
|
+
margin-inline-end: -15px;
|
|
24130
|
+
background-color: transparent;
|
|
24131
|
+
border-block: none;
|
|
24132
|
+
border-inline: none;
|
|
24133
|
+
}
|
|
24134
|
+
.code-editor .ace_editor .ace_gutter_annotation {
|
|
24135
|
+
margin-inline-start: -21px;
|
|
24136
|
+
}
|
|
24137
|
+
.code-editor .ace_editor .ace_fold-widget,
|
|
24138
|
+
.code-editor .ace_editor .ace_gutter_annotation {
|
|
24139
|
+
box-shadow: none;
|
|
24140
|
+
}
|
|
24141
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_fold-widget:focus,
|
|
24142
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_gutter_annotation:focus {
|
|
24143
|
+
position: relative;
|
|
24144
|
+
}
|
|
24145
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_fold-widget:focus,
|
|
24146
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_gutter_annotation:focus {
|
|
24147
|
+
outline: 2px dotted transparent;
|
|
24148
|
+
outline-offset: calc(-1px - 1px);
|
|
24149
|
+
}
|
|
24150
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_fold-widget:focus::before,
|
|
24151
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_gutter_annotation:focus::before {
|
|
24152
|
+
content: " ";
|
|
24153
|
+
display: block;
|
|
24154
|
+
position: absolute;
|
|
24155
|
+
inset-inline-start: calc(-1 * -1px);
|
|
24156
|
+
inset-block-start: calc(-1 * -1px);
|
|
24157
|
+
inline-size: calc(100% + -1px + -1px);
|
|
24158
|
+
block-size: calc(100% + -1px + -1px);
|
|
24159
|
+
border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
|
|
24160
|
+
border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
|
|
24161
|
+
border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
|
|
24162
|
+
border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
|
|
24163
|
+
box-shadow: 0 0 0 2px var(--color-border-item-focused-uk47pl, #006ce0);
|
|
24164
|
+
}
|
|
24165
|
+
.code-editor .ace_editor .ace_marker-layer > .ace_active-line {
|
|
24166
|
+
background: transparent;
|
|
24167
|
+
box-sizing: border-box;
|
|
24168
|
+
border-block-start: 1px solid var(--color-border-code-editor-ace-active-line-light-theme-q6hsvt, #dedee3);
|
|
24169
|
+
border-block-end: 1px solid var(--color-border-code-editor-ace-active-line-light-theme-q6hsvt, #dedee3);
|
|
24170
|
+
}
|
|
24171
|
+
.code-editor .ace_editor.ace_dark .ace_marker-layer > .ace_active-line {
|
|
24172
|
+
border-block-start: 1px solid var(--color-border-code-editor-ace-active-line-dark-theme-v09eti, #656871);
|
|
24173
|
+
border-block-end: 1px solid var(--color-border-code-editor-ace-active-line-dark-theme-v09eti, #656871);
|
|
24174
|
+
}
|
|
24175
|
+
.code-editor .ace_editor .ace_gutter {
|
|
24176
|
+
background-color: var(--color-background-code-editor-gutter-default-15qdwh, #f3f3f7);
|
|
24177
|
+
color: var(--color-text-code-editor-gutter-default-nlshs8, #0f141a);
|
|
24178
|
+
}
|
|
24179
|
+
.code-editor .ace_editor .ace_gutter:focus,
|
|
24180
|
+
.code-editor .ace_editor .ace_scroller:focus {
|
|
24181
|
+
box-shadow: inset 0 0 0 2px var(--color-border-item-focused-uk47pl, #006ce0);
|
|
24182
|
+
}
|
|
24183
|
+
@supports (--css-variable-support-check: #000) {
|
|
24184
|
+
body .code-editor .ace_editor .ace_fold-widget.ace_open {
|
|
24185
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23424650' fill='%23424650' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24186
|
+
}
|
|
24187
|
+
@media not print {
|
|
24188
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_fold-widget.ace_open, body.awsui-dark-mode .code-editor .ace_editor .ace_fold-widget.ace_open {
|
|
24189
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23dedee3' fill='%23dedee3' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24190
|
+
}
|
|
24191
|
+
}
|
|
24192
|
+
}
|
|
24193
|
+
@supports (--css-variable-support-check: #000) {
|
|
24194
|
+
body .code-editor .ace_editor .ace_fold-widget.ace_open:hover {
|
|
24195
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%230f141a' fill='%230f141a' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24196
|
+
}
|
|
24197
|
+
@media not print {
|
|
24198
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_fold-widget.ace_open:hover, body.awsui-dark-mode .code-editor .ace_editor .ace_fold-widget.ace_open:hover {
|
|
24199
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23f9f9fa' fill='%23f9f9fa' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24200
|
+
}
|
|
24201
|
+
}
|
|
24202
|
+
}
|
|
24203
|
+
@supports (--css-variable-support-check: #000) {
|
|
24204
|
+
body .code-editor .ace_editor .ace_fold-widget.ace_closed {
|
|
24205
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23424650' fill='%23424650' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24206
|
+
}
|
|
24207
|
+
@media not print {
|
|
24208
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_fold-widget.ace_closed, body.awsui-dark-mode .code-editor .ace_editor .ace_fold-widget.ace_closed {
|
|
24209
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23dedee3' fill='%23dedee3' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24210
|
+
}
|
|
24211
|
+
}
|
|
24212
|
+
}
|
|
24213
|
+
@supports (--css-variable-support-check: #000) {
|
|
24214
|
+
body .code-editor .ace_editor .ace_fold-widget.ace_closed:hover {
|
|
24215
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%230f141a' fill='%230f141a' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24216
|
+
}
|
|
24217
|
+
@media not print {
|
|
24218
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_fold-widget.ace_closed:hover, body.awsui-dark-mode .code-editor .ace_editor .ace_fold-widget.ace_closed:hover {
|
|
24219
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23f9f9fa' fill='%23f9f9fa' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24220
|
+
}
|
|
24221
|
+
}
|
|
24222
|
+
}
|
|
24223
|
+
.code-editor .ace_editor .ace_gutter-active-line {
|
|
24224
|
+
background-color: var(--color-background-code-editor-gutter-active-line-default-51v1pv, #656871);
|
|
24225
|
+
color: var(--color-text-code-editor-gutter-active-line-2addhd, #ffffff);
|
|
24226
|
+
}
|
|
24227
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_gutter-active-line .ace_fold-widget:focus,
|
|
24228
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_gutter-active-line .ace_gutter_annotation:focus {
|
|
24229
|
+
position: relative;
|
|
24230
|
+
}
|
|
24231
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_gutter-active-line .ace_fold-widget:focus,
|
|
24232
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_gutter-active-line .ace_gutter_annotation:focus {
|
|
24233
|
+
outline: 2px dotted transparent;
|
|
24234
|
+
outline-offset: calc(-2px - 1px);
|
|
24235
|
+
}
|
|
24236
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_gutter-active-line .ace_fold-widget:focus::before,
|
|
24237
|
+
:host-context([data-awsui-focus-visible=true]) .code-editor .ace_editor .ace_gutter-active-line .ace_gutter_annotation:focus::before {
|
|
24238
|
+
content: " ";
|
|
24239
|
+
display: block;
|
|
24240
|
+
position: absolute;
|
|
24241
|
+
inset-inline-start: calc(-1 * -2px);
|
|
24242
|
+
inset-block-start: calc(-1 * -2px);
|
|
24243
|
+
inline-size: calc(100% + -2px + -2px);
|
|
24244
|
+
block-size: calc(100% + -2px + -2px);
|
|
24245
|
+
border-start-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
|
|
24246
|
+
border-start-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
|
|
24247
|
+
border-end-start-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
|
|
24248
|
+
border-end-end-radius: var(--border-radius-control-default-focus-ring-1uabki, 4px);
|
|
24249
|
+
box-shadow: 0 0 0 2px var(--color-text-code-editor-gutter-active-line-2addhd, #ffffff);
|
|
24250
|
+
}
|
|
24251
|
+
@supports (--css-variable-support-check: #000) {
|
|
24252
|
+
body .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open {
|
|
24253
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23dedee3' fill='%23dedee3' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24254
|
+
}
|
|
24255
|
+
@media not print {
|
|
24256
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open {
|
|
24257
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%231b232d' fill='%231b232d' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24258
|
+
}
|
|
24259
|
+
}
|
|
24260
|
+
}
|
|
24261
|
+
@supports (--css-variable-support-check: #000) {
|
|
24262
|
+
body .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:hover {
|
|
24263
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23f9f9fa' fill='%23f9f9fa' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24264
|
+
}
|
|
24265
|
+
@media not print {
|
|
24266
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:hover, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_open:hover {
|
|
24267
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%230f141a' fill='%230f141a' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24268
|
+
}
|
|
24269
|
+
}
|
|
24270
|
+
}
|
|
24271
|
+
@supports (--css-variable-support-check: #000) {
|
|
24272
|
+
body .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed {
|
|
24273
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23dedee3' fill='%23dedee3' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24274
|
+
}
|
|
24275
|
+
@media not print {
|
|
24276
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed {
|
|
24277
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%231b232d' fill='%231b232d' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24278
|
+
}
|
|
24279
|
+
}
|
|
24280
|
+
}
|
|
24281
|
+
@supports (--css-variable-support-check: #000) {
|
|
24282
|
+
body .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:hover {
|
|
24283
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23f9f9fa' fill='%23f9f9fa' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24284
|
+
}
|
|
24285
|
+
@media not print {
|
|
24286
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:hover, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line > .ace_fold-widget.ace_closed:hover {
|
|
24287
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%230f141a' fill='%230f141a' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24288
|
+
}
|
|
24289
|
+
}
|
|
24290
|
+
}
|
|
24291
|
+
.code-editor .ace_editor .ace_gutter-active-line.ace_error {
|
|
24292
|
+
color: var(--color-text-code-editor-gutter-active-line-2addhd, #ffffff);
|
|
24293
|
+
background-color: var(--color-background-code-editor-gutter-active-line-error-ro2qo1, #db0000);
|
|
24294
|
+
}
|
|
24295
|
+
@supports (--css-variable-support-check: #000) {
|
|
24296
|
+
body .code-editor .ace_editor .ace_gutter-active-line.ace_error {
|
|
24297
|
+
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");
|
|
24298
|
+
}
|
|
24299
|
+
@media not print {
|
|
24300
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_error, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_error {
|
|
24301
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%230f141a' 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");
|
|
24302
|
+
}
|
|
24303
|
+
}
|
|
24304
|
+
}
|
|
24305
|
+
@supports (--css-variable-support-check: #000) {
|
|
24306
|
+
body .code-editor .ace_editor .ace_gutter-active-line.ace_warning {
|
|
24307
|
+
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");
|
|
24308
|
+
}
|
|
24309
|
+
@media not print {
|
|
24310
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_warning, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_warning {
|
|
24311
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%230f141a' 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");
|
|
24312
|
+
}
|
|
24313
|
+
}
|
|
24314
|
+
}
|
|
24315
|
+
@supports (--css-variable-support-check: #000) {
|
|
24316
|
+
body .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open, body .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open {
|
|
24317
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23dedee3' fill='%23dedee3' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24318
|
+
}
|
|
24319
|
+
@media not print {
|
|
24320
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open, body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open {
|
|
24321
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%231b232d' fill='%231b232d' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24322
|
+
}
|
|
24323
|
+
}
|
|
24324
|
+
}
|
|
24325
|
+
@supports (--css-variable-support-check: #000) {
|
|
24326
|
+
body .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:hover, body .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:hover {
|
|
24327
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23f9f9fa' fill='%23f9f9fa' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24328
|
+
}
|
|
24329
|
+
@media not print {
|
|
24330
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:hover, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_open:hover, body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:hover, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_open:hover {
|
|
24331
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%230f141a' fill='%230f141a' stroke-width='2'%3E %3Cpath d='M4 5h8l-4 6-4-6z' stroke-linejoin='round'/%3E %3C/svg%3E");
|
|
24332
|
+
}
|
|
24333
|
+
}
|
|
24334
|
+
}
|
|
24335
|
+
@supports (--css-variable-support-check: #000) {
|
|
24336
|
+
body .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed, body .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed {
|
|
24337
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23dedee3' fill='%23dedee3' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24338
|
+
}
|
|
24339
|
+
@media not print {
|
|
24340
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed, body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed {
|
|
24341
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%231b232d' fill='%231b232d' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24342
|
+
}
|
|
24343
|
+
}
|
|
24344
|
+
}
|
|
24345
|
+
@supports (--css-variable-support-check: #000) {
|
|
24346
|
+
body .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:hover, body .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:hover {
|
|
24347
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23f9f9fa' fill='%23f9f9fa' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24348
|
+
}
|
|
24349
|
+
@media not print {
|
|
24350
|
+
body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:hover, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_error > .ace_fold-widget.ace_closed:hover, body.awsui-polaris-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:hover, body.awsui-dark-mode .code-editor .ace_editor .ace_gutter-active-line.ace_warning > .ace_fold-widget.ace_closed:hover {
|
|
24351
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%230f141a' fill='%230f141a' stroke-width='2' stroke-linejoin='round'%3E %3Cpath d='M5 4v8l6-4-6-4z'/%3E %3C/svg%3E");
|
|
24352
|
+
}
|
|
24353
|
+
}
|
|
24354
|
+
}
|
|
24355
|
+
|
|
23894
24356
|
.pane {
|
|
23895
24357
|
display: flex;
|
|
23896
24358
|
position: relative;
|
|
@@ -27916,6 +28378,16 @@ var appLayoutTogglesStyles = css171`
|
|
|
27916
28378
|
// src/internal/styles/app-layout-visual-refresh.ts
|
|
27917
28379
|
import { css as css172 } from "lit";
|
|
27918
28380
|
var appLayoutVisualRefreshStyles = css172`
|
|
28381
|
+
div.app-layout-visual-refresh--background {
|
|
28382
|
+
display: contents;
|
|
28383
|
+
}
|
|
28384
|
+
div.app-layout-visual-refresh--background > .app-layout-visual-refresh--scrolling-background {
|
|
28385
|
+
background-color: var(--color-background-layout-main-5ilwcb, #ffffff);
|
|
28386
|
+
color: var(--color-text-body-default-vvtq8u, #0f141a);
|
|
28387
|
+
grid-column: 1/span 5;
|
|
28388
|
+
grid-row: 1/9;
|
|
28389
|
+
}
|
|
28390
|
+
|
|
27919
28391
|
.app-layout-visual-refresh--breadcrumbs {
|
|
27920
28392
|
background-color: var(--color-background-layout-main-5ilwcb, #ffffff);
|
|
27921
28393
|
grid-area: breadcrumbs;
|
|
@@ -27945,15 +28417,411 @@ var appLayoutVisualRefreshStyles = css172`
|
|
|
27945
28417
|
position: fixed;
|
|
27946
28418
|
inset-inline-end: 0;
|
|
27947
28419
|
z-index: 1001;
|
|
27948
|
-
|
|
27949
|
-
|
|
27950
|
-
|
|
28420
|
+
/*
|
|
28421
|
+
When disableBodyScroll is true the offsetTop will be relative to the
|
|
28422
|
+
app layout and not the body. However, the drawer position changes
|
|
28423
|
+
to fixed in mobile viewports. The top value needs to include the
|
|
28424
|
+
header because fixed position switches the top value so it is now
|
|
28425
|
+
relative to the body.
|
|
28426
|
+
*/
|
|
28427
|
+
}
|
|
28428
|
+
.app-layout-visual-refresh--drawers-container.app-layout-visual-refresh--disable-body-scroll {
|
|
28429
|
+
inset-block-start: var(--awsui-header-height-6b9ypa);
|
|
28430
|
+
}
|
|
27951
28431
|
}
|
|
27952
28432
|
|
|
27953
|
-
.app-layout-visual-refresh--container {
|
|
28433
|
+
.app-layout-visual-refresh--drawers-desktop-triggers-container {
|
|
28434
|
+
font-size: var(--font-size-body-m-a7nh2n, 14px);
|
|
28435
|
+
line-height: var(--line-height-body-m-2mh3ke, 20px);
|
|
28436
|
+
color: var(--color-text-body-default-vvtq8u, #0f141a);
|
|
28437
|
+
font-weight: 400;
|
|
28438
|
+
font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
|
|
28439
|
+
-webkit-font-smoothing: auto;
|
|
28440
|
+
-moz-osx-font-smoothing: auto;
|
|
28441
|
+
background-color: transparent;
|
|
28442
|
+
box-sizing: border-box;
|
|
28443
|
+
block-size: 100%;
|
|
28444
|
+
overflow-y: hidden;
|
|
28445
|
+
overflow-x: hidden;
|
|
28446
|
+
|
|
28447
|
+
overscroll-behavior-y: contain;
|
|
28448
|
+
}
|
|
28449
|
+
.app-layout-visual-refresh--drawers-desktop-triggers-container:not(.app-layout-visual-refresh--has-multiple-triggers).app-layout-visual-refresh--has-open-drawer {
|
|
28450
|
+
inline-size: 0;
|
|
28451
|
+
}
|
|
28452
|
+
.app-layout-visual-refresh--drawers-desktop-triggers-container.app-layout-visual-refresh--has-multiple-triggers.app-layout-visual-refresh--has-open-drawer {
|
|
28453
|
+
background-color: var(--color-background-container-content-6u8rvp, #ffffff);
|
|
28454
|
+
}
|
|
28455
|
+
.app-layout-visual-refresh--drawers-desktop-triggers-container:not(.app-layout-visual-refresh--has-multiple-triggers):not(.app-layout-visual-refresh--has-open-drawer) {
|
|
28456
|
+
inline-size: calc(var(--space-layout-toggle-padding-chwlhz, 12px) * 2 + var(--space-layout-toggle-diameter-j2qffw, 36px));
|
|
28457
|
+
}
|
|
28458
|
+
|
|
28459
|
+
.app-layout-visual-refresh--drawers-mobile-triggers-container {
|
|
28460
|
+
display: flex;
|
|
28461
|
+
justify-content: flex-end;
|
|
28462
|
+
}
|
|
28463
|
+
|
|
28464
|
+
.app-layout-visual-refresh--drawers-trigger-content {
|
|
28465
|
+
align-items: center;
|
|
28466
|
+
display: flex;
|
|
28467
|
+
flex-direction: column;
|
|
28468
|
+
gap: var(--space-xs-ymlm0b, 8px);
|
|
28469
|
+
padding-block-start: var(--space-scaled-s-8ozaad, 12px);
|
|
28470
|
+
inline-size: calc(var(--space-layout-toggle-padding-chwlhz, 12px) * 2 + var(--space-layout-toggle-diameter-j2qffw, 36px));
|
|
28471
|
+
}
|
|
28472
|
+
.app-layout-visual-refresh--drawers-trigger-content:not(.app-layout-visual-refresh--has-multiple-triggers).app-layout-visual-refresh--has-open-drawer {
|
|
28473
|
+
opacity: 0;
|
|
28474
|
+
}
|
|
28475
|
+
.app-layout-visual-refresh--drawers-trigger-content:not(.app-layout-visual-refresh--has-multiple-triggers):not(.app-layout-visual-refresh--has-open-drawer) {
|
|
28476
|
+
opacity: 1;
|
|
28477
|
+
}
|
|
28478
|
+
.app-layout-visual-refresh--drawers-trigger-content > .app-layout-visual-refresh--drawers-trigger-overflow {
|
|
28479
|
+
padding-block: 0;
|
|
28480
|
+
padding-inline: 1px;
|
|
28481
|
+
display: flex;
|
|
28482
|
+
align-items: center;
|
|
28483
|
+
justify-content: center;
|
|
28484
|
+
}
|
|
28485
|
+
|
|
28486
|
+
@media (max-width: 688px) {
|
|
28487
|
+
.app-layout-visual-refresh--drawers-trigger {
|
|
28488
|
+
inline-size: 40px;
|
|
28489
|
+
display: flex;
|
|
28490
|
+
justify-content: center;
|
|
28491
|
+
}
|
|
28492
|
+
}
|
|
28493
|
+
|
|
28494
|
+
.app-layout-visual-refresh--drawer {
|
|
28495
|
+
--awsui-drawer-size-6b9ypa: 290px;
|
|
28496
|
+
background-color: var(--color-background-container-content-6u8rvp, #ffffff);
|
|
28497
|
+
border-color: transparent;
|
|
28498
|
+
display: grid;
|
|
28499
|
+
grid-template-columns: var(--space-m-dsumyt, 16px) 1fr;
|
|
28500
|
+
flex-shrink: 0;
|
|
28501
|
+
block-size: 100%;
|
|
28502
|
+
overflow-y: hidden;
|
|
28503
|
+
overflow-x: hidden;
|
|
28504
|
+
|
|
28505
|
+
overscroll-behavior-y: contain;
|
|
28506
|
+
pointer-events: auto;
|
|
28507
|
+
word-wrap: break-word;
|
|
28508
|
+
}
|
|
28509
|
+
.app-layout-visual-refresh--drawer > .app-layout-visual-refresh--drawer-content-container {
|
|
28510
|
+
grid-column: 1/span 2;
|
|
28511
|
+
grid-row: 1;
|
|
28512
|
+
inline-size: var(--awsui-drawer-size-6b9ypa);
|
|
28513
|
+
display: grid;
|
|
28514
|
+
grid-template-columns: var(--space-m-dsumyt, 16px) 1fr auto var(--space-m-dsumyt, 16px);
|
|
28515
|
+
grid-template-rows: var(--size-vertical-panel-icon-offset-z959cw, 15px) auto 1fr;
|
|
28516
|
+
overflow-y: auto;
|
|
28517
|
+
}
|
|
28518
|
+
.app-layout-visual-refresh--drawer > .app-layout-visual-refresh--drawer-content-container > .app-layout-visual-refresh--drawer-close-button {
|
|
28519
|
+
grid-column: 3;
|
|
28520
|
+
grid-row: 2;
|
|
28521
|
+
z-index: 1;
|
|
28522
|
+
}
|
|
28523
|
+
.app-layout-visual-refresh--drawer > .app-layout-visual-refresh--drawer-content-container > .app-layout-visual-refresh--drawer-content {
|
|
28524
|
+
grid-column: 1/span 4;
|
|
28525
|
+
block-size: var(--awsui-content-height-6b9ypa);
|
|
28526
|
+
}
|
|
28527
|
+
.app-layout-visual-refresh--drawer > .app-layout-visual-refresh--drawer-content-container > .app-layout-visual-refresh--drawer-content.app-layout-visual-refresh--drawer-content-hidden {
|
|
28528
|
+
display: none;
|
|
28529
|
+
}
|
|
28530
|
+
.app-layout-visual-refresh--drawer > .app-layout-visual-refresh--drawer-slider {
|
|
28531
|
+
grid-column: 1;
|
|
28532
|
+
grid-row: 1;
|
|
28533
|
+
block-size: 100%;
|
|
28534
|
+
display: flex;
|
|
28535
|
+
align-items: center;
|
|
28536
|
+
z-index: 850;
|
|
28537
|
+
}
|
|
28538
|
+
.app-layout-visual-refresh--drawer:not(.app-layout-visual-refresh--is-drawer-open) {
|
|
28539
|
+
opacity: 0;
|
|
28540
|
+
inline-size: 0;
|
|
28541
|
+
}
|
|
28542
|
+
.app-layout-visual-refresh--drawer.app-layout-visual-refresh--is-drawer-open {
|
|
28543
|
+
border-inline-end: var(--border-divider-section-width-uwo8my, 1px) solid var(--color-border-divider-default-nr68jt, #c6c6cd);
|
|
28544
|
+
border-inline-start: solid var(--border-divider-section-width-uwo8my, 1px) var(--color-border-divider-default-nr68jt, #c6c6cd);
|
|
28545
|
+
opacity: 1;
|
|
28546
|
+
inline-size: var(--awsui-drawer-size-6b9ypa);
|
|
28547
|
+
}
|
|
28548
|
+
@media (min-width: 2541px) {
|
|
28549
|
+
.app-layout-visual-refresh--drawer.app-layout-visual-refresh--is-drawer-open {
|
|
28550
|
+
--awsui-drawer-size-6b9ypa: 320px;
|
|
28551
|
+
}
|
|
28552
|
+
}
|
|
28553
|
+
@media (max-width: 688px) {
|
|
28554
|
+
.app-layout-visual-refresh--drawer.app-layout-visual-refresh--is-drawer-open {
|
|
28555
|
+
--awsui-drawer-size-6b9ypa: 100vw;
|
|
28556
|
+
inline-size: 100vw;
|
|
28557
|
+
}
|
|
28558
|
+
}
|
|
28559
|
+
|
|
28560
|
+
header.app-layout-visual-refresh--content {
|
|
28561
|
+
grid-area: header;
|
|
28562
|
+
}
|
|
28563
|
+
|
|
28564
|
+
/*
|
|
28565
|
+
The first and last column definitions have two responsibilities.
|
|
28566
|
+
If Navigation and/or Tools exist then that will determine the width of
|
|
28567
|
+
the first and last columns, respectively, and the content in these drawers
|
|
28568
|
+
will create horizontal space from the center column content. However, if the
|
|
28569
|
+
navigationHide and/or toolsHide properties have been set then the first
|
|
28570
|
+
and last column width will default to the minimum content gap properties to
|
|
28571
|
+
create the necessary visual space around the main content.
|
|
28572
|
+
|
|
28573
|
+
The minimum content width property is set to zero and applied under all
|
|
28574
|
+
circumstances regardless of whether the minContentWidth property is
|
|
28575
|
+
explicitly set in script.
|
|
28576
|
+
*/
|
|
28577
|
+
.app-layout-visual-refresh--layout {
|
|
28578
|
+
--awsui-breadcrumbs-gap-6b9ypa: 0px;
|
|
28579
|
+
--awsui-content-gap-left-6b9ypa: 0px;
|
|
28580
|
+
--awsui-content-gap-right-6b9ypa: 0px;
|
|
28581
|
+
--awsui-content-height-6b9ypa: calc(100vh - var(--awsui-header-height-6b9ypa) - var(--awsui-footer-height-6b9ypa));
|
|
28582
|
+
--awsui-default-max-content-width-6b9ypa: 1280px;
|
|
28583
|
+
--awsui-default-min-content-width-6b9ypa: 0px;
|
|
28584
|
+
--awsui-footer-height-6b9ypa: 0px;
|
|
28585
|
+
--awsui-header-gap-6b9ypa: 0px;
|
|
28586
|
+
--awsui-header-height-6b9ypa: 0px;
|
|
28587
|
+
--awsui-layout-width-6b9ypa: 0px;
|
|
28588
|
+
--awsui-main-gap-6b9ypa: 0px;
|
|
28589
|
+
--awsui-main-offset-left-6b9ypa: 0px;
|
|
28590
|
+
--awsui-main-template-rows-6b9ypa: 1fr;
|
|
28591
|
+
--awsui-max-content-width-6b9ypa: 0px;
|
|
28592
|
+
--awsui-min-content-width-6b9ypa: 280px;
|
|
28593
|
+
--awsui-mobile-bar-height-6b9ypa: calc(2 * var(--space-m-dsumyt, 16px) + var(--space-scaled-xs-xwoogq, 8px));
|
|
28594
|
+
--awsui-notifications-height-6b9ypa: 0px;
|
|
28595
|
+
--awsui-offset-top-6b9ypa: var(--awsui-header-height-6b9ypa);
|
|
28596
|
+
--awsui-overlap-height-6b9ypa: var(--space-dark-header-overlap-distance-ld45ap, 36px);
|
|
28597
|
+
--awsui-toggles-left-width-6b9ypa: 0px;
|
|
28598
|
+
--awsui-toggles-right-width-6b9ypa: 0px;
|
|
28599
|
+
background-color: var(--color-background-layout-main-5ilwcb, #ffffff);
|
|
28600
|
+
color: var(--color-text-body-default-vvtq8u, #0f141a);
|
|
28601
|
+
display: grid;
|
|
28602
|
+
grid-template-areas: ". . mobileToolbar . ." ". . notifications . ." ". . breadcrumbsGap . ." ". . breadcrumbs . ." ". . headerGap . ." ". . header . ." ". . mainGap . ." ". . main . ." ". . main . .";
|
|
28603
|
+
grid-template-columns: min-content minmax(var(--awsui-content-gap-left-6b9ypa), 1fr) minmax(var(--awsui-default-min-content-width-6b9ypa), var(--awsui-default-max-content-width-6b9ypa)) minmax(var(--awsui-content-gap-right-6b9ypa), 1fr) min-content;
|
|
28604
|
+
grid-template-rows: auto auto var(--awsui-breadcrumbs-gap-6b9ypa) auto var(--awsui-header-gap-6b9ypa) auto var(--awsui-main-gap-6b9ypa) var(--awsui-overlap-height-6b9ypa) var(--awsui-main-template-rows-6b9ypa);
|
|
28605
|
+
min-block-size: var(--awsui-content-height-6b9ypa);
|
|
28606
|
+
position: relative;
|
|
28607
|
+
/*
|
|
28608
|
+
Add unified max-width for AppLayout content based on breakpoints. Only use the max content
|
|
28609
|
+
width custom property for the middle column definition if the maxContentWidth property
|
|
28610
|
+
has been explicitly set to a non-zero value and subsequently set the has-max-content-width
|
|
28611
|
+
data attribute to true.
|
|
28612
|
+
*/
|
|
28613
|
+
/*
|
|
28614
|
+
Only use the max content width custom property for the middle column definition
|
|
28615
|
+
if the maxContentWidth property has been explicitly set to a non-zero value and
|
|
28616
|
+
subsequently set the has-max-content-width data attribute to true.
|
|
28617
|
+
*/
|
|
28618
|
+
/*
|
|
28619
|
+
Warning! This is a hack! We are implementing a short term fix to prevent the
|
|
28620
|
+
tools drawer from potentially getting pushed off screen. Currently there is no
|
|
28621
|
+
protection against a navigationWidth, minContentWidth, and toolsWidth that are
|
|
28622
|
+
in excess ove the available space in the viewport. To accomodate this we remove
|
|
28623
|
+
the minContentWidth and set it to zero in small viewports and below until the
|
|
28624
|
+
isMobile breakpoint sets the drawers to overlay at 100vw.
|
|
28625
|
+
*/
|
|
28626
|
+
/*
|
|
28627
|
+
In desktop viewports the content gap property for the left and right
|
|
28628
|
+
columns should override the default of zero if the navigationHide
|
|
28629
|
+
or toolsHide property is set. This ensures adequate horizontal space
|
|
28630
|
+
for the center column from the edges of the viewport when there is
|
|
28631
|
+
not left or right content.
|
|
28632
|
+
|
|
28633
|
+
Warning! If these design tokens change it will adversely impact the
|
|
28634
|
+
calculation used to determine the Split Panel maximum width in the
|
|
28635
|
+
handleSplitPanelMaxWidth function in the context.
|
|
28636
|
+
*/
|
|
28637
|
+
/*
|
|
28638
|
+
In mobile viewports the Navigation and Tools drawers are hidden
|
|
28639
|
+
and triggered by the MobileToolbar which then take up the entire viewport.
|
|
28640
|
+
The center column needs permanent space from the horizontal viewport
|
|
28641
|
+
edges regardless of whether or not there is a Navigation or Tools.
|
|
28642
|
+
*/
|
|
28643
|
+
/*
|
|
28644
|
+
Override the desktop gap values set above for the Notifications, Header, and Main
|
|
28645
|
+
components for mobile viewports.
|
|
28646
|
+
*/
|
|
28647
|
+
}
|
|
28648
|
+
@media (min-width: 1401px) {
|
|
28649
|
+
.app-layout-visual-refresh--layout:not(.app-layout-visual-refresh--has-max-content-width) {
|
|
28650
|
+
--awsui-default-max-content-width-6b9ypa: 1280px;
|
|
28651
|
+
}
|
|
28652
|
+
}
|
|
28653
|
+
@media (min-width: 1921px) {
|
|
28654
|
+
.app-layout-visual-refresh--layout:not(.app-layout-visual-refresh--has-max-content-width) {
|
|
28655
|
+
--awsui-default-max-content-width-6b9ypa: 1440px;
|
|
28656
|
+
}
|
|
28657
|
+
}
|
|
28658
|
+
@media (min-width: 2541px) {
|
|
28659
|
+
.app-layout-visual-refresh--layout:not(.app-layout-visual-refresh--has-max-content-width) {
|
|
28660
|
+
--awsui-default-max-content-width-6b9ypa: 1620px;
|
|
28661
|
+
}
|
|
28662
|
+
}
|
|
28663
|
+
@media (min-width: 1401px) {
|
|
28664
|
+
.app-layout-visual-refresh--layout:not(.app-layout-visual-refresh--has-max-content-width).app-layout-visual-refresh--content-type-dashboard {
|
|
28665
|
+
--awsui-default-max-content-width-6b9ypa: 1280px;
|
|
28666
|
+
}
|
|
28667
|
+
}
|
|
28668
|
+
@media (min-width: 1921px) {
|
|
28669
|
+
.app-layout-visual-refresh--layout:not(.app-layout-visual-refresh--has-max-content-width).app-layout-visual-refresh--content-type-dashboard {
|
|
28670
|
+
--awsui-default-max-content-width-6b9ypa: 1620px;
|
|
28671
|
+
}
|
|
28672
|
+
}
|
|
28673
|
+
@media (min-width: 2541px) {
|
|
28674
|
+
.app-layout-visual-refresh--layout:not(.app-layout-visual-refresh--has-max-content-width).app-layout-visual-refresh--content-type-dashboard {
|
|
28675
|
+
--awsui-default-max-content-width-6b9ypa: 2160px;
|
|
28676
|
+
}
|
|
28677
|
+
}
|
|
28678
|
+
.app-layout-visual-refresh--layout:not(.app-layout-visual-refresh--has-max-content-width).app-layout-visual-refresh--content-type-table, .app-layout-visual-refresh--layout:not(.app-layout-visual-refresh--has-max-content-width).app-layout-visual-refresh--content-type-cards {
|
|
28679
|
+
--awsui-default-max-content-width-6b9ypa: 100%;
|
|
28680
|
+
}
|
|
28681
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--has-max-content-width {
|
|
28682
|
+
--awsui-default-max-content-width-6b9ypa: var(--awsui-max-content-width-6b9ypa);
|
|
28683
|
+
}
|
|
28684
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--is-overlap-disabled {
|
|
28685
|
+
--awsui-overlap-height-6b9ypa: 0;
|
|
28686
|
+
}
|
|
28687
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--is-hide-mobile-toolbar {
|
|
28688
|
+
--awsui-mobile-bar-height-6b9ypa: 0px;
|
|
28689
|
+
}
|
|
28690
|
+
@media (min-width: 993px) {
|
|
28691
|
+
.app-layout-visual-refresh--layout {
|
|
28692
|
+
--awsui-default-min-content-width-6b9ypa: var(--awsui-min-content-width-6b9ypa, 280px);
|
|
28693
|
+
}
|
|
28694
|
+
}
|
|
28695
|
+
@media (max-width: 992px) {
|
|
28696
|
+
.app-layout-visual-refresh--layout {
|
|
28697
|
+
--awsui-default-min-content-width-6b9ypa: 0px;
|
|
28698
|
+
}
|
|
28699
|
+
}
|
|
28700
|
+
@media (min-width: 689px) {
|
|
28701
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--has-content-gap-left {
|
|
28702
|
+
--awsui-content-gap-left-6b9ypa: var(--space-layout-content-horizontal-buc0zz, 24px);
|
|
28703
|
+
}
|
|
28704
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--has-content-gap-right {
|
|
28705
|
+
--awsui-content-gap-right-6b9ypa: var(--space-layout-content-horizontal-buc0zz, 24px);
|
|
28706
|
+
}
|
|
28707
|
+
}
|
|
28708
|
+
@media (max-width: 688px) {
|
|
28709
|
+
.app-layout-visual-refresh--layout {
|
|
28710
|
+
--awsui-content-gap-left-6b9ypa: var(--space-l-2ud1p3, 20px);
|
|
28711
|
+
--awsui-content-gap-right-6b9ypa: var(--space-l-2ud1p3, 20px);
|
|
28712
|
+
}
|
|
28713
|
+
}
|
|
28714
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--has-breadcrumbs {
|
|
28715
|
+
--awsui-breadcrumbs-gap-6b9ypa: var(--space-scaled-m-m892r9, 16px);
|
|
28716
|
+
}
|
|
28717
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--content-first-child-header, .app-layout-visual-refresh--layout.app-layout-visual-refresh--content-first-child-notifications:not(.app-layout-visual-refresh--has-breadcrumbs).app-layout-visual-refresh--has-header {
|
|
28718
|
+
--awsui-header-gap-6b9ypa: var(--space-scaled-xs-xwoogq, 8px);
|
|
28719
|
+
}
|
|
28720
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--has-breadcrumbs.app-layout-visual-refresh--has-header {
|
|
28721
|
+
--awsui-header-gap-6b9ypa: var(--space-scaled-xs-xwoogq, 8px);
|
|
28722
|
+
}
|
|
28723
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--content-first-child-notifications:not(.app-layout-visual-refresh--has-breadcrumbs):not(.app-layout-visual-refresh--has-header) {
|
|
28724
|
+
--awsui-main-gap-6b9ypa: var(--space-xs-ymlm0b, 8px);
|
|
28725
|
+
}
|
|
28726
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--has-breadcrumbs:not(.app-layout-visual-refresh--has-header) {
|
|
28727
|
+
--awsui-main-gap-6b9ypa: var(--space-scaled-xxs-pfm1nx, 4px);
|
|
28728
|
+
}
|
|
28729
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--has-header {
|
|
28730
|
+
--awsui-main-gap-6b9ypa: var(--space-content-header-padding-bottom-rvy5xz, 16px);
|
|
28731
|
+
}
|
|
28732
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--content-first-child-main:not(.app-layout-visual-refresh--disable-content-paddings) {
|
|
28733
|
+
--awsui-main-gap-6b9ypa: var(--space-scaled-s-8ozaad, 12px);
|
|
28734
|
+
}
|
|
28735
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--content-first-child-main.app-layout-visual-refresh--disable-content-paddings {
|
|
28736
|
+
--awsui-main-gap-6b9ypa: 0px;
|
|
28737
|
+
}
|
|
28738
|
+
@media (max-width: 688px) {
|
|
28739
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--content-first-child-header {
|
|
28740
|
+
--awsui-header-gap-6b9ypa: var(--space-scaled-s-8ozaad, 12px);
|
|
28741
|
+
}
|
|
28742
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--content-first-child-notifications:not(.app-layout-visual-refresh--has-breadcrumbs).app-layout-visual-refresh--has-header {
|
|
28743
|
+
--awsui-header-gap-6b9ypa: var(--space-scaled-s-8ozaad, 12px);
|
|
28744
|
+
}
|
|
28745
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--content-first-child-notifications:not(.app-layout-visual-refresh--has-breadcrumbs):not(.app-layout-visual-refresh--has-header), .app-layout-visual-refresh--layout.app-layout-visual-refresh--content-first-child-main:not(.app-layout-visual-refresh--disable-content-paddings) {
|
|
28746
|
+
--awsui-main-gap-6b9ypa: var(--space-scaled-s-8ozaad, 12px);
|
|
28747
|
+
}
|
|
28748
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--content-first-child-main.app-layout-visual-refresh--disable-content-paddings {
|
|
28749
|
+
--awsui-main-gap-6b9ypa: 0px;
|
|
28750
|
+
}
|
|
28751
|
+
}
|
|
28752
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--has-left-toggles-gutter {
|
|
28753
|
+
--awsui-toggles-left-width-6b9ypa: calc(var(--space-layout-toggle-padding-chwlhz, 12px) + 36px);
|
|
28754
|
+
}
|
|
28755
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--has-right-toggles-gutter {
|
|
28756
|
+
--awsui-toggles-right-width-6b9ypa: calc(var(--space-layout-toggle-padding-chwlhz, 12px) + 36px);
|
|
28757
|
+
}
|
|
28758
|
+
|
|
28759
|
+
/*
|
|
28760
|
+
If disableBodyScroll is true (very uncommon use case) then the AppLayout component
|
|
28761
|
+
and not the document body will be the scrollable element. This requires a fixed height
|
|
28762
|
+
instead of a minimum height with a vertical scroll policy. The offset top value for
|
|
28763
|
+
components with position: sticky (MobileToolbar, Navigation, Notifications, Tools) will be
|
|
28764
|
+
set zero since the AppLayout is nearest scrollable parent and any existing header does
|
|
28765
|
+
not matter. The offset top value for AppLayout contentMain children with
|
|
28766
|
+
position: sticky will be the value of the notifications height in addition to the
|
|
28767
|
+
notifications top margin and some additional vertical space for aesthetics.
|
|
28768
|
+
*/
|
|
28769
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--disable-body-scroll {
|
|
28770
|
+
--awsui-main-template-rows-6b9ypa: 1fr auto;
|
|
28771
|
+
--awsui-offset-top-6b9ypa: 0px;
|
|
28772
|
+
block-size: var(--awsui-content-height-6b9ypa);
|
|
28773
|
+
overflow-y: scroll;
|
|
28774
|
+
}
|
|
28775
|
+
.app-layout-visual-refresh--layout.app-layout-visual-refresh--disable-body-scroll.app-layout-visual-refresh--has-split-panel.app-layout-visual-refresh--split-panel-position-bottom {
|
|
28776
|
+
--awsui-main-template-rows-6b9ypa: repeat(2, auto);
|
|
28777
|
+
}
|
|
28778
|
+
|
|
28779
|
+
/*
|
|
28780
|
+
This CSS class is applied to the document body to prevent overflow scrolling
|
|
28781
|
+
when the navigation or tools drawers are open in responsive viewports.
|
|
28782
|
+
*/
|
|
28783
|
+
.app-layout-visual-refresh--block-body-scroll {
|
|
28784
|
+
overflow: hidden;
|
|
28785
|
+
}
|
|
28786
|
+
|
|
28787
|
+
.app-layout-visual-refresh--unfocusable,
|
|
28788
|
+
.app-layout-visual-refresh--unfocusable * {
|
|
28789
|
+
visibility: hidden !important;
|
|
28790
|
+
}
|
|
28791
|
+
|
|
28792
|
+
.app-layout-visual-refresh--container {
|
|
27954
28793
|
grid-area: main;
|
|
27955
28794
|
padding-block-end: var(--space-layout-content-bottom-zeb1g9, 40px);
|
|
27956
|
-
|
|
28795
|
+
/*
|
|
28796
|
+
If the split panel is in the bottom position additional padding will need to be
|
|
28797
|
+
added to the content area. This is to ensure that the user is able to scroll
|
|
28798
|
+
far enough to see all of the content that would otherwise be obscured by the
|
|
28799
|
+
sticky position of the split panel.
|
|
28800
|
+
*/
|
|
28801
|
+
/*
|
|
28802
|
+
If disableContentPaddings is enabled then the Main content has a different
|
|
28803
|
+
behavior inside the Layout grid. By default it will render across the entire
|
|
28804
|
+
grid column span. If the Navigation is open on the left, we increment the
|
|
28805
|
+
start column by one. If the Tools or Split Panel (in side position) is open
|
|
28806
|
+
on the right, we decrement the column end by one.
|
|
28807
|
+
*/
|
|
28808
|
+
}
|
|
28809
|
+
.app-layout-visual-refresh--container.app-layout-visual-refresh--has-split-panel.app-layout-visual-refresh--split-panel-position-bottom {
|
|
28810
|
+
padding-block-end: calc(var(--awsui-split-panel-height-6b9ypa) + var(--space-layout-content-bottom-zeb1g9, 40px));
|
|
28811
|
+
}
|
|
28812
|
+
.app-layout-visual-refresh--container.app-layout-visual-refresh--disable-content-paddings {
|
|
28813
|
+
grid-column: 1/6;
|
|
28814
|
+
padding-block: 0;
|
|
28815
|
+
padding-inline: 0;
|
|
28816
|
+
}
|
|
28817
|
+
@media (min-width: 689px) {
|
|
28818
|
+
.app-layout-visual-refresh--container.app-layout-visual-refresh--disable-content-paddings.app-layout-visual-refresh--is-navigation-open {
|
|
28819
|
+
grid-column-start: 2;
|
|
28820
|
+
}
|
|
28821
|
+
.app-layout-visual-refresh--container.app-layout-visual-refresh--disable-content-paddings.app-layout-visual-refresh--is-tools-open, .app-layout-visual-refresh--container.app-layout-visual-refresh--disable-content-paddings.app-layout-visual-refresh--is-split-panel-open.app-layout-visual-refresh--split-panel-position-side, .app-layout-visual-refresh--container.app-layout-visual-refresh--disable-content-paddings.app-layout-visual-refresh--has-active-drawer {
|
|
28822
|
+
grid-column-end: 5;
|
|
28823
|
+
}
|
|
28824
|
+
}
|
|
27957
28825
|
|
|
27958
28826
|
section.app-layout-visual-refresh--mobile-toolbar {
|
|
27959
28827
|
align-items: center;
|
|
@@ -27997,6 +28865,140 @@ section.app-layout-visual-refresh--mobile-toolbar > .app-layout-visual-refresh--
|
|
|
27997
28865
|
position: sticky;
|
|
27998
28866
|
inset-block-start: var(--awsui-offset-top-6b9ypa);
|
|
27999
28867
|
z-index: 830;
|
|
28868
|
+
/*
|
|
28869
|
+
The navigation and tools containers (that contain the toggle buttons)
|
|
28870
|
+
stretch the full height of the app layout. Normally, this wouldn't be an
|
|
28871
|
+
issue because they sit above the app layout's content padding.
|
|
28872
|
+
|
|
28873
|
+
But if disableContentPaddings is set to true and there are buttons on the
|
|
28874
|
+
left/right edges of the screen, they will be covered by the containers. So
|
|
28875
|
+
we need to disable pointer events in the container and re-enable them in
|
|
28876
|
+
the panels and toggle buttons.
|
|
28877
|
+
*/
|
|
28878
|
+
pointer-events: none;
|
|
28879
|
+
}
|
|
28880
|
+
@media (max-width: 688px) {
|
|
28881
|
+
.app-layout-visual-refresh--navigation-container {
|
|
28882
|
+
inset-inline-start: 0;
|
|
28883
|
+
position: fixed;
|
|
28884
|
+
z-index: 1001;
|
|
28885
|
+
/*
|
|
28886
|
+
When disableBodyScroll is true the offsetTop will be relative to the
|
|
28887
|
+
app layout and not the body. However, the drawer position changes
|
|
28888
|
+
to fixed in mobile viewports. The top value needs to include the
|
|
28889
|
+
header because fixed position switches the top value so it is now
|
|
28890
|
+
relative to the body.
|
|
28891
|
+
*/
|
|
28892
|
+
}
|
|
28893
|
+
.app-layout-visual-refresh--navigation-container.app-layout-visual-refresh--disable-body-scroll {
|
|
28894
|
+
inset-block-start: var(--awsui-header-height-6b9ypa);
|
|
28895
|
+
}
|
|
28896
|
+
}
|
|
28897
|
+
|
|
28898
|
+
nav.app-layout-visual-refresh--show-navigation {
|
|
28899
|
+
padding-block: var(--space-scaled-s-8ozaad, 12px);
|
|
28900
|
+
padding-inline: var(--space-layout-toggle-padding-chwlhz, 12px);
|
|
28901
|
+
/*
|
|
28902
|
+
Apply the animation only in desktop viewports because the MobileToolbar will
|
|
28903
|
+
take control in responsive viewports.
|
|
28904
|
+
*/
|
|
28905
|
+
}
|
|
28906
|
+
@keyframes awsui_showButtons_hyvsj_1u13u_1 {
|
|
28907
|
+
0% {
|
|
28908
|
+
opacity: 0;
|
|
28909
|
+
}
|
|
28910
|
+
100% {
|
|
28911
|
+
opacity: 1;
|
|
28912
|
+
}
|
|
28913
|
+
}
|
|
28914
|
+
nav.app-layout-visual-refresh--show-navigation.app-layout-visual-refresh--is-navigation-open {
|
|
28915
|
+
display: none;
|
|
28916
|
+
}
|
|
28917
|
+
@media (min-width: 689px) {
|
|
28918
|
+
nav.app-layout-visual-refresh--show-navigation:not(.app-layout-visual-refresh--is-navigation-open) {
|
|
28919
|
+
display: block;
|
|
28920
|
+
}
|
|
28921
|
+
nav.app-layout-visual-refresh--show-navigation:not(.app-layout-visual-refresh--is-navigation-open).app-layout-visual-refresh--animating {
|
|
28922
|
+
animation: awsui_showButtons_hyvsj_1u13u_1 var(--motion-duration-refresh-only-fast-zfibh6, 115ms);
|
|
28923
|
+
}
|
|
28924
|
+
}
|
|
28925
|
+
@media (min-width: 689px) and (prefers-reduced-motion: reduce) {
|
|
28926
|
+
nav.app-layout-visual-refresh--show-navigation:not(.app-layout-visual-refresh--is-navigation-open).app-layout-visual-refresh--animating {
|
|
28927
|
+
animation: none;
|
|
28928
|
+
transition: none;
|
|
28929
|
+
}
|
|
28930
|
+
}
|
|
28931
|
+
@media (min-width: 689px) {
|
|
28932
|
+
.awsui-motion-disabled nav.app-layout-visual-refresh--show-navigation:not(.app-layout-visual-refresh--is-navigation-open).app-layout-visual-refresh--animating, .awsui-mode-entering nav.app-layout-visual-refresh--show-navigation:not(.app-layout-visual-refresh--is-navigation-open).app-layout-visual-refresh--animating {
|
|
28933
|
+
animation: none;
|
|
28934
|
+
transition: none;
|
|
28935
|
+
}
|
|
28936
|
+
}
|
|
28937
|
+
|
|
28938
|
+
nav.app-layout-visual-refresh--navigation {
|
|
28939
|
+
background-color: var(--color-background-container-content-6u8rvp, #ffffff);
|
|
28940
|
+
inset-block-end: 0;
|
|
28941
|
+
block-size: 100%;
|
|
28942
|
+
overflow-x: hidden;
|
|
28943
|
+
overflow-y: auto;
|
|
28944
|
+
|
|
28945
|
+
overscroll-behavior-y: contain;
|
|
28946
|
+
position: relative;
|
|
28947
|
+
word-wrap: break-word;
|
|
28948
|
+
pointer-events: auto;
|
|
28949
|
+
border-inline-end: solid var(--border-divider-section-width-uwo8my, 1px) var(--color-border-divider-default-nr68jt, #c6c6cd);
|
|
28950
|
+
display: flex;
|
|
28951
|
+
flex-direction: column;
|
|
28952
|
+
/*
|
|
28953
|
+
A non-semantic node is added with a fixed width equal to the final Navigation
|
|
28954
|
+
width. This will create the visual appearance of horizontal movement and
|
|
28955
|
+
prevent unwanted text wrapping.
|
|
28956
|
+
*/
|
|
28957
|
+
}
|
|
28958
|
+
@keyframes awsui_openNavigation_hyvsj_1u13u_1 {
|
|
28959
|
+
from {
|
|
28960
|
+
opacity: 0;
|
|
28961
|
+
inline-size: calc(var(--space-layout-toggle-padding-chwlhz, 12px) * 2 + var(--space-layout-toggle-diameter-j2qffw, 36px));
|
|
28962
|
+
}
|
|
28963
|
+
to {
|
|
28964
|
+
opacity: 1;
|
|
28965
|
+
inline-size: var(--awsui-navigation-width-6b9ypa);
|
|
28966
|
+
}
|
|
28967
|
+
}
|
|
28968
|
+
nav.app-layout-visual-refresh--navigation:not(.app-layout-visual-refresh--is-navigation-open) {
|
|
28969
|
+
inline-size: 0;
|
|
28970
|
+
display: none;
|
|
28971
|
+
}
|
|
28972
|
+
nav.app-layout-visual-refresh--navigation.app-layout-visual-refresh--is-navigation-open.app-layout-visual-refresh--animating {
|
|
28973
|
+
animation: awsui_openNavigation_hyvsj_1u13u_1 var(--motion-duration-refresh-only-fast-zfibh6, 115ms);
|
|
28974
|
+
}
|
|
28975
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28976
|
+
nav.app-layout-visual-refresh--navigation.app-layout-visual-refresh--is-navigation-open.app-layout-visual-refresh--animating {
|
|
28977
|
+
animation: none;
|
|
28978
|
+
transition: none;
|
|
28979
|
+
}
|
|
28980
|
+
}
|
|
28981
|
+
.awsui-motion-disabled nav.app-layout-visual-refresh--navigation.app-layout-visual-refresh--is-navigation-open.app-layout-visual-refresh--animating, .awsui-mode-entering nav.app-layout-visual-refresh--navigation.app-layout-visual-refresh--is-navigation-open.app-layout-visual-refresh--animating {
|
|
28982
|
+
animation: none;
|
|
28983
|
+
transition: none;
|
|
28984
|
+
}
|
|
28985
|
+
nav.app-layout-visual-refresh--navigation > .app-layout-visual-refresh--animated-content {
|
|
28986
|
+
inline-size: var(--awsui-navigation-width-6b9ypa);
|
|
28987
|
+
}
|
|
28988
|
+
nav.app-layout-visual-refresh--navigation > .app-layout-visual-refresh--content-container {
|
|
28989
|
+
flex-grow: 1;
|
|
28990
|
+
}
|
|
28991
|
+
@media (max-width: 688px) {
|
|
28992
|
+
nav.app-layout-visual-refresh--navigation {
|
|
28993
|
+
--awsui-navigation-width-6b9ypa: 100vw;
|
|
28994
|
+
}
|
|
28995
|
+
}
|
|
28996
|
+
|
|
28997
|
+
.app-layout-visual-refresh--hide-navigation {
|
|
28998
|
+
position: absolute;
|
|
28999
|
+
inset-inline-end: var(--space-m-dsumyt, 16px);
|
|
29000
|
+
inset-block-start: var(--size-vertical-panel-icon-offset-z959cw, 15px);
|
|
29001
|
+
}
|
|
28000
29002
|
|
|
28001
29003
|
.app-layout-visual-refresh--notifications {
|
|
28002
29004
|
color: var(--color-text-body-default-vvtq8u, #0f141a);
|
|
@@ -28020,6 +29022,284 @@ section.app-layout-visual-refresh--mobile-toolbar > .app-layout-visual-refresh--
|
|
|
28020
29022
|
}
|
|
28021
29023
|
}
|
|
28022
29024
|
|
|
29025
|
+
/*
|
|
29026
|
+
When the Split Panel is in the bottom position it was share the same row
|
|
29027
|
+
as the content area. This row is defined as 1 fractional unit which will
|
|
29028
|
+
consume the remaining vertical space in the grid after the notifications
|
|
29029
|
+
and breadcrumbs.
|
|
29030
|
+
*/
|
|
29031
|
+
section.app-layout-visual-refresh--split-panel-bottom {
|
|
29032
|
+
/*
|
|
29033
|
+
The align self property will position the split panel at the bottom of the grid row.
|
|
29034
|
+
This could be off the viewport if the content area has enough content to be scrollable.
|
|
29035
|
+
*/
|
|
29036
|
+
align-self: end;
|
|
29037
|
+
inset-block-end: var(--awsui-footer-height-6b9ypa);
|
|
29038
|
+
display: none;
|
|
29039
|
+
grid-column: 1/6;
|
|
29040
|
+
grid-row: 9;
|
|
29041
|
+
block-size: auto;
|
|
29042
|
+
overflow-y: hidden;
|
|
29043
|
+
/*
|
|
29044
|
+
The position sticky will work in conjunction with the align self: end; property.
|
|
29045
|
+
If the grid row scrolls beyond the viewport, the sticky bottom position
|
|
29046
|
+
will lift it up above the footer so it is always visible.
|
|
29047
|
+
*/
|
|
29048
|
+
position: sticky;
|
|
29049
|
+
z-index: 840;
|
|
29050
|
+
/*
|
|
29051
|
+
Unlike the side position the Split Panel is persistent in the DOM
|
|
29052
|
+
when in the bottom position.
|
|
29053
|
+
*/
|
|
29054
|
+
/*
|
|
29055
|
+
Warning! This is a hack! The existing design token for the split panel
|
|
29056
|
+
shadow in the bottom position does not render in the refactored code.
|
|
29057
|
+
It appears to be related to the fact that the legacy split panel element
|
|
29058
|
+
has a height equal to the expanded height and a corresponding translation
|
|
29059
|
+
of the Y position so it is moved off the screen. This will need to be
|
|
29060
|
+
refactored with an adjustment to the split panel design token.
|
|
29061
|
+
*/
|
|
29062
|
+
/*
|
|
29063
|
+
When the data attribute changes indicating the Split Panel has been opened
|
|
29064
|
+
apply the animation to the height property.
|
|
29065
|
+
*/
|
|
29066
|
+
}
|
|
29067
|
+
@keyframes awsui_openSplitPanelBottom_hyvsj_1u13u_1 {
|
|
29068
|
+
from {
|
|
29069
|
+
block-size: var(--awsui-split-panel-reported-header-size-6b9ypa, 0);
|
|
29070
|
+
}
|
|
29071
|
+
to {
|
|
29072
|
+
block-size: var(--awsui-split-panel-reported-size-6b9ypa);
|
|
29073
|
+
}
|
|
29074
|
+
}
|
|
29075
|
+
section.app-layout-visual-refresh--split-panel-bottom.app-layout-visual-refresh--disable-body-scroll {
|
|
29076
|
+
inset-block-end: 0;
|
|
29077
|
+
}
|
|
29078
|
+
section.app-layout-visual-refresh--split-panel-bottom.app-layout-visual-refresh--is-navigation-open.app-layout-visual-refresh--position-bottom {
|
|
29079
|
+
grid-column-start: 2;
|
|
29080
|
+
}
|
|
29081
|
+
section.app-layout-visual-refresh--split-panel-bottom.app-layout-visual-refresh--has-open-drawer.app-layout-visual-refresh--position-bottom {
|
|
29082
|
+
grid-column-end: 5;
|
|
29083
|
+
}
|
|
29084
|
+
section.app-layout-visual-refresh--split-panel-bottom.app-layout-visual-refresh--position-bottom {
|
|
29085
|
+
display: block;
|
|
29086
|
+
}
|
|
29087
|
+
section.app-layout-visual-refresh--split-panel-bottom:not(.app-layout-visual-refresh--is-split-panel-open).app-layout-visual-refresh--position-bottom {
|
|
29088
|
+
box-shadow: rgba(0, 7, 22, 0.1) 0px -32px 32px -24px;
|
|
29089
|
+
}
|
|
29090
|
+
section.app-layout-visual-refresh--split-panel-bottom.app-layout-visual-refresh--is-split-panel-open.app-layout-visual-refresh--position-bottom {
|
|
29091
|
+
box-shadow: var(--shadow-split-bottom-vlyulf, 0px -36px 36px -36px rgba(0, 7, 22, 0.1));
|
|
29092
|
+
}
|
|
29093
|
+
section.app-layout-visual-refresh--split-panel-bottom.app-layout-visual-refresh--is-split-panel-open.app-layout-visual-refresh--position-bottom.app-layout-visual-refresh--animating {
|
|
29094
|
+
animation: awsui_openSplitPanelBottom_hyvsj_1u13u_1 var(--motion-duration-refresh-only-fast-zfibh6, 115ms);
|
|
29095
|
+
}
|
|
29096
|
+
@media (prefers-reduced-motion: reduce) {
|
|
29097
|
+
section.app-layout-visual-refresh--split-panel-bottom.app-layout-visual-refresh--is-split-panel-open.app-layout-visual-refresh--position-bottom.app-layout-visual-refresh--animating {
|
|
29098
|
+
animation: none;
|
|
29099
|
+
transition: none;
|
|
29100
|
+
}
|
|
29101
|
+
}
|
|
29102
|
+
.awsui-motion-disabled section.app-layout-visual-refresh--split-panel-bottom.app-layout-visual-refresh--is-split-panel-open.app-layout-visual-refresh--position-bottom.app-layout-visual-refresh--animating, .awsui-mode-entering section.app-layout-visual-refresh--split-panel-bottom.app-layout-visual-refresh--is-split-panel-open.app-layout-visual-refresh--position-bottom.app-layout-visual-refresh--animating {
|
|
29103
|
+
animation: none;
|
|
29104
|
+
transition: none;
|
|
29105
|
+
}
|
|
29106
|
+
|
|
29107
|
+
section.app-layout-visual-refresh--split-panel-side {
|
|
29108
|
+
block-size: 100%;
|
|
29109
|
+
overflow-x: hidden;
|
|
29110
|
+
pointer-events: auto;
|
|
29111
|
+
/*
|
|
29112
|
+
The min and max widths are applied when the Split Panel is opened otherwise
|
|
29113
|
+
it would not be possible to animate the width and the box shadow would
|
|
29114
|
+
be persistent in the DOM when closed.
|
|
29115
|
+
*/
|
|
29116
|
+
}
|
|
29117
|
+
section.app-layout-visual-refresh--split-panel-side:not(.app-layout-visual-refresh--is-split-panel-open), section.app-layout-visual-refresh--split-panel-side.app-layout-visual-refresh--position-bottom {
|
|
29118
|
+
inline-size: 0;
|
|
29119
|
+
}
|
|
29120
|
+
section.app-layout-visual-refresh--split-panel-side.app-layout-visual-refresh--is-split-panel-open.app-layout-visual-refresh--position-side {
|
|
29121
|
+
max-inline-size: var(--awsui-split-panel-max-width-6b9ypa, 280px);
|
|
29122
|
+
min-inline-size: var(--awsui-split-panel-min-width-6b9ypa, 280px);
|
|
29123
|
+
border-inline-start: solid var(--border-divider-section-width-uwo8my, 1px) var(--color-border-divider-default-nr68jt, #c6c6cd);
|
|
29124
|
+
}
|
|
29125
|
+
section.app-layout-visual-refresh--split-panel-side.app-layout-visual-refresh--is-split-panel-open.app-layout-visual-refresh--position-side:not(.app-layout-visual-refresh--has-open-drawer) {
|
|
29126
|
+
border-inline-end: var(--border-divider-section-width-uwo8my, 1px) solid var(--color-border-divider-panel-side-an0w07, #c6c6cd);
|
|
29127
|
+
}
|
|
29128
|
+
|
|
29129
|
+
/*
|
|
29130
|
+
The Tools component container has a max width calculation that depends on the
|
|
29131
|
+
state of the other siblings within the Layout grid definition. The layout width
|
|
29132
|
+
is set in the resize observer in the Layout component. The main offset left
|
|
29133
|
+
will calculate the distance from the start of the Layout component. The minimum
|
|
29134
|
+
content width has a default value that can be set directly with the minContentWidth
|
|
29135
|
+
property. The content gap right is computed in the Layout styles based on the
|
|
29136
|
+
viewport size and state of the Tools drawer.
|
|
29137
|
+
*/
|
|
29138
|
+
.app-layout-visual-refresh--tools-container {
|
|
29139
|
+
--awsui-tools-max-width-6b9ypa: calc(var(--awsui-layout-width-6b9ypa) - var(--awsui-main-offset-left-6b9ypa) - var(--awsui-default-min-content-width-6b9ypa) - var(--awsui-content-gap-right-6b9ypa));
|
|
29140
|
+
display: flex;
|
|
29141
|
+
grid-column: 5;
|
|
29142
|
+
grid-row: 1/span 9;
|
|
29143
|
+
block-size: var(--awsui-content-height-6b9ypa);
|
|
29144
|
+
max-inline-size: var(--awsui-tools-max-width-6b9ypa);
|
|
29145
|
+
position: sticky;
|
|
29146
|
+
inset-block-start: var(--awsui-offset-top-6b9ypa);
|
|
29147
|
+
z-index: 830;
|
|
29148
|
+
pointer-events: none;
|
|
29149
|
+
}
|
|
29150
|
+
@media (max-width: 688px) {
|
|
29151
|
+
.app-layout-visual-refresh--tools-container {
|
|
29152
|
+
--awsui-tools-max-width-6b9ypa: none;
|
|
29153
|
+
--awsui-tools-width-6b9ypa: auto;
|
|
29154
|
+
position: fixed;
|
|
29155
|
+
inset-inline-end: 0;
|
|
29156
|
+
z-index: 1001;
|
|
29157
|
+
/*
|
|
29158
|
+
When disableBodyScroll is true the offsetTop will be relative to the
|
|
29159
|
+
app layout and not the body. However, the drawer position changes
|
|
29160
|
+
to fixed in mobile viewports. The top value needs to include the
|
|
29161
|
+
header because fixed position switches the top value so it is now
|
|
29162
|
+
relative to the body.
|
|
29163
|
+
*/
|
|
29164
|
+
}
|
|
29165
|
+
.app-layout-visual-refresh--tools-container.app-layout-visual-refresh--disable-body-scroll {
|
|
29166
|
+
inset-block-start: var(--awsui-header-height-6b9ypa);
|
|
29167
|
+
}
|
|
29168
|
+
}
|
|
29169
|
+
|
|
29170
|
+
.app-layout-visual-refresh--tools {
|
|
29171
|
+
background-color: var(--color-background-container-content-6u8rvp, #ffffff);
|
|
29172
|
+
flex-shrink: 0;
|
|
29173
|
+
block-size: 100%;
|
|
29174
|
+
overflow-y: auto;
|
|
29175
|
+
overflow-x: hidden;
|
|
29176
|
+
|
|
29177
|
+
overscroll-behavior-y: contain;
|
|
29178
|
+
pointer-events: auto;
|
|
29179
|
+
position: relative;
|
|
29180
|
+
word-wrap: break-word;
|
|
29181
|
+
/*
|
|
29182
|
+
A non-semantic node is added with a fixed width equal to the final Tools
|
|
29183
|
+
width. This will create the visual appearance of horizontal movement and
|
|
29184
|
+
prevent unwanted text wrapping.
|
|
29185
|
+
*/
|
|
29186
|
+
/*
|
|
29187
|
+
A right border is needed if the Tools is open and the buttons are persistent in
|
|
29188
|
+
the DOM. This creates a visual vertical boundary between the Tools and the Buttons
|
|
29189
|
+
only when they are both present. This is the circumstance when there is a Split Panel
|
|
29190
|
+
in the side position.
|
|
29191
|
+
*/
|
|
29192
|
+
}
|
|
29193
|
+
@keyframes awsui_openTools_hyvsj_1u13u_1 {
|
|
29194
|
+
from {
|
|
29195
|
+
opacity: var(--awsui-tools-animation-starting-opacity-6b9ypa, 0);
|
|
29196
|
+
inline-size: calc(var(--space-layout-toggle-padding-chwlhz, 12px) * 2 + var(--space-layout-toggle-diameter-j2qffw, 36px));
|
|
29197
|
+
}
|
|
29198
|
+
to {
|
|
29199
|
+
opacity: 1;
|
|
29200
|
+
inline-size: var(--awsui-tools-width-6b9ypa);
|
|
29201
|
+
}
|
|
29202
|
+
}
|
|
29203
|
+
.app-layout-visual-refresh--tools:not(.app-layout-visual-refresh--is-tools-open) {
|
|
29204
|
+
inline-size: 0;
|
|
29205
|
+
display: none;
|
|
29206
|
+
}
|
|
29207
|
+
.app-layout-visual-refresh--tools.app-layout-visual-refresh--is-tools-open {
|
|
29208
|
+
border-inline-start: solid var(--border-divider-section-width-uwo8my, 1px) var(--color-border-divider-default-nr68jt, #c6c6cd);
|
|
29209
|
+
}
|
|
29210
|
+
.app-layout-visual-refresh--tools.app-layout-visual-refresh--is-tools-open.app-layout-visual-refresh--animating {
|
|
29211
|
+
animation: awsui_openTools_hyvsj_1u13u_1 var(--motion-duration-refresh-only-fast-zfibh6, 115ms);
|
|
29212
|
+
}
|
|
29213
|
+
@media (prefers-reduced-motion: reduce) {
|
|
29214
|
+
.app-layout-visual-refresh--tools.app-layout-visual-refresh--is-tools-open.app-layout-visual-refresh--animating {
|
|
29215
|
+
animation: none;
|
|
29216
|
+
transition: none;
|
|
29217
|
+
}
|
|
29218
|
+
}
|
|
29219
|
+
.awsui-motion-disabled .app-layout-visual-refresh--tools.app-layout-visual-refresh--is-tools-open.app-layout-visual-refresh--animating, .awsui-mode-entering .app-layout-visual-refresh--tools.app-layout-visual-refresh--is-tools-open.app-layout-visual-refresh--animating {
|
|
29220
|
+
animation: none;
|
|
29221
|
+
transition: none;
|
|
29222
|
+
}
|
|
29223
|
+
.app-layout-visual-refresh--tools > .app-layout-visual-refresh--animated-content {
|
|
29224
|
+
inline-size: var(--awsui-tools-width-6b9ypa);
|
|
29225
|
+
}
|
|
29226
|
+
@media (min-width: 689px) {
|
|
29227
|
+
.app-layout-visual-refresh--tools.app-layout-visual-refresh--is-tools-open.app-layout-visual-refresh--has-tools-form-persistence {
|
|
29228
|
+
border-inline-end: var(--border-divider-section-width-uwo8my, 1px) solid var(--color-border-divider-default-nr68jt, #c6c6cd);
|
|
29229
|
+
}
|
|
29230
|
+
}
|
|
29231
|
+
@media (max-width: 688px) {
|
|
29232
|
+
.app-layout-visual-refresh--tools {
|
|
29233
|
+
--awsui-tools-width-6b9ypa: 100vw;
|
|
29234
|
+
}
|
|
29235
|
+
}
|
|
29236
|
+
|
|
29237
|
+
.app-layout-visual-refresh--hide-tools {
|
|
29238
|
+
position: absolute;
|
|
29239
|
+
inset-inline-end: var(--space-m-dsumyt, 16px);
|
|
29240
|
+
inset-block-start: var(--size-vertical-panel-icon-offset-z959cw, 15px);
|
|
29241
|
+
z-index: 1;
|
|
29242
|
+
}
|
|
29243
|
+
|
|
29244
|
+
/*
|
|
29245
|
+
Warning! If these design tokens for padding change it will adversely impact
|
|
29246
|
+
the calculation used to determine the Split Panel maximum width in the
|
|
29247
|
+
handleSplitPanelMaxWidth function in the context.
|
|
29248
|
+
*/
|
|
29249
|
+
.app-layout-visual-refresh--show-tools {
|
|
29250
|
+
font-size: var(--font-size-body-m-a7nh2n, 14px);
|
|
29251
|
+
line-height: var(--line-height-body-m-2mh3ke, 20px);
|
|
29252
|
+
color: var(--color-text-body-default-vvtq8u, #0f141a);
|
|
29253
|
+
font-weight: 400;
|
|
29254
|
+
font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
|
|
29255
|
+
-webkit-font-smoothing: auto;
|
|
29256
|
+
-moz-osx-font-smoothing: auto;
|
|
29257
|
+
box-sizing: border-box;
|
|
29258
|
+
padding-block: var(--space-scaled-s-8ozaad, 12px);
|
|
29259
|
+
padding-inline: var(--space-layout-toggle-padding-chwlhz, 12px);
|
|
29260
|
+
/*
|
|
29261
|
+
Apply the animation only in desktop viewports because the MobileToolbar will
|
|
29262
|
+
take control in responsive viewports.
|
|
29263
|
+
*/
|
|
29264
|
+
}
|
|
29265
|
+
@keyframes awsui_showButtons_hyvsj_1u13u_1 {
|
|
29266
|
+
0% {
|
|
29267
|
+
opacity: 0;
|
|
29268
|
+
}
|
|
29269
|
+
100% {
|
|
29270
|
+
opacity: 1;
|
|
29271
|
+
}
|
|
29272
|
+
}
|
|
29273
|
+
.app-layout-visual-refresh--show-tools:not(.app-layout-visual-refresh--has-tools-form) {
|
|
29274
|
+
display: none;
|
|
29275
|
+
}
|
|
29276
|
+
@media (min-width: 689px) {
|
|
29277
|
+
.app-layout-visual-refresh--show-tools.app-layout-visual-refresh--has-tools-form {
|
|
29278
|
+
display: flex;
|
|
29279
|
+
flex-direction: column;
|
|
29280
|
+
gap: var(--space-xs-ymlm0b, 8px);
|
|
29281
|
+
}
|
|
29282
|
+
.app-layout-visual-refresh--show-tools.app-layout-visual-refresh--has-tools-form.app-layout-visual-refresh--animating {
|
|
29283
|
+
animation: awsui_showButtons_hyvsj_1u13u_1 var(--motion-duration-refresh-only-fast-zfibh6, 115ms);
|
|
29284
|
+
}
|
|
29285
|
+
}
|
|
29286
|
+
@media (min-width: 689px) and (prefers-reduced-motion: reduce) {
|
|
29287
|
+
.app-layout-visual-refresh--show-tools.app-layout-visual-refresh--has-tools-form.app-layout-visual-refresh--animating {
|
|
29288
|
+
animation: none;
|
|
29289
|
+
transition: none;
|
|
29290
|
+
}
|
|
29291
|
+
}
|
|
29292
|
+
@media (min-width: 689px) {
|
|
29293
|
+
.awsui-motion-disabled .app-layout-visual-refresh--show-tools.app-layout-visual-refresh--has-tools-form.app-layout-visual-refresh--animating, .awsui-mode-entering .app-layout-visual-refresh--show-tools.app-layout-visual-refresh--has-tools-form.app-layout-visual-refresh--animating {
|
|
29294
|
+
animation: none;
|
|
29295
|
+
transition: none;
|
|
29296
|
+
}
|
|
29297
|
+
.app-layout-visual-refresh--show-tools.app-layout-visual-refresh--has-tools-form-persistence {
|
|
29298
|
+
background-color: var(--color-background-container-content-6u8rvp, #ffffff);
|
|
29299
|
+
z-index: 1;
|
|
29300
|
+
}
|
|
29301
|
+
}
|
|
29302
|
+
|
|
28023
29303
|
.app-layout-visual-refresh--trigger-button-styles {
|
|
28024
29304
|
background: var(--color-background-layout-toggle-default-2hgjdu, #424650);
|
|
28025
29305
|
border-start-start-radius: 50%;
|