@carbon/styles 1.113.0-rc.0 → 1.114.0-rc.0
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/css/styles.css +2137 -294
- package/css/styles.min.css +1 -1
- package/index.scss +2 -1
- package/package.json +9 -9
- package/scss/__tests__/__snapshots__/border-radius-test.js.snap +24 -0
- package/scss/__tests__/__snapshots__/colors-test.js.snap +1 -1
- package/scss/__tests__/__snapshots__/config-test.js.snap +1 -1
- package/scss/__tests__/__snapshots__/spacing-test.js.snap +1 -1
- package/scss/__tests__/__snapshots__/type-test.js.snap +1 -1
- package/scss/__tests__/border-radius-test.js +31 -0
- package/scss/_border-radius.scss +10 -0
- package/scss/components/EditInPlace/_edit-in-place.scss +188 -0
- package/scss/components/EditInPlace/_index.scss +11 -0
- package/scss/components/FullPageError/_full-page-error.scss +91 -0
- package/scss/components/FullPageError/_index.scss +11 -0
- package/scss/components/InterstitialScreen/_index.scss +11 -0
- package/scss/components/InterstitialScreen/_interstitial-screen.scss +181 -0
- package/scss/components/OptionsTile/_index.scss +11 -0
- package/scss/components/OptionsTile/_options-tile.scss +240 -0
- package/scss/components/__tests__/button-test.js +1 -0
- package/scss/components/__tests__/data-table-test.js +43 -1
- package/scss/components/__tests__/file-uploader.js +30 -0
- package/scss/components/_index.scss +10 -1
- package/scss/components/big-number/_big-number.scss +164 -0
- package/scss/components/big-number/_index.scss +11 -0
- package/scss/components/button/_button.scss +3 -3
- package/scss/components/button/_vars.scss +10 -0
- package/scss/components/card/_card.scss +474 -0
- package/scss/components/card/_index.scss +11 -0
- package/scss/components/coachmark/_coachmark-beacon.scss +159 -0
- package/scss/components/coachmark/_coachmark-tagline.scss +142 -0
- package/scss/components/coachmark/_coachmark.scss +56 -0
- package/scss/components/coachmark/_index.scss +17 -0
- package/scss/components/data-table/_data-table.scss +140 -110
- package/scss/components/data-table/expandable/_data-table-expandable.scss +86 -59
- package/scss/components/data-table/skeleton/_data-table-skeleton.scss +10 -8
- package/scss/components/date-picker/_date-picker-next.scss +20 -20
- package/scss/components/file-uploader/_file-uploader.scss +6 -4
- package/scss/components/scroll-gradient/_index.scss +11 -0
- package/scss/components/scroll-gradient/_scroll-gradient.scss +107 -0
- package/scss/components/slider/_slider.scss +38 -15
- package/scss/components/tabs/_tabs.scss +11 -0
- package/scss/components/user-avatar/_index.scss +11 -0
- package/scss/components/user-avatar/_user-avatar.scss +160 -0
package/css/styles.css
CHANGED
|
@@ -7182,6 +7182,169 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
7182
7182
|
margin-inline-end: 0.25rem;
|
|
7183
7183
|
}
|
|
7184
7184
|
|
|
7185
|
+
.cds--big-number {
|
|
7186
|
+
margin: 0;
|
|
7187
|
+
}
|
|
7188
|
+
|
|
7189
|
+
.cds--big-number__label {
|
|
7190
|
+
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
7191
|
+
font-weight: var(--cds-label-01-font-weight, 400);
|
|
7192
|
+
line-height: var(--cds-label-01-line-height, 1.33333);
|
|
7193
|
+
letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
|
|
7194
|
+
display: block;
|
|
7195
|
+
margin: 0;
|
|
7196
|
+
color: var(--cds-text-secondary, #525252);
|
|
7197
|
+
}
|
|
7198
|
+
|
|
7199
|
+
.cds--big-number__value {
|
|
7200
|
+
font-size: var(--cds-heading-04-font-size, 1.75rem);
|
|
7201
|
+
font-weight: var(--cds-heading-04-font-weight, 400);
|
|
7202
|
+
line-height: var(--cds-heading-04-line-height, 1.28572);
|
|
7203
|
+
letter-spacing: var(--cds-heading-04-letter-spacing, 0);
|
|
7204
|
+
margin-block-end: 0;
|
|
7205
|
+
}
|
|
7206
|
+
|
|
7207
|
+
.cds--big-number__total {
|
|
7208
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
7209
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
7210
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
7211
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
7212
|
+
}
|
|
7213
|
+
|
|
7214
|
+
.cds--big-number__total,
|
|
7215
|
+
.cds--big-number__percentage-mark {
|
|
7216
|
+
margin-block: auto 0.25rem;
|
|
7217
|
+
}
|
|
7218
|
+
|
|
7219
|
+
.cds--big-number__info {
|
|
7220
|
+
padding-inline-start: 0.5rem;
|
|
7221
|
+
vertical-align: top;
|
|
7222
|
+
}
|
|
7223
|
+
|
|
7224
|
+
.cds--big-number__trend {
|
|
7225
|
+
margin-block-start: 0.5rem;
|
|
7226
|
+
vertical-align: top;
|
|
7227
|
+
}
|
|
7228
|
+
|
|
7229
|
+
.cds--big-number__row {
|
|
7230
|
+
display: flex;
|
|
7231
|
+
}
|
|
7232
|
+
|
|
7233
|
+
.cds--big-number__percentage {
|
|
7234
|
+
font-size: var(--cds-heading-04-font-size, 1.75rem);
|
|
7235
|
+
font-weight: var(--cds-heading-04-font-weight, 400);
|
|
7236
|
+
line-height: var(--cds-heading-04-line-height, 1.28572);
|
|
7237
|
+
letter-spacing: var(--cds-heading-04-letter-spacing, 0);
|
|
7238
|
+
}
|
|
7239
|
+
|
|
7240
|
+
.cds--big-number__percentage-mark {
|
|
7241
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
7242
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
7243
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
7244
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
7245
|
+
}
|
|
7246
|
+
|
|
7247
|
+
.cds--big-number__icon-button {
|
|
7248
|
+
margin-inline-start: 0.25rem;
|
|
7249
|
+
}
|
|
7250
|
+
|
|
7251
|
+
.cds--big-number--lg .cds--big-number__value,
|
|
7252
|
+
.cds--big-number--lg .cds--big-number__percentage {
|
|
7253
|
+
font-size: var(--cds-heading-06-font-size, 2.625rem);
|
|
7254
|
+
font-weight: var(--cds-heading-06-font-weight, 300);
|
|
7255
|
+
line-height: var(--cds-heading-06-line-height, 1.199);
|
|
7256
|
+
letter-spacing: var(--cds-heading-06-letter-spacing, 0);
|
|
7257
|
+
}
|
|
7258
|
+
|
|
7259
|
+
.cds--big-number--lg .cds--big-number__total,
|
|
7260
|
+
.cds--big-number--lg .cds--big-number__percentage-mark {
|
|
7261
|
+
font-size: var(--cds-heading-03-font-size, 1.25rem);
|
|
7262
|
+
font-weight: var(--cds-heading-03-font-weight, 400);
|
|
7263
|
+
line-height: var(--cds-heading-03-line-height, 1.4);
|
|
7264
|
+
letter-spacing: var(--cds-heading-03-letter-spacing, 0);
|
|
7265
|
+
}
|
|
7266
|
+
|
|
7267
|
+
.cds--big-number--xl .cds--big-number__label {
|
|
7268
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
7269
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
7270
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
7271
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
7272
|
+
}
|
|
7273
|
+
|
|
7274
|
+
.cds--big-number--xl .cds--big-number__value,
|
|
7275
|
+
.cds--big-number--xl .cds--big-number__percentage {
|
|
7276
|
+
font-size: var(--cds-heading-07-font-size, 3.375rem);
|
|
7277
|
+
font-weight: var(--cds-heading-07-font-weight, 300);
|
|
7278
|
+
line-height: var(--cds-heading-07-line-height, 1.19);
|
|
7279
|
+
letter-spacing: var(--cds-heading-07-letter-spacing, 0);
|
|
7280
|
+
}
|
|
7281
|
+
|
|
7282
|
+
.cds--big-number--xl .cds--big-number__total,
|
|
7283
|
+
.cds--big-number--xl .cds--big-number__percentage-mark {
|
|
7284
|
+
font-size: var(--cds-heading-04-font-size, 1.75rem);
|
|
7285
|
+
font-weight: var(--cds-heading-04-font-weight, 400);
|
|
7286
|
+
line-height: var(--cds-heading-04-line-height, 1.28572);
|
|
7287
|
+
letter-spacing: var(--cds-heading-04-letter-spacing, 0);
|
|
7288
|
+
}
|
|
7289
|
+
|
|
7290
|
+
.cds--big-number--xl .cds--big-number__trend {
|
|
7291
|
+
margin-block-start: 0.75rem;
|
|
7292
|
+
}
|
|
7293
|
+
|
|
7294
|
+
.cds--big-number .cds--big-number__tooltip-trigger {
|
|
7295
|
+
display: inline-flex;
|
|
7296
|
+
padding: 0;
|
|
7297
|
+
border: 0;
|
|
7298
|
+
background: none;
|
|
7299
|
+
color: inherit;
|
|
7300
|
+
cursor: pointer;
|
|
7301
|
+
vertical-align: top;
|
|
7302
|
+
}
|
|
7303
|
+
.cds--big-number .cds--big-number__tooltip-trigger:focus {
|
|
7304
|
+
outline: 1px solid var(--cds-focus, #0f62fe);
|
|
7305
|
+
}
|
|
7306
|
+
|
|
7307
|
+
.cds--big-number-skeleton {
|
|
7308
|
+
inline-size: 4rem;
|
|
7309
|
+
}
|
|
7310
|
+
|
|
7311
|
+
.cds--big-number-skeleton__label {
|
|
7312
|
+
block-size: 0.75rem;
|
|
7313
|
+
margin-block: 0 0.5rem;
|
|
7314
|
+
}
|
|
7315
|
+
|
|
7316
|
+
.cds--big-number-skeleton__value {
|
|
7317
|
+
margin: 0;
|
|
7318
|
+
/* stylelint-disable-next-line declaration-no-important */
|
|
7319
|
+
block-size: 2.5rem !important;
|
|
7320
|
+
}
|
|
7321
|
+
|
|
7322
|
+
.cds--big-number-skeleton--lg {
|
|
7323
|
+
inline-size: 5rem;
|
|
7324
|
+
}
|
|
7325
|
+
|
|
7326
|
+
.cds--big-number-skeleton--xl {
|
|
7327
|
+
inline-size: 6rem;
|
|
7328
|
+
}
|
|
7329
|
+
|
|
7330
|
+
.cds--big-number-skeleton.cds--big-number-skeleton--lg .cds--big-number-skeleton__label {
|
|
7331
|
+
block-size: 0.75rem;
|
|
7332
|
+
}
|
|
7333
|
+
|
|
7334
|
+
.cds--big-number-skeleton.cds--big-number-skeleton--lg .cds--big-number-skeleton__value {
|
|
7335
|
+
/* stylelint-disable-next-line declaration-no-important */
|
|
7336
|
+
block-size: 3rem !important;
|
|
7337
|
+
}
|
|
7338
|
+
|
|
7339
|
+
.cds--big-number-skeleton.cds--big-number-skeleton--xl .cds--big-number-skeleton__label {
|
|
7340
|
+
block-size: 0.75rem;
|
|
7341
|
+
}
|
|
7342
|
+
|
|
7343
|
+
.cds--big-number-skeleton.cds--big-number-skeleton--xl .cds--big-number-skeleton__value {
|
|
7344
|
+
/* stylelint-disable-next-line declaration-no-important */
|
|
7345
|
+
block-size: 4rem !important;
|
|
7346
|
+
}
|
|
7347
|
+
|
|
7185
7348
|
.cds--overflow-menu,
|
|
7186
7349
|
.cds--overflow-menu__trigger {
|
|
7187
7350
|
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
@@ -7807,135 +7970,794 @@ a.cds--overflow-menu-options__btn::before {
|
|
|
7807
7970
|
.cds--link *::after {
|
|
7808
7971
|
box-sizing: inherit;
|
|
7809
7972
|
}
|
|
7810
|
-
.cds--link {
|
|
7811
|
-
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
7812
|
-
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
7813
|
-
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
7814
|
-
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
7815
|
-
display: inline-flex;
|
|
7816
|
-
color: var(--cds-link-text-color, var(--cds-link-primary, #0f62fe));
|
|
7817
|
-
outline: none;
|
|
7818
|
-
text-decoration: none;
|
|
7819
|
-
transition: color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
7973
|
+
.cds--link {
|
|
7974
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
7975
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
7976
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
7977
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
7978
|
+
display: inline-flex;
|
|
7979
|
+
color: var(--cds-link-text-color, var(--cds-link-primary, #0f62fe));
|
|
7980
|
+
outline: none;
|
|
7981
|
+
text-decoration: none;
|
|
7982
|
+
transition: color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
7983
|
+
}
|
|
7984
|
+
.cds--link:hover {
|
|
7985
|
+
color: var(--cds-link-hover-text-color, var(--cds-link-primary-hover, #0043ce));
|
|
7986
|
+
text-decoration: underline;
|
|
7987
|
+
}
|
|
7988
|
+
.cds--link:active:not(.cds--link--disabled), .cds--link:active:visited, .cds--link:active:visited:hover {
|
|
7989
|
+
outline: 1px solid var(--cds-focus, #0f62fe);
|
|
7990
|
+
}
|
|
7991
|
+
@media screen and (prefers-contrast) {
|
|
7992
|
+
.cds--link:active:not(.cds--link--disabled), .cds--link:active:visited, .cds--link:active:visited:hover {
|
|
7993
|
+
outline-style: dotted;
|
|
7994
|
+
}
|
|
7995
|
+
}
|
|
7996
|
+
.cds--link:active:not(.cds--link--disabled), .cds--link:active:visited, .cds--link:active:visited:hover {
|
|
7997
|
+
color: var(--cds-link-text-color, var(--cds-link-primary, #0f62fe));
|
|
7998
|
+
outline-color: var(--cds-link-focus-text-color, var(--cds-focus, #0f62fe));
|
|
7999
|
+
text-decoration: underline;
|
|
8000
|
+
}
|
|
8001
|
+
.cds--link:focus:not(.cds--link--disabled) {
|
|
8002
|
+
outline: 1px solid var(--cds-focus, #0f62fe);
|
|
8003
|
+
}
|
|
8004
|
+
@media screen and (prefers-contrast) {
|
|
8005
|
+
.cds--link:focus:not(.cds--link--disabled) {
|
|
8006
|
+
outline-style: dotted;
|
|
8007
|
+
}
|
|
8008
|
+
}
|
|
8009
|
+
.cds--link:focus:not(.cds--link--disabled) {
|
|
8010
|
+
outline-color: var(--cds-link-focus-text-color, var(--cds-focus, #0f62fe));
|
|
8011
|
+
text-decoration: underline;
|
|
8012
|
+
}
|
|
8013
|
+
.cds--link:visited {
|
|
8014
|
+
color: var(--cds-link-text-color, var(--cds-link-primary, #0f62fe));
|
|
8015
|
+
}
|
|
8016
|
+
.cds--link:visited:hover {
|
|
8017
|
+
color: var(--cds-link-hover-text-color, var(--cds-link-primary-hover, #0043ce));
|
|
8018
|
+
}
|
|
8019
|
+
|
|
8020
|
+
.cds--link--disabled,
|
|
8021
|
+
.cds--link--disabled:hover {
|
|
8022
|
+
box-sizing: border-box;
|
|
8023
|
+
padding: 0;
|
|
8024
|
+
border: 0;
|
|
8025
|
+
margin: 0;
|
|
8026
|
+
font-family: inherit;
|
|
8027
|
+
font-size: 100%;
|
|
8028
|
+
vertical-align: baseline;
|
|
8029
|
+
}
|
|
8030
|
+
.cds--link--disabled *,
|
|
8031
|
+
.cds--link--disabled *::before,
|
|
8032
|
+
.cds--link--disabled *::after,
|
|
8033
|
+
.cds--link--disabled:hover *,
|
|
8034
|
+
.cds--link--disabled:hover *::before,
|
|
8035
|
+
.cds--link--disabled:hover *::after {
|
|
8036
|
+
box-sizing: inherit;
|
|
8037
|
+
}
|
|
8038
|
+
.cds--link--disabled,
|
|
8039
|
+
.cds--link--disabled:hover {
|
|
8040
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
8041
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
8042
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
8043
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
8044
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
8045
|
+
cursor: not-allowed;
|
|
8046
|
+
font-weight: 400;
|
|
8047
|
+
text-decoration: none;
|
|
8048
|
+
}
|
|
8049
|
+
|
|
8050
|
+
.cds--link.cds--link--visited:visited {
|
|
8051
|
+
color: var(--cds-link-visited-text-color, var(--cds-link-visited, #8a3ffc));
|
|
8052
|
+
}
|
|
8053
|
+
|
|
8054
|
+
.cds--link.cds--link--visited:visited:hover {
|
|
8055
|
+
color: var(--cds-link-hover-text-color, var(--cds-link-primary-hover, #0043ce));
|
|
8056
|
+
}
|
|
8057
|
+
|
|
8058
|
+
.cds--link.cds--link--inline {
|
|
8059
|
+
display: inline;
|
|
8060
|
+
text-decoration: underline;
|
|
8061
|
+
}
|
|
8062
|
+
|
|
8063
|
+
.cds--link--disabled.cds--link--inline {
|
|
8064
|
+
text-decoration: underline;
|
|
8065
|
+
}
|
|
8066
|
+
|
|
8067
|
+
.cds--link--sm,
|
|
8068
|
+
.cds--link--sm.cds--link--disabled:hover {
|
|
8069
|
+
font-size: var(--cds-helper-text-01-font-size, 0.75rem);
|
|
8070
|
+
line-height: var(--cds-helper-text-01-line-height, 1.33333);
|
|
8071
|
+
letter-spacing: var(--cds-helper-text-01-letter-spacing, 0.32px);
|
|
8072
|
+
}
|
|
8073
|
+
|
|
8074
|
+
.cds--link--lg,
|
|
8075
|
+
.cds--link--lg.cds--link--disabled:hover {
|
|
8076
|
+
font-size: var(--cds-body-compact-02-font-size, 1rem);
|
|
8077
|
+
font-weight: var(--cds-body-compact-02-font-weight, 400);
|
|
8078
|
+
line-height: var(--cds-body-compact-02-line-height, 1.375);
|
|
8079
|
+
letter-spacing: var(--cds-body-compact-02-letter-spacing, 0);
|
|
8080
|
+
}
|
|
8081
|
+
|
|
8082
|
+
.cds--link--icon {
|
|
8083
|
+
display: inline-block;
|
|
8084
|
+
}
|
|
8085
|
+
|
|
8086
|
+
.cds--link__icon {
|
|
8087
|
+
display: inline-flex;
|
|
8088
|
+
align-items: center;
|
|
8089
|
+
block-size: 1lh;
|
|
8090
|
+
line-height: inherit;
|
|
8091
|
+
margin-inline-start: 0.5rem;
|
|
8092
|
+
vertical-align: text-bottom;
|
|
8093
|
+
}
|
|
8094
|
+
|
|
8095
|
+
.cds--link--lg .cds--link__icon > svg {
|
|
8096
|
+
block-size: 1.25rem;
|
|
8097
|
+
inline-size: 1.25rem;
|
|
8098
|
+
}
|
|
8099
|
+
|
|
8100
|
+
.cds--link--lg .cds--link__icon {
|
|
8101
|
+
block-size: 1.25rem;
|
|
8102
|
+
}
|
|
8103
|
+
|
|
8104
|
+
.cds--card {
|
|
8105
|
+
position: relative;
|
|
8106
|
+
background-color: var(--cds-layer);
|
|
8107
|
+
color: var(--cds-text-primary, #161616);
|
|
8108
|
+
}
|
|
8109
|
+
|
|
8110
|
+
.cds--card--clickable {
|
|
8111
|
+
display: block;
|
|
8112
|
+
border: 1px solid var(--cds-border-tile-01, #c6c6c6);
|
|
8113
|
+
cursor: pointer;
|
|
8114
|
+
text-decoration: none;
|
|
8115
|
+
transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
8116
|
+
}
|
|
8117
|
+
.cds--card--clickable:hover {
|
|
8118
|
+
background-color: var(--cds-layer-hover);
|
|
8119
|
+
}
|
|
8120
|
+
.cds--card--clickable:focus {
|
|
8121
|
+
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
8122
|
+
outline-offset: -2px;
|
|
8123
|
+
}
|
|
8124
|
+
@media screen and (prefers-contrast) {
|
|
8125
|
+
.cds--card--clickable:focus {
|
|
8126
|
+
outline-style: dotted;
|
|
8127
|
+
}
|
|
8128
|
+
}
|
|
8129
|
+
.cds--card--clickable:focus {
|
|
8130
|
+
outline-offset: 0;
|
|
8131
|
+
}
|
|
8132
|
+
.cds--card--clickable:active {
|
|
8133
|
+
background-color: var(--cds-layer-active);
|
|
8134
|
+
}
|
|
8135
|
+
|
|
8136
|
+
.cds--card__clickable-footer {
|
|
8137
|
+
display: flex;
|
|
8138
|
+
align-items: center;
|
|
8139
|
+
justify-content: flex-end;
|
|
8140
|
+
padding: 1rem;
|
|
8141
|
+
color: var(--cds-icon-interactive, #0f62fe);
|
|
8142
|
+
}
|
|
8143
|
+
|
|
8144
|
+
.cds--card--disabled .cds--card__clickable-footer {
|
|
8145
|
+
color: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
8146
|
+
}
|
|
8147
|
+
|
|
8148
|
+
.cds--card--disabled {
|
|
8149
|
+
border-color: var(--cds-border-disabled, #c6c6c6);
|
|
8150
|
+
background-color: var(--cds-layer);
|
|
8151
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
8152
|
+
cursor: not-allowed;
|
|
8153
|
+
pointer-events: none;
|
|
8154
|
+
}
|
|
8155
|
+
|
|
8156
|
+
.cds--card__header {
|
|
8157
|
+
position: relative;
|
|
8158
|
+
display: grid;
|
|
8159
|
+
-moz-column-gap: 1rem;
|
|
8160
|
+
column-gap: 1rem;
|
|
8161
|
+
grid-template-columns: auto 1fr;
|
|
8162
|
+
row-gap: 0;
|
|
8163
|
+
}
|
|
8164
|
+
|
|
8165
|
+
.cds--card__body {
|
|
8166
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
8167
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
8168
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
8169
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
8170
|
+
padding-block: 1rem;
|
|
8171
|
+
padding-inline: 1rem;
|
|
8172
|
+
}
|
|
8173
|
+
|
|
8174
|
+
.cds--card__body--flush {
|
|
8175
|
+
padding: 0;
|
|
8176
|
+
}
|
|
8177
|
+
|
|
8178
|
+
.cds--card__footer {
|
|
8179
|
+
display: flex;
|
|
8180
|
+
align-items: center;
|
|
8181
|
+
padding: 1rem;
|
|
8182
|
+
}
|
|
8183
|
+
|
|
8184
|
+
.cds--card__footer:has(> .cds--card__action) {
|
|
8185
|
+
overflow: hidden;
|
|
8186
|
+
padding: 0;
|
|
8187
|
+
border-block-start: 1px solid var(--cds-border-subtle);
|
|
8188
|
+
gap: 1px;
|
|
8189
|
+
}
|
|
8190
|
+
|
|
8191
|
+
.cds--card__footer > .cds--card__action:not(:has(.cds--btn--icon-only)) {
|
|
8192
|
+
flex: 1 0;
|
|
8193
|
+
min-inline-size: 0;
|
|
8194
|
+
}
|
|
8195
|
+
.cds--card__footer > .cds--card__action:not(:has(.cds--btn--icon-only)) > .cds--btn,
|
|
8196
|
+
.cds--card__footer > .cds--card__action:not(:has(.cds--btn--icon-only)) > * > .cds--btn {
|
|
8197
|
+
inline-size: 100%;
|
|
8198
|
+
max-inline-size: none;
|
|
8199
|
+
}
|
|
8200
|
+
|
|
8201
|
+
.cds--card__footer > .cds--card__action:has(.cds--btn--icon-only) {
|
|
8202
|
+
flex: 0 0 auto;
|
|
8203
|
+
margin-inline-start: auto;
|
|
8204
|
+
}
|
|
8205
|
+
|
|
8206
|
+
.cds--card__footer > .cds--card__action:has(.cds--btn--icon-only) + .cds--card__action:has(.cds--btn--icon-only) {
|
|
8207
|
+
margin-inline-start: 0;
|
|
8208
|
+
}
|
|
8209
|
+
|
|
8210
|
+
.cds--card__action {
|
|
8211
|
+
display: inline-flex;
|
|
8212
|
+
}
|
|
8213
|
+
|
|
8214
|
+
.cds--card__header-media {
|
|
8215
|
+
display: flex;
|
|
8216
|
+
align-items: flex-start;
|
|
8217
|
+
justify-content: flex-start;
|
|
8218
|
+
grid-column: 1/-1;
|
|
8219
|
+
margin-block: 1rem;
|
|
8220
|
+
margin-inline: 1rem;
|
|
8221
|
+
max-block-size: 4rem;
|
|
8222
|
+
}
|
|
8223
|
+
|
|
8224
|
+
.cds--card__media {
|
|
8225
|
+
grid-column: 1/-1;
|
|
8226
|
+
inline-size: 100%;
|
|
8227
|
+
}
|
|
8228
|
+
.cds--card__media::before, .cds--card__media::after {
|
|
8229
|
+
display: none;
|
|
8230
|
+
}
|
|
8231
|
+
|
|
8232
|
+
.cds--card__media.cds--aspect-ratio--16x9 {
|
|
8233
|
+
aspect-ratio: 16/9;
|
|
8234
|
+
}
|
|
8235
|
+
|
|
8236
|
+
.cds--card__media.cds--aspect-ratio--9x16 {
|
|
8237
|
+
aspect-ratio: 9/16;
|
|
8238
|
+
}
|
|
8239
|
+
|
|
8240
|
+
.cds--card__media.cds--aspect-ratio--2x1 {
|
|
8241
|
+
aspect-ratio: 2/1;
|
|
8242
|
+
}
|
|
8243
|
+
|
|
8244
|
+
.cds--card__media.cds--aspect-ratio--1x2 {
|
|
8245
|
+
aspect-ratio: 1/2;
|
|
8246
|
+
}
|
|
8247
|
+
|
|
8248
|
+
.cds--card__media.cds--aspect-ratio--4x3 {
|
|
8249
|
+
aspect-ratio: 4/3;
|
|
8250
|
+
}
|
|
8251
|
+
|
|
8252
|
+
.cds--card__media.cds--aspect-ratio--3x4 {
|
|
8253
|
+
aspect-ratio: 3/4;
|
|
8254
|
+
}
|
|
8255
|
+
|
|
8256
|
+
.cds--card__media.cds--aspect-ratio--3x2 {
|
|
8257
|
+
aspect-ratio: 3/2;
|
|
8258
|
+
}
|
|
8259
|
+
|
|
8260
|
+
.cds--card__media.cds--aspect-ratio--2x3 {
|
|
8261
|
+
aspect-ratio: 2/3;
|
|
8262
|
+
}
|
|
8263
|
+
|
|
8264
|
+
.cds--card__media.cds--aspect-ratio--1x1 {
|
|
8265
|
+
aspect-ratio: 1/1;
|
|
8266
|
+
}
|
|
8267
|
+
|
|
8268
|
+
.cds--card__media > * {
|
|
8269
|
+
position: static;
|
|
8270
|
+
block-size: 100%;
|
|
8271
|
+
inline-size: 100%;
|
|
8272
|
+
-o-object-fit: cover;
|
|
8273
|
+
object-fit: cover;
|
|
8274
|
+
}
|
|
8275
|
+
|
|
8276
|
+
.cds--card--horizontal {
|
|
8277
|
+
display: flex;
|
|
8278
|
+
flex-direction: row;
|
|
8279
|
+
align-items: stretch;
|
|
8280
|
+
}
|
|
8281
|
+
|
|
8282
|
+
.cds--card__media--horizontal {
|
|
8283
|
+
overflow: hidden;
|
|
8284
|
+
flex-basis: var(--cds--card--media-width, 33.33%);
|
|
8285
|
+
flex-shrink: 0;
|
|
8286
|
+
align-self: stretch;
|
|
8287
|
+
}
|
|
8288
|
+
|
|
8289
|
+
.cds--card--horizontal > .cds--card__content {
|
|
8290
|
+
display: flex;
|
|
8291
|
+
flex: 1 1;
|
|
8292
|
+
flex-direction: column;
|
|
8293
|
+
min-inline-size: 0;
|
|
8294
|
+
}
|
|
8295
|
+
|
|
8296
|
+
.cds--card--horizontal > .cds--card__content > .cds--card__body {
|
|
8297
|
+
flex: 1 0 auto;
|
|
8298
|
+
}
|
|
8299
|
+
|
|
8300
|
+
.cds--card--horizontal > .cds--card__content > .cds--card__footer {
|
|
8301
|
+
margin-block-start: auto;
|
|
8302
|
+
}
|
|
8303
|
+
|
|
8304
|
+
.cds--card__title > .cds--card__label {
|
|
8305
|
+
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
8306
|
+
font-weight: var(--cds-label-01-font-weight, 400);
|
|
8307
|
+
line-height: var(--cds-label-01-line-height, 1.33333);
|
|
8308
|
+
letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
|
|
8309
|
+
color: var(--cds-text-secondary, #525252);
|
|
8310
|
+
}
|
|
8311
|
+
|
|
8312
|
+
.cds--card--disabled .cds--card__label {
|
|
8313
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
8314
|
+
}
|
|
8315
|
+
|
|
8316
|
+
.cds--card__label--truncate {
|
|
8317
|
+
overflow: hidden;
|
|
8318
|
+
text-overflow: ellipsis;
|
|
8319
|
+
white-space: nowrap;
|
|
8320
|
+
}
|
|
8321
|
+
|
|
8322
|
+
.cds--card__label--truncate-multi {
|
|
8323
|
+
display: -webkit-box;
|
|
8324
|
+
overflow: hidden;
|
|
8325
|
+
-webkit-box-orient: vertical;
|
|
8326
|
+
-webkit-line-clamp: var(--cds--card--label-line-clamp);
|
|
8327
|
+
text-overflow: ellipsis;
|
|
8328
|
+
}
|
|
8329
|
+
|
|
8330
|
+
.cds--card__title {
|
|
8331
|
+
display: flex;
|
|
8332
|
+
overflow: hidden;
|
|
8333
|
+
flex-direction: column;
|
|
8334
|
+
gap: 0.125rem;
|
|
8335
|
+
margin-inline: 1rem;
|
|
8336
|
+
min-inline-size: 0;
|
|
8337
|
+
}
|
|
8338
|
+
|
|
8339
|
+
.cds--card__header > .cds--card__title {
|
|
8340
|
+
margin-block: 1rem;
|
|
8341
|
+
}
|
|
8342
|
+
|
|
8343
|
+
.cds--card--expressive .cds--card__title-text-row {
|
|
8344
|
+
font-size: var(--cds-heading-03-font-size, 1.25rem);
|
|
8345
|
+
font-weight: var(--cds-heading-03-font-weight, 400);
|
|
8346
|
+
line-height: var(--cds-heading-03-line-height, 1.4);
|
|
8347
|
+
letter-spacing: var(--cds-heading-03-letter-spacing, 0);
|
|
8348
|
+
}
|
|
8349
|
+
|
|
8350
|
+
.cds--card--productive .cds--card__title-text-row {
|
|
8351
|
+
font-size: var(--cds-heading-compact-02-font-size, 1rem);
|
|
8352
|
+
font-weight: var(--cds-heading-compact-02-font-weight, 600);
|
|
8353
|
+
line-height: var(--cds-heading-compact-02-line-height, 1.375);
|
|
8354
|
+
letter-spacing: var(--cds-heading-compact-02-letter-spacing, 0);
|
|
8355
|
+
}
|
|
8356
|
+
|
|
8357
|
+
.cds--card__title-text-row {
|
|
8358
|
+
display: block;
|
|
8359
|
+
}
|
|
8360
|
+
|
|
8361
|
+
.cds--card__title-text-row--truncate {
|
|
8362
|
+
overflow: hidden;
|
|
8363
|
+
max-inline-size: var(--cds--card--title-max-width, 100%);
|
|
8364
|
+
text-overflow: ellipsis;
|
|
8365
|
+
white-space: nowrap;
|
|
8366
|
+
}
|
|
8367
|
+
|
|
8368
|
+
.cds--card__title-text-row--truncate-multi {
|
|
8369
|
+
display: -webkit-box;
|
|
8370
|
+
overflow: hidden;
|
|
8371
|
+
-webkit-box-orient: vertical;
|
|
8372
|
+
-webkit-line-clamp: var(--cds--card--title-line-clamp);
|
|
8373
|
+
max-inline-size: var(--cds--card--title-max-width, 100%);
|
|
8374
|
+
text-overflow: ellipsis;
|
|
8375
|
+
}
|
|
8376
|
+
|
|
8377
|
+
.cds--card__title-text-row--with-start-icon {
|
|
8378
|
+
display: flex;
|
|
8379
|
+
align-items: flex-start;
|
|
8380
|
+
gap: 0.5rem;
|
|
8381
|
+
}
|
|
8382
|
+
|
|
8383
|
+
.cds--card__title-text-row--with-end-icon {
|
|
8384
|
+
display: block;
|
|
8385
|
+
}
|
|
8386
|
+
|
|
8387
|
+
.cds--card__title-start-icon {
|
|
8388
|
+
display: flex;
|
|
8389
|
+
flex-shrink: 0;
|
|
8390
|
+
margin-block-start: 0.125rem;
|
|
8391
|
+
}
|
|
8392
|
+
|
|
8393
|
+
.cds--card__title-end-icon {
|
|
8394
|
+
display: inline-flex;
|
|
8395
|
+
align-items: center;
|
|
8396
|
+
margin-inline-start: 0.5rem;
|
|
8397
|
+
vertical-align: middle;
|
|
8398
|
+
}
|
|
8399
|
+
|
|
8400
|
+
.cds--card__title > .cds--card__description {
|
|
8401
|
+
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
8402
|
+
font-weight: var(--cds-label-01-font-weight, 400);
|
|
8403
|
+
line-height: var(--cds-label-01-line-height, 1.33333);
|
|
8404
|
+
letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
|
|
8405
|
+
color: var(--cds-text-secondary, #525252);
|
|
8406
|
+
}
|
|
8407
|
+
|
|
8408
|
+
.cds--card--disabled .cds--card__description {
|
|
8409
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
8410
|
+
}
|
|
8411
|
+
|
|
8412
|
+
.cds--card__description--truncate {
|
|
8413
|
+
overflow: hidden;
|
|
8414
|
+
text-overflow: ellipsis;
|
|
8415
|
+
white-space: nowrap;
|
|
8416
|
+
}
|
|
8417
|
+
|
|
8418
|
+
.cds--card__description--truncate-multi {
|
|
8419
|
+
display: -webkit-box;
|
|
8420
|
+
overflow: hidden;
|
|
8421
|
+
-webkit-box-orient: vertical;
|
|
8422
|
+
-webkit-line-clamp: var(--cds--card--description-line-clamp);
|
|
8423
|
+
text-overflow: ellipsis;
|
|
8424
|
+
}
|
|
8425
|
+
|
|
8426
|
+
.cds--card__title-media {
|
|
8427
|
+
display: flex;
|
|
8428
|
+
flex-shrink: 0;
|
|
8429
|
+
align-items: flex-start;
|
|
8430
|
+
justify-content: center;
|
|
8431
|
+
grid-column: 1;
|
|
8432
|
+
margin-block-start: 1rem;
|
|
8433
|
+
margin-inline-start: 1rem;
|
|
8434
|
+
max-block-size: 4rem;
|
|
8435
|
+
}
|
|
8436
|
+
|
|
8437
|
+
.cds--card__header:has(> .cds--card__title-media) > .cds--card__title {
|
|
8438
|
+
grid-column: 2;
|
|
8439
|
+
margin-inline-start: 0;
|
|
8440
|
+
}
|
|
8441
|
+
|
|
8442
|
+
.cds--card__actions {
|
|
8443
|
+
position: absolute;
|
|
8444
|
+
display: inline-flex;
|
|
8445
|
+
align-items: center;
|
|
8446
|
+
justify-content: flex-end;
|
|
8447
|
+
block-size: 2rem;
|
|
8448
|
+
gap: 0.25rem;
|
|
8449
|
+
inline-size: 50%;
|
|
8450
|
+
inset-block-start: 0.5rem;
|
|
8451
|
+
inset-inline-end: 0.5rem;
|
|
8452
|
+
max-inline-size: 50%;
|
|
8453
|
+
}
|
|
8454
|
+
|
|
8455
|
+
.cds--card--has-ai-label {
|
|
8456
|
+
background: linear-gradient(to top, var(--cds-layer, var(--cds-ai-popover-background, #ffffff)) 0%, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 0%, 15%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%) padding-box, linear-gradient(to top, var(--cds-layer, var(--cds-ai-popover-background, #ffffff)), var(--cds-layer, var(--cds-ai-popover-background, #ffffff))) padding-box, linear-gradient(to bottom, var(--cds-ai-border-start, rgba(166, 200, 255, 0.64)), var(--cds-ai-border-end, #78a9ff)) border-box, linear-gradient(to top, var(--cds-layer, var(--cds-ai-popover-background, #ffffff)), var(--cds-layer, var(--cds-ai-popover-background, #ffffff))) border-box;
|
|
8457
|
+
border: 1px solid transparent;
|
|
8458
|
+
box-shadow: inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1)), 0 4px 10px 2px var(--cds-ai-drop-shadow, rgba(15, 98, 254, 0.1));
|
|
8459
|
+
}
|
|
8460
|
+
|
|
8461
|
+
.cds--card__decorator {
|
|
8462
|
+
position: absolute;
|
|
8463
|
+
z-index: 1;
|
|
8464
|
+
display: flex;
|
|
8465
|
+
align-items: center;
|
|
8466
|
+
block-size: 2rem;
|
|
8467
|
+
inset-block-start: 0.5rem;
|
|
8468
|
+
inset-inline-end: 0.5rem;
|
|
8469
|
+
}
|
|
8470
|
+
|
|
8471
|
+
.cds--card--has-ai-label .cds--card__title {
|
|
8472
|
+
padding-inline-end: 3rem;
|
|
8473
|
+
}
|
|
8474
|
+
|
|
8475
|
+
.cds--card--has-ai-label:has(.cds--card__actions) .cds--card__title {
|
|
8476
|
+
padding-inline-end: 10rem;
|
|
8477
|
+
}
|
|
8478
|
+
|
|
8479
|
+
.cds--card--has-ai-label .cds--card__label {
|
|
8480
|
+
padding-inline-end: 3rem;
|
|
8481
|
+
}
|
|
8482
|
+
|
|
8483
|
+
.cds--card--has-ai-label:has(.cds--card__actions) .cds--card__label {
|
|
8484
|
+
padding-inline-end: 10rem;
|
|
8485
|
+
}
|
|
8486
|
+
|
|
8487
|
+
.cds--card--has-ai-label .cds--card__description {
|
|
8488
|
+
padding-inline-end: 3rem;
|
|
8489
|
+
}
|
|
8490
|
+
|
|
8491
|
+
.cds--card--has-ai-label:has(.cds--card__actions) .cds--card__description {
|
|
8492
|
+
padding-inline-end: 10rem;
|
|
8493
|
+
}
|
|
8494
|
+
|
|
8495
|
+
.cds--card--has-ai-label .cds--card__actions {
|
|
8496
|
+
inset-inline-end: 2.5rem;
|
|
8497
|
+
}
|
|
8498
|
+
|
|
8499
|
+
.cds--card--clickable.cds--card--has-ai-label::before {
|
|
8500
|
+
background: linear-gradient(to top, var(--cds-ai-aura-hover-start, rgba(69, 137, 255, 0.32)) 0%, 15%, var(--cds-ai-aura-hover-end, rgba(255, 255, 255, 0)) 50%) padding-box, linear-gradient(to top, var(--cds-ai-aura-hover-background, #edf5ff), var(--cds-ai-aura-hover-background, #edf5ff)) padding-box, linear-gradient(to bottom, var(--cds-ai-border-start, rgba(166, 200, 255, 0.64)), var(--cds-ai-border-end, #78a9ff)) border-box, linear-gradient(to top, var(--cds-ai-aura-hover-background, #edf5ff), var(--cds-ai-aura-hover-background, #edf5ff)) border-box;
|
|
8501
|
+
position: absolute;
|
|
8502
|
+
display: block;
|
|
8503
|
+
block-size: 100%;
|
|
8504
|
+
box-shadow: inset 0 -80px 70px -65px var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.1));
|
|
8505
|
+
content: "";
|
|
8506
|
+
inline-size: 100%;
|
|
8507
|
+
inset-block-start: 0;
|
|
8508
|
+
inset-inline-start: 0;
|
|
8509
|
+
opacity: 0;
|
|
8510
|
+
transition: opacity 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
8511
|
+
}
|
|
8512
|
+
|
|
8513
|
+
.cds--card--clickable.cds--card--has-ai-label:hover::before {
|
|
8514
|
+
opacity: 1;
|
|
8515
|
+
}
|
|
8516
|
+
|
|
8517
|
+
/* stylelint-disable declaration-no-important */
|
|
8518
|
+
.cds--coachmark--floating span:has(> div > .cds--coachmark--content-header--drag-icon) {
|
|
8519
|
+
margin-inline-end: auto;
|
|
8520
|
+
}
|
|
8521
|
+
.cds--coachmark .cds--coachmark--content-header--is-dragging {
|
|
8522
|
+
border-radius: 0;
|
|
8523
|
+
box-shadow: 0 0 0 0.25rem var(--cds-icon-inverse, #ffffff);
|
|
8524
|
+
outline: 0.125rem solid var(--cds-background-inverse, #393939);
|
|
8525
|
+
}
|
|
8526
|
+
.cds--coachmark .cds--coachmark--coachmark-content .cds--coachmark--content-header {
|
|
8527
|
+
display: flex;
|
|
8528
|
+
justify-content: flex-end;
|
|
8529
|
+
}
|
|
8530
|
+
.cds--coachmark .cds--coachmark--coachmark-content .cds--coachmark--content-header--drag-icon,
|
|
8531
|
+
.cds--coachmark .cds--coachmark--coachmark-content .cds--coachmark--content-header .cds--btn {
|
|
8532
|
+
color: var(--cds-icon-inverse, #ffffff);
|
|
8533
|
+
}
|
|
8534
|
+
.cds--coachmark .cds--coachmark--coachmark-content .cds--coachmark--content-header--drag-icon .cds--btn__icon,
|
|
8535
|
+
.cds--coachmark .cds--coachmark--coachmark-content .cds--coachmark--content-header--drag-icon svg,
|
|
8536
|
+
.cds--coachmark .cds--coachmark--coachmark-content .cds--coachmark--content-header .cds--btn .cds--btn__icon,
|
|
8537
|
+
.cds--coachmark .cds--coachmark--coachmark-content .cds--coachmark--content-header .cds--btn svg {
|
|
8538
|
+
color: var(--cds-icon-inverse, #ffffff);
|
|
8539
|
+
fill: var(--cds-icon-inverse, #ffffff);
|
|
8540
|
+
}
|
|
8541
|
+
.cds--coachmark .cds--coachmark--coachmark-content .cds--coachmark--content-body {
|
|
8542
|
+
display: flex;
|
|
8543
|
+
flex-direction: column;
|
|
8544
|
+
padding: 0.125rem 1rem 0;
|
|
8545
|
+
}
|
|
8546
|
+
|
|
8547
|
+
.cds--coachmark-beacon {
|
|
8548
|
+
position: relative;
|
|
8549
|
+
}
|
|
8550
|
+
.cds--coachmark-beacon-default .cds--coachmark-beacon__target::before {
|
|
8551
|
+
display: none;
|
|
8552
|
+
}
|
|
8553
|
+
.cds--coachmark-beacon-default .cds--coachmark-beacon__target::after {
|
|
8554
|
+
position: absolute;
|
|
8555
|
+
border-radius: 50%;
|
|
8556
|
+
background-color: #4589ff;
|
|
8557
|
+
block-size: 0.75rem;
|
|
8558
|
+
content: "";
|
|
8559
|
+
inline-size: 0.75rem;
|
|
8560
|
+
inset-block-start: 0.625rem;
|
|
8561
|
+
inset-inline-start: 0.625rem;
|
|
8562
|
+
}
|
|
8563
|
+
.cds--coachmark-beacon-default .cds--coachmark-beacon__target:focus {
|
|
8564
|
+
outline: transparent;
|
|
8565
|
+
}
|
|
8566
|
+
.cds--coachmark-beacon-default .cds--coachmark-beacon__target:focus::before {
|
|
8567
|
+
position: absolute;
|
|
8568
|
+
display: block;
|
|
8569
|
+
border-radius: 100%;
|
|
8570
|
+
block-size: 18px;
|
|
8571
|
+
content: "";
|
|
8572
|
+
inline-size: 18px;
|
|
8573
|
+
inset-block-start: 7px;
|
|
8574
|
+
inset-inline-start: 7px;
|
|
8575
|
+
outline: 0.125rem var(--cds-focus, #0f62fe) solid;
|
|
8576
|
+
}
|
|
8577
|
+
.cds--coachmark-beacon .cds--coachmark-beacon__target {
|
|
8578
|
+
display: flex;
|
|
8579
|
+
padding: 0;
|
|
8580
|
+
border: none;
|
|
8581
|
+
border-radius: 50%;
|
|
8582
|
+
background-color: transparent;
|
|
8583
|
+
block-size: 2rem;
|
|
8584
|
+
cursor: pointer;
|
|
8585
|
+
inline-size: 2rem;
|
|
8586
|
+
}
|
|
8587
|
+
.cds--coachmark-beacon .cds--coachmark-beacon__target[aria-expanded=true] circle {
|
|
8588
|
+
animation: none;
|
|
8589
|
+
}
|
|
8590
|
+
.cds--coachmark-beacon__center {
|
|
8591
|
+
position: absolute;
|
|
8592
|
+
z-index: 6900;
|
|
8593
|
+
block-size: 5rem;
|
|
8594
|
+
inline-size: 5rem;
|
|
8595
|
+
inset-block-start: -1.375rem;
|
|
8596
|
+
inset-inline-start: -1.375rem;
|
|
8597
|
+
pointer-events: none;
|
|
7820
8598
|
}
|
|
7821
|
-
.cds--
|
|
7822
|
-
|
|
7823
|
-
|
|
8599
|
+
.cds--coachmark-beacon__center circle {
|
|
8600
|
+
animation: ripple 2s infinite;
|
|
8601
|
+
fill: var(--cds-support-info, #0043ce);
|
|
8602
|
+
fill-opacity: 0;
|
|
8603
|
+
-webkit-mask-image: none;
|
|
8604
|
+
mask-image: none;
|
|
8605
|
+
stroke: var(--cds-support-info, #0043ce);
|
|
8606
|
+
stroke-opacity: 0;
|
|
8607
|
+
stroke-width: 1px;
|
|
8608
|
+
transition-timing-function: cubic-bezier(0.2, 0, 1, 0.9);
|
|
7824
8609
|
}
|
|
7825
|
-
|
|
7826
|
-
|
|
8610
|
+
@media (prefers-reduced-motion) {
|
|
8611
|
+
.cds--coachmark-beacon__center circle {
|
|
8612
|
+
animation: none;
|
|
8613
|
+
}
|
|
7827
8614
|
}
|
|
7828
|
-
|
|
7829
|
-
|
|
7830
|
-
|
|
8615
|
+
|
|
8616
|
+
@keyframes ripple {
|
|
8617
|
+
0% {
|
|
8618
|
+
fill-opacity: 0;
|
|
8619
|
+
r: 1px;
|
|
8620
|
+
stroke-opacity: 0;
|
|
8621
|
+
transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
|
|
8622
|
+
}
|
|
8623
|
+
31% {
|
|
8624
|
+
fill-opacity: 0.2;
|
|
8625
|
+
stroke-opacity: 1;
|
|
8626
|
+
}
|
|
8627
|
+
62% {
|
|
8628
|
+
fill-opacity: 0;
|
|
8629
|
+
r: 32px;
|
|
8630
|
+
stroke-opacity: 0;
|
|
8631
|
+
}
|
|
8632
|
+
100% {
|
|
8633
|
+
fill-opacity: 0;
|
|
8634
|
+
r: 32px;
|
|
8635
|
+
stroke-opacity: 0;
|
|
7831
8636
|
}
|
|
7832
8637
|
}
|
|
7833
|
-
|
|
7834
|
-
|
|
7835
|
-
|
|
7836
|
-
|
|
8638
|
+
@keyframes ring-ripple {
|
|
8639
|
+
0% {
|
|
8640
|
+
fill-opacity: 0;
|
|
8641
|
+
r: 12px;
|
|
8642
|
+
stroke-opacity: 0;
|
|
8643
|
+
transition-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
|
|
8644
|
+
}
|
|
8645
|
+
31% {
|
|
8646
|
+
fill-opacity: 0.2;
|
|
8647
|
+
stroke-opacity: 1;
|
|
8648
|
+
}
|
|
8649
|
+
62% {
|
|
8650
|
+
fill-opacity: 0;
|
|
8651
|
+
r: 32px;
|
|
8652
|
+
stroke-opacity: 0;
|
|
8653
|
+
}
|
|
8654
|
+
100% {
|
|
8655
|
+
fill-opacity: 0;
|
|
8656
|
+
r: 32px;
|
|
8657
|
+
stroke-opacity: 0;
|
|
8658
|
+
}
|
|
7837
8659
|
}
|
|
7838
|
-
.cds--
|
|
7839
|
-
|
|
8660
|
+
.cds--coachmark-tagline {
|
|
8661
|
+
position: fixed;
|
|
8662
|
+
z-index: 1000;
|
|
8663
|
+
display: grid;
|
|
8664
|
+
overflow: hidden;
|
|
8665
|
+
border-radius: 0.125rem 0.125rem 0 0;
|
|
8666
|
+
background: #6929c4;
|
|
8667
|
+
background-image: linear-gradient(90deg, #001d6c 0%, #6929c4 100%);
|
|
8668
|
+
color: #ffffff !important;
|
|
8669
|
+
grid-template-columns: [cta-col] auto [close-btn-col] 2.5rem;
|
|
8670
|
+
inline-size: 18rem;
|
|
8671
|
+
inset-block-end: 0;
|
|
8672
|
+
inset-inline-end: 1rem;
|
|
8673
|
+
opacity: 1;
|
|
8674
|
+
transition: opacity 240ms cubic-bezier(0.2, 0, 1, 0.9) 300ms;
|
|
8675
|
+
transition-delay: 240ms;
|
|
7840
8676
|
}
|
|
7841
|
-
@media
|
|
7842
|
-
.cds--
|
|
7843
|
-
|
|
8677
|
+
@media (prefers-reduced-motion) {
|
|
8678
|
+
.cds--coachmark-tagline {
|
|
8679
|
+
transition: none;
|
|
7844
8680
|
}
|
|
7845
8681
|
}
|
|
7846
|
-
.cds--
|
|
7847
|
-
|
|
7848
|
-
|
|
8682
|
+
.cds--coachmark-tagline::before {
|
|
8683
|
+
position: absolute;
|
|
8684
|
+
z-index: -1;
|
|
8685
|
+
background: linear-gradient(90deg, #0043ce 0%, #6929c4 100%);
|
|
8686
|
+
content: "";
|
|
8687
|
+
inset: 0;
|
|
8688
|
+
opacity: 0;
|
|
8689
|
+
transition: opacity 240ms cubic-bezier(0.2, 0, 1, 0.9);
|
|
7849
8690
|
}
|
|
7850
|
-
|
|
7851
|
-
|
|
8691
|
+
@media (prefers-reduced-motion) {
|
|
8692
|
+
.cds--coachmark-tagline::before {
|
|
8693
|
+
transition: none;
|
|
8694
|
+
}
|
|
7852
8695
|
}
|
|
7853
|
-
.cds--
|
|
7854
|
-
|
|
8696
|
+
.cds--coachmark-tagline:hover::before {
|
|
8697
|
+
opacity: 1;
|
|
7855
8698
|
}
|
|
7856
|
-
|
|
7857
|
-
|
|
7858
|
-
|
|
7859
|
-
box-sizing: border-box;
|
|
7860
|
-
padding: 0;
|
|
7861
|
-
border: 0;
|
|
7862
|
-
margin: 0;
|
|
7863
|
-
font-family: inherit;
|
|
7864
|
-
font-size: 100%;
|
|
7865
|
-
vertical-align: baseline;
|
|
8699
|
+
.cds--coachmark-tagline--is-open {
|
|
8700
|
+
background: #ffffff;
|
|
8701
|
+
opacity: 0;
|
|
7866
8702
|
}
|
|
7867
|
-
.cds--
|
|
7868
|
-
|
|
7869
|
-
.cds--link--disabled *::after,
|
|
7870
|
-
.cds--link--disabled:hover *,
|
|
7871
|
-
.cds--link--disabled:hover *::before,
|
|
7872
|
-
.cds--link--disabled:hover *::after {
|
|
7873
|
-
box-sizing: inherit;
|
|
8703
|
+
.cds--coachmark-tagline--is-open cds--coachmark-tagline__cta {
|
|
8704
|
+
opacity: 0;
|
|
7874
8705
|
}
|
|
7875
|
-
.cds--
|
|
7876
|
-
|
|
7877
|
-
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
7878
|
-
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
7879
|
-
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
7880
|
-
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
7881
|
-
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
7882
|
-
cursor: not-allowed;
|
|
7883
|
-
font-weight: 400;
|
|
7884
|
-
text-decoration: none;
|
|
8706
|
+
.cds--coachmark-tagline--is-open cds--coachmark-tagline--close-btn {
|
|
8707
|
+
display: none;
|
|
7885
8708
|
}
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
color: var(--cds-link-visited-text-color, var(--cds-link-visited, #8a3ffc));
|
|
8709
|
+
.cds--coachmark-tagline--is-open::before {
|
|
8710
|
+
background: #ffffff;
|
|
7889
8711
|
}
|
|
7890
|
-
|
|
7891
|
-
|
|
7892
|
-
|
|
8712
|
+
.cds--coachmark-tagline__cta {
|
|
8713
|
+
display: grid;
|
|
8714
|
+
padding: 0.5rem 0;
|
|
8715
|
+
border: none;
|
|
8716
|
+
background: transparent;
|
|
8717
|
+
color: #ffffff !important;
|
|
8718
|
+
grid-template-columns: [icon-col] 2rem [body-col] auto;
|
|
8719
|
+
text-align: start;
|
|
8720
|
+
font-size: var(--cds-body-short-01-font-size, 0.875rem);
|
|
8721
|
+
font-weight: var(--cds-body-short-01-font-weight, 400);
|
|
8722
|
+
line-height: var(--cds-body-short-01-line-height, 1.28572);
|
|
8723
|
+
letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
|
|
7893
8724
|
}
|
|
7894
|
-
|
|
7895
|
-
.
|
|
7896
|
-
|
|
7897
|
-
text-decoration: underline;
|
|
8725
|
+
.cds--coachmark-tagline__cta:focus {
|
|
8726
|
+
box-shadow: inset 0 0 0 3px #6929c4, inset 0 0 0 0.25rem #ffffff;
|
|
8727
|
+
outline: 1px solid transparent;
|
|
7898
8728
|
}
|
|
7899
|
-
|
|
7900
|
-
|
|
7901
|
-
text-decoration: underline;
|
|
8729
|
+
.cds--coachmark-tagline__cta:hover {
|
|
8730
|
+
cursor: pointer !important;
|
|
7902
8731
|
}
|
|
7903
|
-
|
|
7904
|
-
|
|
7905
|
-
.cds--link--sm.cds--link--disabled:hover {
|
|
7906
|
-
font-size: var(--cds-helper-text-01-font-size, 0.75rem);
|
|
7907
|
-
line-height: var(--cds-helper-text-01-line-height, 1.33333);
|
|
7908
|
-
letter-spacing: var(--cds-helper-text-01-letter-spacing, 0.32px);
|
|
8732
|
+
.cds--coachmark-tagline__cta .cds--coachmark-tagline__idea {
|
|
8733
|
+
justify-self: center;
|
|
7909
8734
|
}
|
|
7910
|
-
|
|
7911
|
-
|
|
7912
|
-
|
|
7913
|
-
|
|
7914
|
-
font-weight: var(--cds-body-compact-02-font-weight, 400);
|
|
7915
|
-
line-height: var(--cds-body-compact-02-line-height, 1.375);
|
|
7916
|
-
letter-spacing: var(--cds-body-compact-02-letter-spacing, 0);
|
|
8735
|
+
.cds--coachmark-tagline--close-btn-container {
|
|
8736
|
+
block-size: 2rem;
|
|
8737
|
+
inline-size: 2rem;
|
|
8738
|
+
margin-inline-start: auto;
|
|
7917
8739
|
}
|
|
7918
|
-
|
|
7919
|
-
|
|
7920
|
-
|
|
8740
|
+
.cds--coachmark-tagline--close-btn {
|
|
8741
|
+
border-color: transparent !important;
|
|
8742
|
+
border-radius: 0;
|
|
8743
|
+
block-size: 2rem;
|
|
8744
|
+
color: #ffffff;
|
|
8745
|
+
inline-size: 2rem;
|
|
8746
|
+
margin-inline-start: auto !important;
|
|
8747
|
+
outline: 1px solid transparent;
|
|
7921
8748
|
}
|
|
7922
|
-
|
|
7923
|
-
|
|
7924
|
-
display: inline-flex;
|
|
7925
|
-
align-items: center;
|
|
7926
|
-
block-size: 1lh;
|
|
7927
|
-
line-height: inherit;
|
|
7928
|
-
margin-inline-start: 0.5rem;
|
|
7929
|
-
vertical-align: text-bottom;
|
|
8749
|
+
.cds--coachmark-tagline--close-btn:active {
|
|
8750
|
+
background-color: var(--cds-button-secondary-active, #6f6f6f);
|
|
7930
8751
|
}
|
|
7931
|
-
|
|
7932
|
-
|
|
7933
|
-
block-size: 1.25rem;
|
|
7934
|
-
inline-size: 1.25rem;
|
|
8752
|
+
.cds--coachmark-tagline--close-btn:focus {
|
|
8753
|
+
box-shadow: inset 0 0 0 1px var(--cds-background-inverse, #393939), inset 0 0 0 0.125rem #ffffff !important;
|
|
7935
8754
|
}
|
|
7936
|
-
|
|
7937
|
-
|
|
7938
|
-
|
|
8755
|
+
.cds--coachmark-tagline--close-btn svg > path {
|
|
8756
|
+
margin: 0;
|
|
8757
|
+
fill: #ffffff !important;
|
|
8758
|
+
}
|
|
8759
|
+
.cds--coachmark-tagline--close-btn:hover {
|
|
8760
|
+
background-color: #7c3dd6 !important;
|
|
7939
8761
|
}
|
|
7940
8762
|
|
|
7941
8763
|
.cds--chat-btn {
|
|
@@ -13327,26 +14149,24 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
13327
14149
|
transition: background-color 70ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
13328
14150
|
}
|
|
13329
14151
|
|
|
13330
|
-
|
|
13331
|
-
.cds--data-table tbody tr[data-child-row]:hover
|
|
13332
|
-
|
|
13333
|
-
|
|
13334
|
-
|
|
13335
|
-
.cds--data-table tbody tr:hover td,
|
|
13336
|
-
.cds--data-table tbody tr:hover th {
|
|
13337
|
-
|
|
13338
|
-
|
|
13339
|
-
|
|
13340
|
-
}
|
|
13341
|
-
|
|
13342
|
-
|
|
13343
|
-
|
|
13344
|
-
|
|
13345
|
-
|
|
13346
|
-
|
|
13347
|
-
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
14152
|
+
@media (any-hover: hover) {
|
|
14153
|
+
.cds--data-table tbody tr:not([data-child-row]):hover,
|
|
14154
|
+
.cds--data-table tbody tr[data-child-row]:hover > td {
|
|
14155
|
+
background-color: var(--cds-layer-hover);
|
|
14156
|
+
}
|
|
14157
|
+
.cds--data-table tbody tr:hover td,
|
|
14158
|
+
.cds--data-table tbody tr:hover th {
|
|
14159
|
+
border-block-end: 1px solid var(--cds-layer-hover);
|
|
14160
|
+
border-block-start: 1px solid var(--cds-layer-hover);
|
|
14161
|
+
color: var(--cds-text-primary, #161616);
|
|
14162
|
+
}
|
|
14163
|
+
.cds--data-table tr:hover .cds--link:not(.cds--popover-container .cds--link) {
|
|
14164
|
+
color: var(--cds-link-secondary, #0043ce);
|
|
14165
|
+
}
|
|
14166
|
+
.cds--data-table tr:hover .cds--link--disabled:not(.cds--popover-container .cds--link) {
|
|
14167
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
14168
|
+
}
|
|
13348
14169
|
}
|
|
13349
|
-
|
|
13350
14170
|
.cds--data-table th,
|
|
13351
14171
|
.cds--data-table td {
|
|
13352
14172
|
text-align: start;
|
|
@@ -13469,11 +14289,15 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
13469
14289
|
|
|
13470
14290
|
.cds--data-table.cds--data-table--visible-overflow-menu td.cds--table-column-menu .cds--overflow-menu .cds--overflow-menu__icon,
|
|
13471
14291
|
.cds--data-table td.cds--table-column-menu .cds--overflow-menu:hover .cds--overflow-menu__icon,
|
|
13472
|
-
.cds--data-table td.cds--table-column-menu .cds--overflow-menu:focus .cds--overflow-menu__icon
|
|
13473
|
-
.cds--data-table tr:hover td.cds--table-column-menu .cds--overflow-menu .cds--overflow-menu__icon {
|
|
14292
|
+
.cds--data-table td.cds--table-column-menu .cds--overflow-menu:focus .cds--overflow-menu__icon {
|
|
13474
14293
|
opacity: 1;
|
|
13475
14294
|
}
|
|
13476
14295
|
|
|
14296
|
+
@media (any-hover: hover) {
|
|
14297
|
+
.cds--data-table tr:hover td.cds--table-column-menu .cds--overflow-menu .cds--overflow-menu__icon {
|
|
14298
|
+
opacity: 1;
|
|
14299
|
+
}
|
|
14300
|
+
}
|
|
13477
14301
|
.cds--table-row--menu-option .cds--overflow-menu-options__btn .cds--overflow-menu-options__option-content svg {
|
|
13478
14302
|
position: relative;
|
|
13479
14303
|
inset-block-start: 0.1875rem;
|
|
@@ -13525,15 +14349,15 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
13525
14349
|
background-color: var(--cds-layer-accent);
|
|
13526
14350
|
}
|
|
13527
14351
|
|
|
13528
|
-
|
|
13529
|
-
|
|
13530
|
-
|
|
13531
|
-
|
|
13532
|
-
|
|
13533
|
-
.cds--data-table--zebra tbody tr:not(.cds--parent-row):not(.cds--data-table--selected):hover {
|
|
13534
|
-
|
|
14352
|
+
@media (any-hover: hover) {
|
|
14353
|
+
.cds--data-table--zebra tbody tr:not(.cds--parent-row):hover td {
|
|
14354
|
+
border-block-end: 1px solid var(--cds-layer-hover);
|
|
14355
|
+
border-block-start: 1px solid var(--cds-layer-hover);
|
|
14356
|
+
}
|
|
14357
|
+
.cds--data-table--zebra tbody tr:not(.cds--parent-row):not(.cds--data-table--selected):hover {
|
|
14358
|
+
background-color: var(--cds-layer-hover);
|
|
14359
|
+
}
|
|
13535
14360
|
}
|
|
13536
|
-
|
|
13537
14361
|
.cds--table-column-checkbox .cds--checkbox-label {
|
|
13538
14362
|
min-block-size: 1.5rem;
|
|
13539
14363
|
padding-inline-start: 0;
|
|
@@ -13645,22 +14469,21 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
13645
14469
|
border-block-end: 1px solid var(--cds-layer-active);
|
|
13646
14470
|
}
|
|
13647
14471
|
|
|
13648
|
-
|
|
13649
|
-
|
|
13650
|
-
|
|
13651
|
-
|
|
13652
|
-
.cds--data-table--zebra tbody tr:nth-child(odd).cds--data-table--selected:hover td,
|
|
13653
|
-
.cds--data-table tbody .cds--data-table--selected:hover td {
|
|
13654
|
-
|
|
13655
|
-
|
|
13656
|
-
|
|
13657
|
-
}
|
|
13658
|
-
|
|
13659
|
-
.cds--data-table
|
|
13660
|
-
|
|
13661
|
-
|
|
14472
|
+
@media (any-hover: hover) {
|
|
14473
|
+
.cds--data-table--zebra tbody tr:nth-child(even).cds--data-table--selected:hover td {
|
|
14474
|
+
border-block-end: 1px solid var(--cds-layer-selected-hover);
|
|
14475
|
+
}
|
|
14476
|
+
.cds--data-table--zebra tbody tr:nth-child(odd).cds--data-table--selected:hover td,
|
|
14477
|
+
.cds--data-table tbody .cds--data-table--selected:hover td {
|
|
14478
|
+
border-block-end: 1px solid var(--cds-layer-selected-hover);
|
|
14479
|
+
border-block-start: 1px solid var(--cds-layer-selected-hover);
|
|
14480
|
+
color: var(--cds-text-primary, #161616);
|
|
14481
|
+
}
|
|
14482
|
+
.cds--data-table--zebra tbody tr:nth-child(odd).cds--data-table--selected:hover,
|
|
14483
|
+
.cds--data-table tbody .cds--data-table--selected:hover {
|
|
14484
|
+
background-color: var(--cds-layer-selected-hover);
|
|
14485
|
+
}
|
|
13662
14486
|
}
|
|
13663
|
-
|
|
13664
14487
|
.cds--data-table--selected .cds--overflow-menu .cds--overflow-menu__icon {
|
|
13665
14488
|
opacity: 1;
|
|
13666
14489
|
}
|
|
@@ -13788,6 +14611,9 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
13788
14611
|
|
|
13789
14612
|
.cds--data-table--sticky-header {
|
|
13790
14613
|
display: block;
|
|
14614
|
+
inline-size: -moz-fit-content;
|
|
14615
|
+
inline-size: fit-content;
|
|
14616
|
+
min-inline-size: 100%;
|
|
13791
14617
|
overflow-y: scroll;
|
|
13792
14618
|
}
|
|
13793
14619
|
.cds--data-table--sticky-header thead,
|
|
@@ -13800,7 +14626,6 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
13800
14626
|
.cds--data-table--sticky-header thead {
|
|
13801
14627
|
position: sticky;
|
|
13802
14628
|
z-index: 1;
|
|
13803
|
-
overflow: scroll;
|
|
13804
14629
|
inline-size: 100%;
|
|
13805
14630
|
inset-block-start: 0;
|
|
13806
14631
|
-ms-overflow-style: none;
|
|
@@ -13812,7 +14637,6 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
13812
14637
|
.cds--data-table--sticky-header tbody {
|
|
13813
14638
|
flex-direction: column;
|
|
13814
14639
|
-ms-overflow-style: none;
|
|
13815
|
-
overflow-x: scroll;
|
|
13816
14640
|
will-change: transform;
|
|
13817
14641
|
}
|
|
13818
14642
|
.cds--data-table--sticky-header tr.cds--parent-row.cds--expandable-row {
|
|
@@ -13834,8 +14658,10 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
13834
14658
|
.cds--data-table--sticky-header:not(.cds--data-table--xs):not(.cds--data-table--xl):not(.cds--data-table--sm) td:not(.cds--table-column-menu):not(.cds--table-column-checkbox) {
|
|
13835
14659
|
padding-block-start: 0.875rem;
|
|
13836
14660
|
}
|
|
13837
|
-
|
|
13838
|
-
|
|
14661
|
+
@media (any-hover: hover) {
|
|
14662
|
+
.cds--data-table--sticky-header tr.cds--parent-row.cds--expandable-row:hover + tr[data-child-row] td {
|
|
14663
|
+
border-block-start: 1px solid var(--cds-layer-hover);
|
|
14664
|
+
}
|
|
13839
14665
|
}
|
|
13840
14666
|
.cds--data-table--sticky-header tr.cds--expandable-row:last-of-type {
|
|
13841
14667
|
overflow: hidden;
|
|
@@ -13970,29 +14796,38 @@ tr.cds--data-table--ai-label-row + .cds--expandable-row {
|
|
|
13970
14796
|
box-shadow: inset 1px 0 var(--cds-ai-border-strong, #4589ff);
|
|
13971
14797
|
}
|
|
13972
14798
|
|
|
13973
|
-
.cds--data-table tbody tr.cds--data-table--ai-label-row:hover td,
|
|
13974
|
-
tr.cds--data-table--ai-label-row.cds--expandable-row:hover + .cds--expandable-row[data-child-row] td,
|
|
13975
|
-
tr.cds--data-table--ai-label-row.cds--expandable-row--hover + .cds--expandable-row[data-child-row]:hover > td,
|
|
13976
14799
|
tr.cds--data-table--ai-label-row.cds--expandable-row--hover > td,
|
|
13977
14800
|
tr.cds--data-table--selected.cds--data-table--ai-label-row.cds--expandable-row + tr.cds--expandable-row[data-child-row] > td,
|
|
13978
|
-
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover td,
|
|
13979
|
-
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover td:first-of-type,
|
|
13980
|
-
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected:not(.cds--expandable-row):hover > td,
|
|
13981
|
-
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover + tr[data-child-row] > td,
|
|
13982
14801
|
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover > td,
|
|
13983
14802
|
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover > td:first-of-type {
|
|
13984
14803
|
background-color: transparent;
|
|
13985
14804
|
}
|
|
13986
14805
|
|
|
13987
|
-
|
|
13988
|
-
tr.cds--data-table--ai-label-row:hover
|
|
13989
|
-
tr.cds--data-table--ai-label-row.cds--expandable-row
|
|
14806
|
+
@media (any-hover: hover) {
|
|
14807
|
+
.cds--data-table tbody tr.cds--data-table--ai-label-row:hover td,
|
|
14808
|
+
tr.cds--data-table--ai-label-row.cds--expandable-row:hover + .cds--expandable-row[data-child-row] td,
|
|
14809
|
+
tr.cds--data-table--ai-label-row.cds--expandable-row--hover + .cds--expandable-row[data-child-row]:hover > td,
|
|
14810
|
+
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover td,
|
|
14811
|
+
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover td:first-of-type,
|
|
14812
|
+
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected:not(.cds--expandable-row):hover > td,
|
|
14813
|
+
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover + tr[data-child-row] > td {
|
|
14814
|
+
background-color: transparent;
|
|
14815
|
+
}
|
|
14816
|
+
}
|
|
13990
14817
|
tr.cds--expandable-row--hover.cds--data-table--ai-label-row,
|
|
13991
14818
|
tr.cds--data-table--selected.cds--parent-row.cds--expandable-row--hover.cds--data-table--ai-label-row {
|
|
13992
14819
|
background: linear-gradient(to right, var(--cds-ai-aura-hover-start, rgba(69, 137, 255, 0.32)) 0%, 15%, var(--cds-ai-aura-hover-end, rgba(255, 255, 255, 0)) 50%), var(--cds-ai-aura-hover-background, #edf5ff);
|
|
13993
14820
|
background-attachment: fixed;
|
|
13994
14821
|
}
|
|
13995
14822
|
|
|
14823
|
+
@media (any-hover: hover) {
|
|
14824
|
+
.cds--data-table tbody tr.cds--data-table--ai-label-row:hover,
|
|
14825
|
+
tr.cds--data-table--ai-label-row:hover + .cds--expandable-row[data-child-row],
|
|
14826
|
+
tr.cds--data-table--ai-label-row.cds--expandable-row--hover + .cds--expandable-row[data-child-row]:hover {
|
|
14827
|
+
background: linear-gradient(to right, var(--cds-ai-aura-hover-start, rgba(69, 137, 255, 0.32)) 0%, 15%, var(--cds-ai-aura-hover-end, rgba(255, 255, 255, 0)) 50%), var(--cds-ai-aura-hover-background, #edf5ff);
|
|
14828
|
+
background-attachment: fixed;
|
|
14829
|
+
}
|
|
14830
|
+
}
|
|
13996
14831
|
tr.cds--parent-row.cds--data-table--selected.cds--data-table--slug-row,
|
|
13997
14832
|
.cds--data-table--selected.cds--data-table--slug-row,
|
|
13998
14833
|
tr.cds--data-table--selected.cds--data-table--slug-row + .cds--expandable-row,
|
|
@@ -14003,24 +14838,29 @@ tr.cds--data-table--selected.cds--data-table--ai-label-row + .cds--expandable-ro
|
|
|
14003
14838
|
background-attachment: fixed;
|
|
14004
14839
|
}
|
|
14005
14840
|
|
|
14006
|
-
tr.cds--data-table--ai-label-row.cds--data-table--selected td
|
|
14007
|
-
tr.cds--data-table--ai-label-row.cds--data-table--selected:hover td,
|
|
14008
|
-
tbody tr.cds--data-table--ai-label-row:hover td,
|
|
14009
|
-
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover td:not(.cds--table-expand):not(.cds--table-column-checkbox):not(.cds--table-column-slug) {
|
|
14841
|
+
tr.cds--data-table--ai-label-row.cds--data-table--selected td {
|
|
14010
14842
|
border-block-end-color: var(--cds-border-subtle);
|
|
14011
14843
|
}
|
|
14012
14844
|
|
|
14845
|
+
@media (any-hover: hover) {
|
|
14846
|
+
tr.cds--data-table--ai-label-row.cds--data-table--selected:hover td,
|
|
14847
|
+
tbody tr.cds--data-table--ai-label-row:hover td,
|
|
14848
|
+
tr.cds--data-table--ai-label-row.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover td:not(.cds--table-expand):not(.cds--table-column-checkbox):not(.cds--table-column-slug) {
|
|
14849
|
+
border-block-end-color: var(--cds-border-subtle);
|
|
14850
|
+
}
|
|
14851
|
+
}
|
|
14013
14852
|
tr.cds--expandable-row.cds--data-table--selected.cds--data-table--slug-row[data-parent-row] > td:not(.cds--table-expand):not(.cds--table-column-checkbox):not(.cds--table-column-slug),
|
|
14014
14853
|
tr.cds--expandable-row.cds--data-table--selected.cds--data-table--slug-row[data-parent-row] > td:not(.cds--table-expand):not(.cds--table-column-checkbox):not(.cds--table-column-slug) {
|
|
14015
14854
|
border-block-end: 1px solid var(--cds-layer-selected);
|
|
14016
14855
|
}
|
|
14017
14856
|
|
|
14018
|
-
|
|
14019
|
-
tr.cds--parent-row.cds--data-table--
|
|
14020
|
-
tr.cds--parent-row.cds--data-table--
|
|
14021
|
-
|
|
14857
|
+
@media (any-hover: hover) {
|
|
14858
|
+
tr.cds--parent-row.cds--data-table--slug-row.cds--expandable-row:hover td:first-of-type,
|
|
14859
|
+
tr.cds--parent-row.cds--data-table--ai-label-row.cds--expandable-row:hover td:first-of-type,
|
|
14860
|
+
tr.cds--parent-row.cds--data-table--decoratorß-row.cds--expandable-row:hover td:first-of-type {
|
|
14861
|
+
border-block-end: 1px solid transparent;
|
|
14862
|
+
}
|
|
14022
14863
|
}
|
|
14023
|
-
|
|
14024
14864
|
.cds--data-table thead th.cds--table-sort__header--slug .cds--table-sort,
|
|
14025
14865
|
.cds--data-table thead th:has(> .cds--table-header-label--slug),
|
|
14026
14866
|
.cds--data-table thead th.cds--table-sort__header--ai-label .cds--table-sort,
|
|
@@ -15011,38 +15851,36 @@ tr.cds--parent-row.cds--expandable-row + tr[data-child-row] td .cds--child-row-i
|
|
|
15011
15851
|
box-shadow: none;
|
|
15012
15852
|
}
|
|
15013
15853
|
|
|
15014
|
-
.cds--parent-row.cds--expandable-row > td:first-of-type {
|
|
15015
|
-
box-shadow: none;
|
|
15016
|
-
}
|
|
15017
|
-
|
|
15018
|
-
tr.cds--parent-row:not(.cds--expandable-row) td,
|
|
15019
|
-
tr.cds--parent-row.cds--expandable-row td,
|
|
15020
|
-
tr.cds--parent-row.cds--expandable-row {
|
|
15021
|
-
transition: height 150ms cubic-bezier(0.2, 0, 0.38, 0.9), background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9), border-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
15022
|
-
}
|
|
15023
|
-
|
|
15024
|
-
tr.cds--parent-row:not(.cds--expandable-row):first-of-type:hover td {
|
|
15025
|
-
border-block-end: 1px solid var(--cds-border-subtle);
|
|
15026
|
-
border-block-start: 1px solid var(--cds-border-subtle);
|
|
15027
|
-
}
|
|
15028
|
-
|
|
15029
|
-
tr.cds--parent-row.cds--expandable-row:hover td {
|
|
15030
|
-
background-color: var(--cds-layer-hover);
|
|
15031
|
-
border-block-end: 1px solid var(--cds-border-subtle);
|
|
15032
|
-
border-block-start: 1px solid var(--cds-border-subtle);
|
|
15033
|
-
color: var(--cds-text-primary, #161616);
|
|
15034
|
-
}
|
|
15035
|
-
|
|
15036
|
-
tr.cds--parent-row.cds--expandable-row:hover td:first-of-type {
|
|
15037
|
-
border-block-end: 1px solid var(--cds-layer-hover);
|
|
15854
|
+
.cds--parent-row.cds--expandable-row > td:first-of-type {
|
|
15855
|
+
box-shadow: none;
|
|
15038
15856
|
}
|
|
15039
15857
|
|
|
15040
|
-
tr.cds--parent-row.cds--expandable-row
|
|
15041
|
-
|
|
15042
|
-
|
|
15043
|
-
|
|
15858
|
+
tr.cds--parent-row:not(.cds--expandable-row) td,
|
|
15859
|
+
tr.cds--parent-row.cds--expandable-row td,
|
|
15860
|
+
tr.cds--parent-row.cds--expandable-row {
|
|
15861
|
+
transition: height 150ms cubic-bezier(0.2, 0, 0.38, 0.9), background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9), border-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
15044
15862
|
}
|
|
15045
15863
|
|
|
15864
|
+
@media (any-hover: hover) {
|
|
15865
|
+
tr.cds--parent-row:not(.cds--expandable-row):first-of-type:hover td {
|
|
15866
|
+
border-block-end: 1px solid var(--cds-border-subtle);
|
|
15867
|
+
border-block-start: 1px solid var(--cds-border-subtle);
|
|
15868
|
+
}
|
|
15869
|
+
tr.cds--parent-row.cds--expandable-row:hover td {
|
|
15870
|
+
background-color: var(--cds-layer-hover);
|
|
15871
|
+
border-block-end: 1px solid var(--cds-border-subtle);
|
|
15872
|
+
border-block-start: 1px solid var(--cds-border-subtle);
|
|
15873
|
+
color: var(--cds-text-primary, #161616);
|
|
15874
|
+
}
|
|
15875
|
+
tr.cds--parent-row.cds--expandable-row:hover td:first-of-type {
|
|
15876
|
+
border-block-end: 1px solid var(--cds-layer-hover);
|
|
15877
|
+
}
|
|
15878
|
+
tr.cds--parent-row.cds--expandable-row:hover + tr[data-child-row] td {
|
|
15879
|
+
background-color: var(--cds-layer-hover);
|
|
15880
|
+
border-block-end: 1px solid var(--cds-border-subtle);
|
|
15881
|
+
color: var(--cds-text-primary, #161616);
|
|
15882
|
+
}
|
|
15883
|
+
}
|
|
15046
15884
|
tr.cds--expandable-row--hover + tr[data-child-row] td {
|
|
15047
15885
|
border-block-end: 1px solid var(--cds-border-subtle);
|
|
15048
15886
|
}
|
|
@@ -15191,14 +16029,15 @@ tr.cds--parent-row.cds--expandable-row.cds--expandable-row--hover td:first-of-ty
|
|
|
15191
16029
|
transition: transform 150ms cubic-bezier(0.2, 0, 0.38, 0.9), border-bottom 70ms cubic-bezier(0.2, 0, 0.38, 0.9), border-top 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
15192
16030
|
}
|
|
15193
16031
|
|
|
15194
|
-
|
|
15195
|
-
.cds--data-table--zebra tbody tr[data-parent-row]:hover
|
|
15196
|
-
.cds--data-table--zebra tbody tr[data-
|
|
15197
|
-
|
|
15198
|
-
|
|
15199
|
-
|
|
16032
|
+
@media (any-hover: hover) {
|
|
16033
|
+
.cds--data-table--zebra tbody tr[data-parent-row]:hover td,
|
|
16034
|
+
.cds--data-table--zebra tbody tr[data-parent-row]:hover + tr[data-child-row] td,
|
|
16035
|
+
.cds--data-table--zebra tbody tr[data-child-row]:hover td {
|
|
16036
|
+
background-color: var(--cds-layer-hover);
|
|
16037
|
+
border-block-end: 1px solid var(--cds-layer-hover);
|
|
16038
|
+
border-block-start: 1px solid var(--cds-layer-hover);
|
|
16039
|
+
}
|
|
15200
16040
|
}
|
|
15201
|
-
|
|
15202
16041
|
.cds--data-table--zebra tr.cds--parent-row.cds--expandable-row.cds--expandable-row--hover td {
|
|
15203
16042
|
background-color: var(--cds-layer-hover);
|
|
15204
16043
|
border-block-end: 1px solid var(--cds-layer-hover);
|
|
@@ -15225,21 +16064,20 @@ tr.cds--parent-row.cds--data-table--selected:last-of-type td {
|
|
|
15225
16064
|
box-shadow: 0 1px var(--cds-border-subtle);
|
|
15226
16065
|
}
|
|
15227
16066
|
|
|
15228
|
-
|
|
15229
|
-
|
|
15230
|
-
|
|
15231
|
-
|
|
15232
|
-
|
|
16067
|
+
@media (any-hover: hover) {
|
|
16068
|
+
tr.cds--parent-row.cds--data-table--selected:not(.cds--expandable-row):hover td {
|
|
16069
|
+
background-color: var(--cds-layer-selected-hover);
|
|
16070
|
+
border-block-end: 1px solid var(--cds-border-subtle);
|
|
16071
|
+
border-block-start: 1px solid var(--cds-layer-selected-hover);
|
|
16072
|
+
box-shadow: 0 1px var(--cds-layer-selected-hover);
|
|
16073
|
+
}
|
|
15233
16074
|
}
|
|
15234
|
-
|
|
15235
16075
|
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row td,
|
|
15236
16076
|
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row td:first-of-type {
|
|
15237
16077
|
border-block-end: 1px solid transparent;
|
|
15238
16078
|
box-shadow: 0 1px var(--cds-layer-selected);
|
|
15239
16079
|
}
|
|
15240
16080
|
|
|
15241
|
-
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover td,
|
|
15242
|
-
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover td:first-of-type,
|
|
15243
16081
|
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover td,
|
|
15244
16082
|
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover td:first-of-type {
|
|
15245
16083
|
background-color: var(--cds-layer-selected-hover);
|
|
@@ -15248,6 +16086,15 @@ tr.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover td:first
|
|
|
15248
16086
|
box-shadow: 0 1px var(--cds-layer-selected-hover);
|
|
15249
16087
|
}
|
|
15250
16088
|
|
|
16089
|
+
@media (any-hover: hover) {
|
|
16090
|
+
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover td,
|
|
16091
|
+
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover td:first-of-type {
|
|
16092
|
+
background-color: var(--cds-layer-selected-hover);
|
|
16093
|
+
border-block-end: 1px solid transparent;
|
|
16094
|
+
border-block-start: 1px solid var(--cds-layer-selected-hover);
|
|
16095
|
+
box-shadow: 0 1px var(--cds-layer-selected-hover);
|
|
16096
|
+
}
|
|
16097
|
+
}
|
|
15251
16098
|
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row + tr[data-child-row] td {
|
|
15252
16099
|
background-color: var(--cds-layer-hover);
|
|
15253
16100
|
border-block-end: 1px solid var(--cds-border-subtle);
|
|
@@ -15261,11 +16108,15 @@ tr.cds--parent-row.cds--data-table--selected.cds--expandable-row + tr[data-child
|
|
|
15261
16108
|
padding-block-end: 1.5rem;
|
|
15262
16109
|
}
|
|
15263
16110
|
|
|
15264
|
-
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover + tr[data-child-row] td,
|
|
15265
16111
|
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover + tr[data-child-row] td {
|
|
15266
16112
|
background-color: var(--cds-layer-selected);
|
|
15267
16113
|
}
|
|
15268
16114
|
|
|
16115
|
+
@media (any-hover: hover) {
|
|
16116
|
+
tr.cds--parent-row.cds--data-table--selected.cds--expandable-row:hover + tr[data-child-row] td {
|
|
16117
|
+
background-color: var(--cds-layer-selected);
|
|
16118
|
+
}
|
|
16119
|
+
}
|
|
15269
16120
|
.cds--parent-row .cds--table-column-slug,
|
|
15270
16121
|
.cds--parent-row .cds--table-column-slug + td.cds--table-expand[data-previous-value=collapsed],
|
|
15271
16122
|
.cds--parent-row .cds--table-column-decorator,
|
|
@@ -15281,12 +16132,16 @@ tr.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover + tr[dat
|
|
|
15281
16132
|
}
|
|
15282
16133
|
|
|
15283
16134
|
.cds--data-table--slug-row td,
|
|
15284
|
-
.cds--data-table
|
|
15285
|
-
.cds--data-table--ai-label-row td,
|
|
15286
|
-
.cds--data-table tr.cds--data-table--ai-label-row:hover td {
|
|
16135
|
+
.cds--data-table--ai-label-row td {
|
|
15287
16136
|
border-block-start: 1px solid transparent;
|
|
15288
16137
|
}
|
|
15289
16138
|
|
|
16139
|
+
@media (any-hover: hover) {
|
|
16140
|
+
.cds--data-table tr.cds--data-table--slug-row:hover td,
|
|
16141
|
+
.cds--data-table tr.cds--data-table--ai-label-row:hover td {
|
|
16142
|
+
border-block-start: 1px solid transparent;
|
|
16143
|
+
}
|
|
16144
|
+
}
|
|
15290
16145
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
15291
16146
|
.cds--table-expand__button:focus .cds--table-expand__svg {
|
|
15292
16147
|
color: Highlight;
|
|
@@ -15351,16 +16206,16 @@ tr.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover + tr[dat
|
|
|
15351
16206
|
inline-size: 4rem;
|
|
15352
16207
|
}
|
|
15353
16208
|
|
|
15354
|
-
|
|
15355
|
-
|
|
15356
|
-
|
|
15357
|
-
|
|
15358
|
-
|
|
15359
|
-
.cds--data-table.cds--skeleton tr:hover td:first-of-type,
|
|
15360
|
-
.cds--data-table.cds--skeleton tr:hover td:last-of-type {
|
|
15361
|
-
|
|
16209
|
+
@media (any-hover: hover) {
|
|
16210
|
+
.cds--data-table.cds--skeleton tr:hover td {
|
|
16211
|
+
border-color: var(--cds-border-subtle);
|
|
16212
|
+
background: transparent;
|
|
16213
|
+
}
|
|
16214
|
+
.cds--data-table.cds--skeleton tr:hover td:first-of-type,
|
|
16215
|
+
.cds--data-table.cds--skeleton tr:hover td:last-of-type {
|
|
16216
|
+
border-color: var(--cds-border-subtle);
|
|
16217
|
+
}
|
|
15362
16218
|
}
|
|
15363
|
-
|
|
15364
16219
|
.cds--data-table.cds--skeleton .cds--table-sort {
|
|
15365
16220
|
pointer-events: none;
|
|
15366
16221
|
}
|
|
@@ -15742,6 +16597,22 @@ th .cds--table-sort__flex {
|
|
|
15742
16597
|
opacity: 1;
|
|
15743
16598
|
}
|
|
15744
16599
|
}
|
|
16600
|
+
@position-try --bottom-left {
|
|
16601
|
+
inset-area: block-end span-inline-start;
|
|
16602
|
+
margin-block-start: 0.25rem;
|
|
16603
|
+
}
|
|
16604
|
+
@position-try --top-left {
|
|
16605
|
+
inset-area: block-start span-inline-start;
|
|
16606
|
+
margin-block-end: 0.25rem;
|
|
16607
|
+
}
|
|
16608
|
+
@position-try --bottom-right {
|
|
16609
|
+
inset-area: block-end span-inline-end;
|
|
16610
|
+
margin-block-start: 0.25rem;
|
|
16611
|
+
}
|
|
16612
|
+
@position-try --top-right {
|
|
16613
|
+
inset-area: block-start span-inline-end;
|
|
16614
|
+
margin-block-end: 0.25rem;
|
|
16615
|
+
}
|
|
15745
16616
|
.flatpickr-calendar {
|
|
15746
16617
|
position: absolute;
|
|
15747
16618
|
overflow: hidden;
|
|
@@ -16603,30 +17474,6 @@ th .cds--table-sort__flex {
|
|
|
16603
17474
|
.cds--date-picker--next .cds--date-picker__calendar-popover {
|
|
16604
17475
|
position-try-options: --bottom-left, --top-left, --bottom-right, --top-right;
|
|
16605
17476
|
}
|
|
16606
|
-
@position-try --bottom-left {
|
|
16607
|
-
.cds--date-picker--next .cds--date-picker__calendar-popover {
|
|
16608
|
-
inset-area: block-end span-inline-start;
|
|
16609
|
-
margin-block-start: 0.25rem;
|
|
16610
|
-
}
|
|
16611
|
-
}
|
|
16612
|
-
@position-try --top-left {
|
|
16613
|
-
.cds--date-picker--next .cds--date-picker__calendar-popover {
|
|
16614
|
-
inset-area: block-start span-inline-start;
|
|
16615
|
-
margin-block-end: 0.25rem;
|
|
16616
|
-
}
|
|
16617
|
-
}
|
|
16618
|
-
@position-try --bottom-right {
|
|
16619
|
-
.cds--date-picker--next .cds--date-picker__calendar-popover {
|
|
16620
|
-
inset-area: block-end span-inline-end;
|
|
16621
|
-
margin-block-start: 0.25rem;
|
|
16622
|
-
}
|
|
16623
|
-
}
|
|
16624
|
-
@position-try --top-right {
|
|
16625
|
-
.cds--date-picker--next .cds--date-picker__calendar-popover {
|
|
16626
|
-
inset-area: block-start span-inline-end;
|
|
16627
|
-
margin-block-end: 0.25rem;
|
|
16628
|
-
}
|
|
16629
|
-
}
|
|
16630
17477
|
.cds--date-picker--next .cds--date-picker__calendar.open {
|
|
16631
17478
|
margin-block-start: 0;
|
|
16632
17479
|
}
|
|
@@ -17952,10 +18799,6 @@ button.cds--dropdown-text:focus {
|
|
|
17952
18799
|
text-decoration: none;
|
|
17953
18800
|
}
|
|
17954
18801
|
|
|
17955
|
-
.cds--file-browse-btn--disabled .cds--file__drop-container {
|
|
17956
|
-
border: 1px dashed var(--cds-button-disabled, #c6c6c6);
|
|
17957
|
-
}
|
|
17958
|
-
|
|
17959
18802
|
.cds--label-description html {
|
|
17960
18803
|
font-size: 100%;
|
|
17961
18804
|
}
|
|
@@ -18319,6 +19162,12 @@ button.cds--dropdown-text:focus {
|
|
|
18319
19162
|
block-size: 6rem;
|
|
18320
19163
|
}
|
|
18321
19164
|
|
|
19165
|
+
.cds--file-browse-btn--disabled.cds--file__drop-container,
|
|
19166
|
+
.cds--file-browse-btn--disabled .cds--file__drop-container {
|
|
19167
|
+
border: 1px dashed var(--cds-button-disabled, #c6c6c6);
|
|
19168
|
+
cursor: no-drop;
|
|
19169
|
+
}
|
|
19170
|
+
|
|
18322
19171
|
.cds--file__drop-container--drag-over {
|
|
18323
19172
|
background: none;
|
|
18324
19173
|
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
@@ -21560,6 +22409,119 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
21560
22409
|
inline-size: 50%;
|
|
21561
22410
|
}
|
|
21562
22411
|
|
|
22412
|
+
.cds--full-page-error {
|
|
22413
|
+
block-size: inherit;
|
|
22414
|
+
}
|
|
22415
|
+
|
|
22416
|
+
.cds--full-page-error__container {
|
|
22417
|
+
margin: 0 1.5rem;
|
|
22418
|
+
block-size: 100%;
|
|
22419
|
+
}
|
|
22420
|
+
@media (max-width: 41.98rem) {
|
|
22421
|
+
.cds--full-page-error__container {
|
|
22422
|
+
margin: 0 0.5rem;
|
|
22423
|
+
}
|
|
22424
|
+
}
|
|
22425
|
+
|
|
22426
|
+
.cds--full-page-error__grid {
|
|
22427
|
+
block-size: 100%;
|
|
22428
|
+
padding-block: 2rem;
|
|
22429
|
+
}
|
|
22430
|
+
|
|
22431
|
+
.cds--full-page-error__column {
|
|
22432
|
+
padding: 0;
|
|
22433
|
+
}
|
|
22434
|
+
@media (min-width: 66rem) {
|
|
22435
|
+
.cds--full-page-error__column {
|
|
22436
|
+
padding: 0 2rem 0 0;
|
|
22437
|
+
}
|
|
22438
|
+
}
|
|
22439
|
+
|
|
22440
|
+
.cds--full-page-error__svg-container {
|
|
22441
|
+
display: flex;
|
|
22442
|
+
padding: 0.5rem 0.5rem 5rem 0.5rem;
|
|
22443
|
+
block-size: 100%;
|
|
22444
|
+
}
|
|
22445
|
+
@media (min-width: 42rem) {
|
|
22446
|
+
.cds--full-page-error__svg-container {
|
|
22447
|
+
padding: auto 0.5rem 5rem;
|
|
22448
|
+
}
|
|
22449
|
+
}
|
|
22450
|
+
|
|
22451
|
+
.cds--full-page-error__label,
|
|
22452
|
+
.cds--full-page-error__title {
|
|
22453
|
+
font-size: 2rem;
|
|
22454
|
+
font-weight: 400;
|
|
22455
|
+
line-height: 1.25;
|
|
22456
|
+
letter-spacing: 0;
|
|
22457
|
+
font-size: calc(2rem + 0.25 * (100vw - 20rem) / 22);
|
|
22458
|
+
}
|
|
22459
|
+
@media (min-width: 42rem) {
|
|
22460
|
+
.cds--full-page-error__label,
|
|
22461
|
+
.cds--full-page-error__title {
|
|
22462
|
+
font-size: 2.25rem;
|
|
22463
|
+
font-weight: 300;
|
|
22464
|
+
line-height: 1.22;
|
|
22465
|
+
font-size: calc(2.25rem + 0.375 * (100vw - 42rem) / 24);
|
|
22466
|
+
}
|
|
22467
|
+
}
|
|
22468
|
+
@media (min-width: 66rem) {
|
|
22469
|
+
.cds--full-page-error__label,
|
|
22470
|
+
.cds--full-page-error__title {
|
|
22471
|
+
font-size: 2.625rem;
|
|
22472
|
+
line-height: 1.19;
|
|
22473
|
+
font-size: calc(2.625rem + 0.375 * (100vw - 66rem) / 16);
|
|
22474
|
+
}
|
|
22475
|
+
}
|
|
22476
|
+
@media (min-width: 82rem) {
|
|
22477
|
+
.cds--full-page-error__label,
|
|
22478
|
+
.cds--full-page-error__title {
|
|
22479
|
+
font-size: 3rem;
|
|
22480
|
+
line-height: 1.17;
|
|
22481
|
+
font-size: calc(3rem + 0.75 * (100vw - 82rem) / 17);
|
|
22482
|
+
}
|
|
22483
|
+
}
|
|
22484
|
+
@media (min-width: 99rem) {
|
|
22485
|
+
.cds--full-page-error__label,
|
|
22486
|
+
.cds--full-page-error__title {
|
|
22487
|
+
font-size: 3.75rem;
|
|
22488
|
+
font-size: 3.75rem;
|
|
22489
|
+
}
|
|
22490
|
+
}
|
|
22491
|
+
|
|
22492
|
+
.cds--full-page-error__label {
|
|
22493
|
+
display: block;
|
|
22494
|
+
color: var(--cds-text-error, #da1e28);
|
|
22495
|
+
}
|
|
22496
|
+
|
|
22497
|
+
.cds--full-page-error__title {
|
|
22498
|
+
margin-block-end: 3rem;
|
|
22499
|
+
}
|
|
22500
|
+
|
|
22501
|
+
.cds--full-page-error__description {
|
|
22502
|
+
font-size: var(--cds-body-02-font-size, 1rem);
|
|
22503
|
+
font-weight: var(--cds-body-02-font-weight, 400);
|
|
22504
|
+
line-height: var(--cds-body-02-line-height, 1.5);
|
|
22505
|
+
letter-spacing: var(--cds-body-02-letter-spacing, 0);
|
|
22506
|
+
margin-block-end: 2rem;
|
|
22507
|
+
}
|
|
22508
|
+
|
|
22509
|
+
.cds--full-page-error__body {
|
|
22510
|
+
font-size: var(--cds-body-02-font-size, 1rem);
|
|
22511
|
+
font-weight: var(--cds-body-02-font-weight, 400);
|
|
22512
|
+
line-height: var(--cds-body-02-line-height, 1.5);
|
|
22513
|
+
letter-spacing: var(--cds-body-02-letter-spacing, 0);
|
|
22514
|
+
}
|
|
22515
|
+
|
|
22516
|
+
.cds--full-page-error__svg-container svg.cds--full-page-error__svg {
|
|
22517
|
+
inline-size: 100%;
|
|
22518
|
+
}
|
|
22519
|
+
|
|
22520
|
+
.cds--full-page-error__svg-container svg.cds--full-page-error__svg path {
|
|
22521
|
+
fill: var(--cds-background, #ffffff);
|
|
22522
|
+
stroke: var(--cds-border-inverse, #161616);
|
|
22523
|
+
}
|
|
22524
|
+
|
|
21563
22525
|
.cds--icon-indicator {
|
|
21564
22526
|
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
21565
22527
|
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
@@ -21744,29 +22706,163 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
21744
22706
|
.cds--loading--small .cds--inline-loading__svg {
|
|
21745
22707
|
stroke: var(--cds-interactive, #0f62fe);
|
|
21746
22708
|
}
|
|
21747
|
-
|
|
21748
|
-
.cds--btn .cds--inline-loading--btn {
|
|
21749
|
-
min-block-size: 0;
|
|
22709
|
+
|
|
22710
|
+
.cds--btn .cds--inline-loading--btn {
|
|
22711
|
+
min-block-size: 0;
|
|
22712
|
+
}
|
|
22713
|
+
.cds--btn .cds--inline-loading--btn .cds--inline-loading__text {
|
|
22714
|
+
font-size: var(--cds-body-short-01-font-size, 0.875rem);
|
|
22715
|
+
font-weight: var(--cds-body-short-01-font-weight, 400);
|
|
22716
|
+
line-height: var(--cds-body-short-01-line-height, 1.28572);
|
|
22717
|
+
letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
|
|
22718
|
+
}
|
|
22719
|
+
|
|
22720
|
+
/* If IE11 Don't show check animation */
|
|
22721
|
+
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
22722
|
+
.cds--inline-loading__checkmark-container {
|
|
22723
|
+
inset-block-start: 1px;
|
|
22724
|
+
inset-inline-end: 0.5rem;
|
|
22725
|
+
}
|
|
22726
|
+
.cds--inline-loading__checkmark {
|
|
22727
|
+
animation: none;
|
|
22728
|
+
stroke-dasharray: 0;
|
|
22729
|
+
stroke-dashoffset: 0;
|
|
22730
|
+
}
|
|
22731
|
+
}
|
|
22732
|
+
/* stylelint-disable declaration-no-important */
|
|
22733
|
+
.cds--interstitial-screen--body {
|
|
22734
|
+
overflow: hidden auto;
|
|
22735
|
+
flex-grow: 1;
|
|
22736
|
+
padding: 0;
|
|
22737
|
+
margin: 0;
|
|
22738
|
+
background-color: var(--cds-background, #ffffff);
|
|
22739
|
+
}
|
|
22740
|
+
.cds--interstitial-screen--progress {
|
|
22741
|
+
overflow: auto;
|
|
22742
|
+
margin-block-end: 0.75rem;
|
|
22743
|
+
}
|
|
22744
|
+
.cds--interstitial-screen__carousel {
|
|
22745
|
+
block-size: 100%;
|
|
22746
|
+
}
|
|
22747
|
+
.cds--interstitial-screen__carousel .cds--carousel__item {
|
|
22748
|
+
flex: 0 0 100%;
|
|
22749
|
+
scroll-snap-align: start;
|
|
22750
|
+
}
|
|
22751
|
+
.cds--interstitial-screen--internal-body {
|
|
22752
|
+
padding: 0 !important;
|
|
22753
|
+
margin: 0 !important;
|
|
22754
|
+
}
|
|
22755
|
+
.cds--interstitial-screen--content {
|
|
22756
|
+
block-size: 100%;
|
|
22757
|
+
}
|
|
22758
|
+
.cds--interstitial-screen--internal-header {
|
|
22759
|
+
position: relative;
|
|
22760
|
+
background-color: var(--cds-background, #ffffff);
|
|
22761
|
+
margin-block-end: 0 !important;
|
|
22762
|
+
padding-block-start: 1.5rem !important;
|
|
22763
|
+
padding-inline-start: 2rem !important;
|
|
22764
|
+
}
|
|
22765
|
+
@media (max-width: 41.98rem) {
|
|
22766
|
+
.cds--interstitial-screen--internal-header {
|
|
22767
|
+
padding-inline: 1rem !important;
|
|
22768
|
+
}
|
|
22769
|
+
}
|
|
22770
|
+
.cds--interstitial-screen--internal-header:empty {
|
|
22771
|
+
min-block-size: 0;
|
|
22772
|
+
}
|
|
22773
|
+
.cds--interstitial-screen--internal-header .cds--interstitial-screen--titleContainer {
|
|
22774
|
+
margin-block-end: 1rem;
|
|
22775
|
+
}
|
|
22776
|
+
.cds--interstitial-screen--internal-header .cds--interstitial-screen--titleContainer h1 {
|
|
22777
|
+
font-size: var(--cds-productive-heading-04-font-size, 1.75rem);
|
|
22778
|
+
font-weight: var(--cds-productive-heading-04-font-weight, 400);
|
|
22779
|
+
line-height: var(--cds-productive-heading-04-line-height, 1.28572);
|
|
22780
|
+
letter-spacing: var(--cds-productive-heading-04-letter-spacing, 0);
|
|
22781
|
+
margin-block-end: 0.5rem;
|
|
22782
|
+
}
|
|
22783
|
+
.cds--interstitial-screen--internal-header .cds--interstitial-screen--titleContainer h1:empty {
|
|
22784
|
+
padding: 0;
|
|
22785
|
+
}
|
|
22786
|
+
.cds--interstitial-screen--internal-header .cds--interstitial-screen--titleContainer h2 {
|
|
22787
|
+
font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
|
|
22788
|
+
font-weight: var(--cds-productive-heading-03-font-weight, 400);
|
|
22789
|
+
line-height: var(--cds-productive-heading-03-line-height, 1.4);
|
|
22790
|
+
letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
|
|
22791
|
+
}
|
|
22792
|
+
.cds--interstitial-screen--internal-header .cds--interstitial-screen--titleContainer h2:empty {
|
|
22793
|
+
padding: 0;
|
|
22794
|
+
}
|
|
22795
|
+
.cds--interstitial-screen--internal-header--has-title {
|
|
22796
|
+
background: var(--cds-layer-01, #f4f4f4);
|
|
22797
|
+
border-block-end: 1px solid var(--cds-border-subtle-01, #c6c6c6);
|
|
22798
|
+
}
|
|
22799
|
+
.cds--interstitial-screen--internal-header--has-title .cds--interstitial-screen--progress {
|
|
22800
|
+
margin-block-start: 0;
|
|
22801
|
+
}
|
|
22802
|
+
.cds--interstitial-screen--footer {
|
|
22803
|
+
background: var(--cds-background, #ffffff);
|
|
22804
|
+
border-block-start: 1px solid var(--cds-border-subtle-01, #c6c6c6);
|
|
22805
|
+
inline-size: 100%;
|
|
22806
|
+
}
|
|
22807
|
+
@media (max-width: 41.98rem) {
|
|
22808
|
+
.cds--interstitial-screen--footer {
|
|
22809
|
+
block-size: auto;
|
|
22810
|
+
}
|
|
22811
|
+
}
|
|
22812
|
+
.cds--interstitial-screen--footer .cds--btn-set {
|
|
22813
|
+
display: flex;
|
|
22814
|
+
justify-content: flex-end;
|
|
22815
|
+
inline-size: 100%;
|
|
22816
|
+
}
|
|
22817
|
+
@media (max-width: 41.98rem) {
|
|
22818
|
+
.cds--interstitial-screen--footer .cds--btn.cds--interstitial-screen--prev-btn,
|
|
22819
|
+
.cds--interstitial-screen--footer .cds--btn.cds--interstitial-screen--next-btn,
|
|
22820
|
+
.cds--interstitial-screen--footer .cds--btn.cds--interstitial-screen--start-btn,
|
|
22821
|
+
.cds--interstitial-screen--footer .cds--btn.cds--interstitial-screen--skip-btn {
|
|
22822
|
+
flex: 1 1;
|
|
22823
|
+
inline-size: auto;
|
|
22824
|
+
max-inline-size: none;
|
|
22825
|
+
min-inline-size: 0;
|
|
22826
|
+
}
|
|
22827
|
+
}
|
|
22828
|
+
@media (min-width: 42rem) {
|
|
22829
|
+
.cds--interstitial-screen--footer .cds--btn.cds--interstitial-screen--prev-btn,
|
|
22830
|
+
.cds--interstitial-screen--footer .cds--btn.cds--interstitial-screen--next-btn,
|
|
22831
|
+
.cds--interstitial-screen--footer .cds--btn.cds--interstitial-screen--start-btn {
|
|
22832
|
+
flex: 0 0 auto;
|
|
22833
|
+
inline-size: 15rem;
|
|
22834
|
+
max-inline-size: 15rem;
|
|
22835
|
+
}
|
|
22836
|
+
.cds--interstitial-screen--footer .cds--btn.cds--interstitial-screen--skip-btn {
|
|
22837
|
+
flex: 1 1 auto;
|
|
22838
|
+
max-inline-size: none;
|
|
22839
|
+
}
|
|
22840
|
+
}
|
|
22841
|
+
.cds--interstitial-screen--footer .cds--inline-loading {
|
|
22842
|
+
position: absolute;
|
|
22843
|
+
inline-size: 2rem;
|
|
22844
|
+
inset-block-start: 0;
|
|
22845
|
+
inset-inline-end: 0;
|
|
22846
|
+
}
|
|
22847
|
+
.cds--interstitial-screen--footer-controls {
|
|
22848
|
+
display: flex;
|
|
22849
|
+
flex-direction: row;
|
|
22850
|
+
margin-inline-start: auto;
|
|
21750
22851
|
}
|
|
21751
|
-
.cds--
|
|
21752
|
-
|
|
21753
|
-
|
|
21754
|
-
|
|
21755
|
-
letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
|
|
22852
|
+
.cds--interstitial-screen--full-screen {
|
|
22853
|
+
position: fixed;
|
|
22854
|
+
inset-block-start: 0;
|
|
22855
|
+
inset-inline: 0;
|
|
21756
22856
|
}
|
|
21757
|
-
|
|
21758
|
-
|
|
21759
|
-
|
|
21760
|
-
|
|
21761
|
-
|
|
21762
|
-
|
|
21763
|
-
|
|
21764
|
-
.cds--inline-loading__checkmark {
|
|
21765
|
-
animation: none;
|
|
21766
|
-
stroke-dasharray: 0;
|
|
21767
|
-
stroke-dashoffset: 0;
|
|
21768
|
-
}
|
|
22857
|
+
.cds--interstitial-screen--full-screen .cds--interstitial-screen--container {
|
|
22858
|
+
display: flex;
|
|
22859
|
+
flex-direction: column;
|
|
22860
|
+
padding: 0;
|
|
22861
|
+
margin: 0;
|
|
22862
|
+
block-size: 100vh;
|
|
22863
|
+
max-inline-size: 100vw;
|
|
21769
22864
|
}
|
|
22865
|
+
|
|
21770
22866
|
.cds--list--nested,
|
|
21771
22867
|
.cds--list--unordered,
|
|
21772
22868
|
.cds--list--ordered,
|
|
@@ -23474,6 +24570,230 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
23474
24570
|
}
|
|
23475
24571
|
}
|
|
23476
24572
|
|
|
24573
|
+
.cds--options-tile {
|
|
24574
|
+
position: relative;
|
|
24575
|
+
display: flex;
|
|
24576
|
+
justify-content: space-between;
|
|
24577
|
+
background-color: var(--cds-layer);
|
|
24578
|
+
border-block-end: 1px solid var(--cds-border-subtle);
|
|
24579
|
+
}
|
|
24580
|
+
|
|
24581
|
+
.cds--options-tile__toggle-container {
|
|
24582
|
+
position: absolute;
|
|
24583
|
+
display: inline-flex;
|
|
24584
|
+
align-items: center;
|
|
24585
|
+
justify-content: center;
|
|
24586
|
+
inline-size: calc(1rem + 2rem + 1rem);
|
|
24587
|
+
inset-block: 0;
|
|
24588
|
+
inset-inline-end: 0;
|
|
24589
|
+
padding-inline-end: 1rem;
|
|
24590
|
+
padding-inline-start: 1rem;
|
|
24591
|
+
}
|
|
24592
|
+
|
|
24593
|
+
.cds--options-tile__toggle {
|
|
24594
|
+
position: absolute;
|
|
24595
|
+
}
|
|
24596
|
+
|
|
24597
|
+
.cds--options-tile__toggle .cds--toggle-input__label .cds--toggle__switch {
|
|
24598
|
+
margin: 0;
|
|
24599
|
+
}
|
|
24600
|
+
|
|
24601
|
+
.cds--options-tile__toggle .cds--toggle__label-text {
|
|
24602
|
+
position: absolute;
|
|
24603
|
+
overflow: hidden;
|
|
24604
|
+
padding: 0;
|
|
24605
|
+
border: 0;
|
|
24606
|
+
margin: -1px;
|
|
24607
|
+
block-size: 1px;
|
|
24608
|
+
clip: rect(0, 0, 0, 0);
|
|
24609
|
+
inline-size: 1px;
|
|
24610
|
+
visibility: inherit;
|
|
24611
|
+
white-space: nowrap;
|
|
24612
|
+
}
|
|
24613
|
+
|
|
24614
|
+
.cds--options-tile__details {
|
|
24615
|
+
display: inline-flex;
|
|
24616
|
+
flex-direction: column;
|
|
24617
|
+
flex-grow: 1;
|
|
24618
|
+
}
|
|
24619
|
+
|
|
24620
|
+
.cds--options-tile__header,
|
|
24621
|
+
.cds--options-tile__static-content {
|
|
24622
|
+
display: grid;
|
|
24623
|
+
box-sizing: border-box;
|
|
24624
|
+
align-items: center;
|
|
24625
|
+
grid-template-columns: 3rem 1fr 0;
|
|
24626
|
+
padding-inline-end: 1rem;
|
|
24627
|
+
}
|
|
24628
|
+
|
|
24629
|
+
.cds--options-tile__header {
|
|
24630
|
+
flex-grow: 1;
|
|
24631
|
+
background-color: transparent;
|
|
24632
|
+
cursor: pointer;
|
|
24633
|
+
inline-size: 100%;
|
|
24634
|
+
transition: background-color 70ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
24635
|
+
}
|
|
24636
|
+
.cds--options-tile__header--has-toggle {
|
|
24637
|
+
inline-size: calc(100% - (1rem + 2rem + 1rem));
|
|
24638
|
+
}
|
|
24639
|
+
|
|
24640
|
+
.cds--options-tile__header::-webkit-details-marker {
|
|
24641
|
+
display: none;
|
|
24642
|
+
}
|
|
24643
|
+
|
|
24644
|
+
.cds--options-tile__header:hover {
|
|
24645
|
+
background-color: var(--cds-background-hover, rgba(141, 141, 141, 0.12));
|
|
24646
|
+
}
|
|
24647
|
+
|
|
24648
|
+
.cds--options-tile__header:has(.cds--options-tile__toggle-container:hover) {
|
|
24649
|
+
background-color: transparent;
|
|
24650
|
+
}
|
|
24651
|
+
|
|
24652
|
+
.cds--options-tile__header:focus {
|
|
24653
|
+
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
24654
|
+
outline-offset: -2px;
|
|
24655
|
+
}
|
|
24656
|
+
@media screen and (prefers-contrast) {
|
|
24657
|
+
.cds--options-tile__header:focus {
|
|
24658
|
+
outline-style: dotted;
|
|
24659
|
+
}
|
|
24660
|
+
}
|
|
24661
|
+
|
|
24662
|
+
.cds--options-tile__heading {
|
|
24663
|
+
grid-column: 2;
|
|
24664
|
+
}
|
|
24665
|
+
|
|
24666
|
+
.cds--options-tile__title {
|
|
24667
|
+
font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
|
|
24668
|
+
font-weight: var(--cds-productive-heading-01-font-weight, 600);
|
|
24669
|
+
line-height: var(--cds-productive-heading-01-line-height, 1.28572);
|
|
24670
|
+
letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
|
|
24671
|
+
color: var(--cds-text-primary, #161616);
|
|
24672
|
+
}
|
|
24673
|
+
|
|
24674
|
+
.cds--options-tile__summary {
|
|
24675
|
+
font-size: var(--cds-helper-text-01-font-size, 0.75rem);
|
|
24676
|
+
line-height: var(--cds-helper-text-01-line-height, 1.33333);
|
|
24677
|
+
letter-spacing: var(--cds-helper-text-01-letter-spacing, 0.32px);
|
|
24678
|
+
display: grid;
|
|
24679
|
+
block-size: 1rem;
|
|
24680
|
+
color: var(--cds-text-secondary, #525252);
|
|
24681
|
+
margin-block-start: 0.25rem;
|
|
24682
|
+
opacity: 1;
|
|
24683
|
+
transition-duration: 150ms;
|
|
24684
|
+
transition-property: height, opacity, margin-top;
|
|
24685
|
+
transition-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
24686
|
+
}
|
|
24687
|
+
|
|
24688
|
+
.cds--options-tile__summary--invalid,
|
|
24689
|
+
.cds--options-tile__summary--warn,
|
|
24690
|
+
.cds--options-tile__summary--locked {
|
|
24691
|
+
-moz-column-gap: 0.25rem;
|
|
24692
|
+
column-gap: 0.25rem;
|
|
24693
|
+
grid-template-columns: 1rem 1fr;
|
|
24694
|
+
}
|
|
24695
|
+
|
|
24696
|
+
.cds--options-tile__summary--invalid {
|
|
24697
|
+
color: var(--cds-support-error, #da1e28);
|
|
24698
|
+
}
|
|
24699
|
+
|
|
24700
|
+
.cds--options-tile__summary--warn {
|
|
24701
|
+
color: var(--cds-text-primary, #161616);
|
|
24702
|
+
}
|
|
24703
|
+
|
|
24704
|
+
.cds--options-tile__summary--warn svg {
|
|
24705
|
+
color: var(--cds-support-warning, #f1c21b);
|
|
24706
|
+
}
|
|
24707
|
+
|
|
24708
|
+
.cds--options-tile__summary--warn svg path[fill=none] {
|
|
24709
|
+
fill: #000000;
|
|
24710
|
+
}
|
|
24711
|
+
|
|
24712
|
+
.cds--options-tile__summary-text {
|
|
24713
|
+
overflow: hidden;
|
|
24714
|
+
block-size: -moz-max-content;
|
|
24715
|
+
block-size: max-content;
|
|
24716
|
+
padding-inline-end: 1rem;
|
|
24717
|
+
text-overflow: ellipsis;
|
|
24718
|
+
white-space: nowrap;
|
|
24719
|
+
}
|
|
24720
|
+
|
|
24721
|
+
.cds--options-tile__chevron {
|
|
24722
|
+
display: block;
|
|
24723
|
+
justify-self: center;
|
|
24724
|
+
transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
24725
|
+
}
|
|
24726
|
+
|
|
24727
|
+
.cds--options-tile__content {
|
|
24728
|
+
padding-inline: 3rem 1rem;
|
|
24729
|
+
}
|
|
24730
|
+
|
|
24731
|
+
.cds--options-tile__content > .cds--fieldset > .cds--label:empty {
|
|
24732
|
+
display: none;
|
|
24733
|
+
}
|
|
24734
|
+
|
|
24735
|
+
.cds--options-tile--closing .cds--options-tile__content {
|
|
24736
|
+
overflow: hidden;
|
|
24737
|
+
}
|
|
24738
|
+
|
|
24739
|
+
.cds--options-tile__summary.cds--options-tile__summary--open:not(.cds--options-tile__summary--closing),
|
|
24740
|
+
.cds--options-tile__summary--hidden {
|
|
24741
|
+
block-size: 0;
|
|
24742
|
+
margin-block-start: 0;
|
|
24743
|
+
opacity: 0;
|
|
24744
|
+
}
|
|
24745
|
+
|
|
24746
|
+
.cds--options-tile__chevron.cds--options-tile__chevron--open:not(.cds--options-tile__chevron--closing) {
|
|
24747
|
+
transform: rotate(180deg);
|
|
24748
|
+
}
|
|
24749
|
+
|
|
24750
|
+
.cds--options-tile > details[open] .cds--options-tile__content {
|
|
24751
|
+
padding-block: 0.5rem 1.5rem;
|
|
24752
|
+
}
|
|
24753
|
+
|
|
24754
|
+
.cds--options-tile__locked-text {
|
|
24755
|
+
font-size: var(--cds-body-long-01-font-size, 0.875rem);
|
|
24756
|
+
font-weight: var(--cds-body-long-01-font-weight, 400);
|
|
24757
|
+
line-height: var(--cds-body-long-01-line-height, 1.42857);
|
|
24758
|
+
letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
|
|
24759
|
+
display: inline-flex;
|
|
24760
|
+
align-items: center;
|
|
24761
|
+
color: var(--cds-text-secondary, #525252);
|
|
24762
|
+
margin-block-end: 1.5rem;
|
|
24763
|
+
}
|
|
24764
|
+
|
|
24765
|
+
.cds--options-tile__locked-text > svg {
|
|
24766
|
+
margin-inline-end: 0.25rem;
|
|
24767
|
+
}
|
|
24768
|
+
|
|
24769
|
+
.cds--options-tile--lg .cds--options-tile__header,
|
|
24770
|
+
.cds--options-tile--lg .cds--options-tile__static-content {
|
|
24771
|
+
block-size: 3rem;
|
|
24772
|
+
}
|
|
24773
|
+
|
|
24774
|
+
.cds--options-tile--xl .cds--options-tile__header,
|
|
24775
|
+
.cds--options-tile--xl .cds--options-tile__static-content {
|
|
24776
|
+
block-size: 4rem;
|
|
24777
|
+
}
|
|
24778
|
+
|
|
24779
|
+
.cds--options-tile--lg .cds--options-tile__toggle {
|
|
24780
|
+
inset-block-start: 1rem;
|
|
24781
|
+
}
|
|
24782
|
+
|
|
24783
|
+
.cds--options-tile--xl .cds--options-tile__toggle {
|
|
24784
|
+
inset-block-start: 1.5rem;
|
|
24785
|
+
}
|
|
24786
|
+
|
|
24787
|
+
.cds--options-tile--lg .cds--options-tile__summary {
|
|
24788
|
+
margin-block-start: 0.125rem;
|
|
24789
|
+
}
|
|
24790
|
+
|
|
24791
|
+
@media (prefers-reduced-motion: reduce) {
|
|
24792
|
+
.cds--options-tile__summary,
|
|
24793
|
+
.cds--options-tile__chevron {
|
|
24794
|
+
transition: none;
|
|
24795
|
+
}
|
|
24796
|
+
}
|
|
23477
24797
|
.cds--page-header {
|
|
23478
24798
|
background-color: var(--cds-layer-01, #f4f4f4);
|
|
23479
24799
|
border-block-end: 1px solid var(--cds-border-subtle-01, #c6c6c6);
|
|
@@ -24930,6 +26250,89 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
24930
26250
|
}
|
|
24931
26251
|
}
|
|
24932
26252
|
|
|
26253
|
+
.cds--scroll-gradient {
|
|
26254
|
+
position: relative;
|
|
26255
|
+
display: flex;
|
|
26256
|
+
align-items: stretch;
|
|
26257
|
+
justify-content: stretch;
|
|
26258
|
+
block-size: inherit;
|
|
26259
|
+
inline-size: inherit;
|
|
26260
|
+
}
|
|
26261
|
+
|
|
26262
|
+
.cds--scroll-gradient__content {
|
|
26263
|
+
display: grid;
|
|
26264
|
+
overflow: auto;
|
|
26265
|
+
block-size: inherit;
|
|
26266
|
+
grid-template-columns: 1fr;
|
|
26267
|
+
inline-size: 100%;
|
|
26268
|
+
}
|
|
26269
|
+
|
|
26270
|
+
.cds--scroll-gradient__content-children {
|
|
26271
|
+
block-size: 100%;
|
|
26272
|
+
grid-column-start: 1;
|
|
26273
|
+
grid-row-start: 1;
|
|
26274
|
+
inline-size: 100%;
|
|
26275
|
+
}
|
|
26276
|
+
|
|
26277
|
+
.cds--scroll-gradient__content-children > * {
|
|
26278
|
+
grid-area: 1/1;
|
|
26279
|
+
}
|
|
26280
|
+
|
|
26281
|
+
.cds--scroll-gradient__start-vertical,
|
|
26282
|
+
.cds--scroll-gradient__start-horizontal,
|
|
26283
|
+
.cds--scroll-gradient__end-vertical,
|
|
26284
|
+
.cds--scroll-gradient__end-horizontal {
|
|
26285
|
+
position: absolute;
|
|
26286
|
+
z-index: 1;
|
|
26287
|
+
display: none;
|
|
26288
|
+
pointer-events: none;
|
|
26289
|
+
}
|
|
26290
|
+
|
|
26291
|
+
.cds--scroll-gradient--y-scrollable .cds--scroll-gradient__start-vertical {
|
|
26292
|
+
block-size: 3rem;
|
|
26293
|
+
inset-block-start: 0;
|
|
26294
|
+
inset-inline-start: 0;
|
|
26295
|
+
}
|
|
26296
|
+
|
|
26297
|
+
.cds--scroll-gradient--y-scrollable .cds--scroll-gradient__end-vertical {
|
|
26298
|
+
block-size: 3rem;
|
|
26299
|
+
inset-block-end: 0;
|
|
26300
|
+
inset-inline-start: 0;
|
|
26301
|
+
}
|
|
26302
|
+
|
|
26303
|
+
.cds--scroll-gradient--x-scrollable .cds--scroll-gradient__start-horizontal {
|
|
26304
|
+
inline-size: 3rem;
|
|
26305
|
+
inset-block-start: 0;
|
|
26306
|
+
inset-inline-start: 0;
|
|
26307
|
+
}
|
|
26308
|
+
|
|
26309
|
+
.cds--scroll-gradient--x-scrollable .cds--scroll-gradient__end-horizontal {
|
|
26310
|
+
inline-size: 3rem;
|
|
26311
|
+
inset-block-start: 0;
|
|
26312
|
+
inset-inline-end: 0;
|
|
26313
|
+
}
|
|
26314
|
+
|
|
26315
|
+
.cds--scroll-gradient [data-start-vertical],
|
|
26316
|
+
.cds--scroll-gradient [data-end-vertical] {
|
|
26317
|
+
block-size: 3rem;
|
|
26318
|
+
grid-column-start: 1;
|
|
26319
|
+
grid-row-start: 1;
|
|
26320
|
+
inline-size: 100%;
|
|
26321
|
+
}
|
|
26322
|
+
|
|
26323
|
+
.cds--scroll-gradient [data-end-vertical],
|
|
26324
|
+
.cds--scroll-gradient [data-end-horizontal] {
|
|
26325
|
+
place-self: flex-end;
|
|
26326
|
+
}
|
|
26327
|
+
|
|
26328
|
+
.cds--scroll-gradient [data-start-horizontal],
|
|
26329
|
+
.cds--scroll-gradient [data-end-horizontal] {
|
|
26330
|
+
block-size: 100%;
|
|
26331
|
+
grid-column-start: 1;
|
|
26332
|
+
grid-row-start: 1;
|
|
26333
|
+
inline-size: 3rem;
|
|
26334
|
+
}
|
|
26335
|
+
|
|
24933
26336
|
@keyframes side-panel-entrance-reduced {
|
|
24934
26337
|
0% {
|
|
24935
26338
|
opacity: 0;
|
|
@@ -25904,8 +27307,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
25904
27307
|
outline: none;
|
|
25905
27308
|
transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9), background 110ms cubic-bezier(0.2, 0, 0.38, 0.9), box-shadow 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
25906
27309
|
}
|
|
25907
|
-
|
|
25908
|
-
|
|
27310
|
+
@media (any-hover: hover) {
|
|
27311
|
+
.cds--slider__thumb:hover {
|
|
27312
|
+
transform: scale(1.4286);
|
|
27313
|
+
}
|
|
25909
27314
|
}
|
|
25910
27315
|
.cds--slider__thumb:focus {
|
|
25911
27316
|
background-color: var(--cds-interactive, #0f62fe);
|
|
@@ -25947,13 +27352,15 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
25947
27352
|
inset-block-start: calc(50% - 0.0625rem);
|
|
25948
27353
|
inset-inline-end: 0;
|
|
25949
27354
|
}
|
|
25950
|
-
|
|
25951
|
-
.cds--slider__thumb--
|
|
25952
|
-
|
|
25953
|
-
|
|
25954
|
-
|
|
25955
|
-
.cds--slider__thumb--
|
|
25956
|
-
|
|
27355
|
+
@media (any-hover: hover) {
|
|
27356
|
+
.cds--slider__thumb--lower:hover,
|
|
27357
|
+
.cds--slider__thumb--upper:hover {
|
|
27358
|
+
transform: none;
|
|
27359
|
+
}
|
|
27360
|
+
.cds--slider__thumb--lower:hover .cds--slider__thumb-icon,
|
|
27361
|
+
.cds--slider__thumb--upper:hover .cds--slider__thumb-icon {
|
|
27362
|
+
fill: var(--cds-text-secondary, #525252);
|
|
27363
|
+
}
|
|
25957
27364
|
}
|
|
25958
27365
|
.cds--slider__thumb--lower:active,
|
|
25959
27366
|
.cds--slider__thumb--upper:active {
|
|
@@ -25987,9 +27394,14 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
25987
27394
|
.cds--slider__thumb--upper::before {
|
|
25988
27395
|
inset-inline: 0 auto;
|
|
25989
27396
|
}
|
|
25990
|
-
.cds--slider__thumb--upper:
|
|
27397
|
+
.cds--slider__thumb--upper:active, .cds--slider__thumb--upper:focus {
|
|
25991
27398
|
transform: none;
|
|
25992
27399
|
}
|
|
27400
|
+
@media (any-hover: hover) {
|
|
27401
|
+
.cds--slider__thumb--upper:hover {
|
|
27402
|
+
transform: none;
|
|
27403
|
+
}
|
|
27404
|
+
}
|
|
25993
27405
|
|
|
25994
27406
|
.cds--slider__input {
|
|
25995
27407
|
display: none;
|
|
@@ -26066,9 +27478,11 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
26066
27478
|
.cds--slider--disabled .cds--slider__thumb {
|
|
26067
27479
|
background-color: var(--cds-border-disabled, #c6c6c6);
|
|
26068
27480
|
}
|
|
26069
|
-
|
|
26070
|
-
|
|
26071
|
-
|
|
27481
|
+
@media (any-hover: hover) {
|
|
27482
|
+
.cds--slider--disabled .cds--slider__thumb:hover {
|
|
27483
|
+
cursor: not-allowed;
|
|
27484
|
+
transform: none;
|
|
27485
|
+
}
|
|
26072
27486
|
}
|
|
26073
27487
|
.cds--slider--disabled .cds--slider__thumb:focus {
|
|
26074
27488
|
background-color: var(--cds-border-disabled, #c6c6c6);
|
|
@@ -26086,13 +27500,19 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
26086
27500
|
.cds--slider--disabled .cds--slider__thumb--upper {
|
|
26087
27501
|
background-color: transparent;
|
|
26088
27502
|
}
|
|
26089
|
-
.cds--slider--disabled .cds--slider__thumb--lower:active, .cds--slider--disabled .cds--slider__thumb--lower:
|
|
27503
|
+
.cds--slider--disabled .cds--slider__thumb--lower:active, .cds--slider--disabled .cds--slider__thumb--lower:focus,
|
|
26090
27504
|
.cds--slider--disabled .cds--slider__thumb--upper:active,
|
|
26091
|
-
.cds--slider--disabled .cds--slider__thumb--upper:hover,
|
|
26092
27505
|
.cds--slider--disabled .cds--slider__thumb--upper:focus {
|
|
26093
27506
|
background-color: transparent;
|
|
26094
27507
|
transform: none;
|
|
26095
27508
|
}
|
|
27509
|
+
@media (any-hover: hover) {
|
|
27510
|
+
.cds--slider--disabled .cds--slider__thumb--lower:hover,
|
|
27511
|
+
.cds--slider--disabled .cds--slider__thumb--upper:hover {
|
|
27512
|
+
background-color: transparent;
|
|
27513
|
+
transform: none;
|
|
27514
|
+
}
|
|
27515
|
+
}
|
|
26096
27516
|
.cds--slider--disabled .cds--slider__thumb--lower .cds--slider__thumb-icon,
|
|
26097
27517
|
.cds--slider--disabled .cds--slider__thumb--upper .cds--slider__thumb-icon {
|
|
26098
27518
|
fill: var(--cds-border-disabled, #c6c6c6);
|
|
@@ -26112,13 +27532,19 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
26112
27532
|
cursor: not-allowed;
|
|
26113
27533
|
transition: none;
|
|
26114
27534
|
}
|
|
26115
|
-
.cds--slider--disabled ~ .cds--form-item .cds--slider-text-input:active, .cds--slider--disabled ~ .cds--form-item .cds--slider-text-input:focus,
|
|
27535
|
+
.cds--slider--disabled ~ .cds--form-item .cds--slider-text-input:active, .cds--slider--disabled ~ .cds--form-item .cds--slider-text-input:focus,
|
|
26116
27536
|
.cds--slider--disabled ~ .cds--slider-text-input:active,
|
|
26117
|
-
.cds--slider--disabled ~ .cds--slider-text-input:focus
|
|
26118
|
-
.cds--slider--disabled ~ .cds--slider-text-input:hover {
|
|
27537
|
+
.cds--slider--disabled ~ .cds--slider-text-input:focus {
|
|
26119
27538
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
26120
27539
|
outline: none;
|
|
26121
27540
|
}
|
|
27541
|
+
@media (any-hover: hover) {
|
|
27542
|
+
.cds--slider--disabled ~ .cds--form-item .cds--slider-text-input:hover,
|
|
27543
|
+
.cds--slider--disabled ~ .cds--slider-text-input:hover {
|
|
27544
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
27545
|
+
outline: none;
|
|
27546
|
+
}
|
|
27547
|
+
}
|
|
26122
27548
|
|
|
26123
27549
|
.cds--slider--readonly {
|
|
26124
27550
|
cursor: default;
|
|
@@ -26576,6 +28002,14 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
26576
28002
|
white-space: normal;
|
|
26577
28003
|
}
|
|
26578
28004
|
|
|
28005
|
+
.cds--tabs .cds--icon-tooltip .cds--popover-content {
|
|
28006
|
+
--cds-popover-offset: 0.5rem;
|
|
28007
|
+
}
|
|
28008
|
+
|
|
28009
|
+
.cds--tabs .cds--icon-tooltip .cds--popover-caret {
|
|
28010
|
+
--cds-popover-offset: 0.5rem;
|
|
28011
|
+
}
|
|
28012
|
+
|
|
26579
28013
|
.cds--tabs.cds--tabs--vertical.cds--layout--size-sm .cds--tabs__nav-link .cds--tabs__nav-item-label {
|
|
26580
28014
|
-webkit-line-clamp: 1;
|
|
26581
28015
|
}
|
|
@@ -30648,4 +32082,413 @@ a.cds--side-nav__link--current::before {
|
|
|
30648
32082
|
.cds--switcher__item-link--selected {
|
|
30649
32083
|
background: var(--cds-layer-selected);
|
|
30650
32084
|
color: var(--cds-text-primary, #161616);
|
|
32085
|
+
}
|
|
32086
|
+
|
|
32087
|
+
.cds--edit-in-place {
|
|
32088
|
+
--cds--edit-in-place--size: 2rem;
|
|
32089
|
+
display: flex;
|
|
32090
|
+
align-items: center;
|
|
32091
|
+
background: transparent;
|
|
32092
|
+
cursor: pointer;
|
|
32093
|
+
}
|
|
32094
|
+
|
|
32095
|
+
.cds--edit-in-place--sm {
|
|
32096
|
+
--cds--edit-in-place--size: 2.5rem;
|
|
32097
|
+
}
|
|
32098
|
+
|
|
32099
|
+
.cds--edit-in-place--md {
|
|
32100
|
+
--cds--edit-in-place--size: 3rem;
|
|
32101
|
+
}
|
|
32102
|
+
|
|
32103
|
+
.cds--edit-in-place--lg {
|
|
32104
|
+
--cds--edit-in-place--size: 4rem;
|
|
32105
|
+
}
|
|
32106
|
+
|
|
32107
|
+
.cds--edit-in-place__toggletip-wrapper {
|
|
32108
|
+
display: block;
|
|
32109
|
+
inline-size: 100%;
|
|
32110
|
+
}
|
|
32111
|
+
|
|
32112
|
+
.cds--edit-in-place__toggletip-wrapper .cds--toggletip-button {
|
|
32113
|
+
display: block;
|
|
32114
|
+
inline-size: 100%;
|
|
32115
|
+
}
|
|
32116
|
+
|
|
32117
|
+
.cds--edit-in-place:hover {
|
|
32118
|
+
background: var(--cds-field-01, #f4f4f4);
|
|
32119
|
+
}
|
|
32120
|
+
|
|
32121
|
+
.cds--edit-in-place:hover .cds--edit-in-place__btn-edit,
|
|
32122
|
+
.cds--edit-in-place__btn-edit.cds--edit-in-place__btn-edit--always-visible {
|
|
32123
|
+
visibility: visible;
|
|
32124
|
+
}
|
|
32125
|
+
|
|
32126
|
+
.cds--edit-in-place__btn-edit {
|
|
32127
|
+
visibility: hidden;
|
|
32128
|
+
}
|
|
32129
|
+
|
|
32130
|
+
.cds--edit-in-place--invalid {
|
|
32131
|
+
border: 2px solid var(--cds-support-error, #da1e28);
|
|
32132
|
+
}
|
|
32133
|
+
|
|
32134
|
+
.cds--edit-in-place--focused {
|
|
32135
|
+
background: var(--cds-field-01, #f4f4f4);
|
|
32136
|
+
}
|
|
32137
|
+
|
|
32138
|
+
.cds--edit-in-place--focused:has(.cds--edit-in-place__text-input:focus) {
|
|
32139
|
+
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
32140
|
+
}
|
|
32141
|
+
|
|
32142
|
+
.cds--edit-in-place--invalid.cds--edit-in-place--focused {
|
|
32143
|
+
border: none;
|
|
32144
|
+
}
|
|
32145
|
+
|
|
32146
|
+
.cds--edit-in-place__text-input {
|
|
32147
|
+
flex: 1 1;
|
|
32148
|
+
}
|
|
32149
|
+
|
|
32150
|
+
.cds--edit-in-place--inherit-type .cds--edit-in-place__text-input {
|
|
32151
|
+
/* match font of container */
|
|
32152
|
+
font-size: inherit;
|
|
32153
|
+
font-weight: inherit;
|
|
32154
|
+
letter-spacing: inherit;
|
|
32155
|
+
line-height: inherit;
|
|
32156
|
+
}
|
|
32157
|
+
|
|
32158
|
+
.cds--edit-in-place__text-input-label {
|
|
32159
|
+
display: none;
|
|
32160
|
+
}
|
|
32161
|
+
|
|
32162
|
+
.cds--edit-in-place__warning-icon {
|
|
32163
|
+
margin: auto 0.5rem;
|
|
32164
|
+
color: var(--cds-support-error, #da1e28);
|
|
32165
|
+
inline-size: 1rem;
|
|
32166
|
+
}
|
|
32167
|
+
|
|
32168
|
+
.cds--edit-in-place__warning-text {
|
|
32169
|
+
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
32170
|
+
font-weight: var(--cds-label-01-font-weight, 400);
|
|
32171
|
+
line-height: var(--cds-label-01-line-height, 1.33333);
|
|
32172
|
+
letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
|
|
32173
|
+
color: var(--cds-support-error, #da1e28);
|
|
32174
|
+
margin-block-start: 0.5rem;
|
|
32175
|
+
}
|
|
32176
|
+
|
|
32177
|
+
.cds--edit-in-place__text-input.cds--text-input {
|
|
32178
|
+
border: none;
|
|
32179
|
+
background: transparent;
|
|
32180
|
+
cursor: pointer;
|
|
32181
|
+
outline: none;
|
|
32182
|
+
}
|
|
32183
|
+
|
|
32184
|
+
.cds--edit-in-place:not(.cds--edit-in-place--focused) .cds--edit-in-place__text-input.cds--text-input:focus,
|
|
32185
|
+
.cds--edit-in-place:not(.cds--edit-in-place--focused) .cds--edit-in-place__text-input.cds--text-input:active {
|
|
32186
|
+
outline: none;
|
|
32187
|
+
}
|
|
32188
|
+
|
|
32189
|
+
.cds--edit-in-place__toolbar {
|
|
32190
|
+
--toolbar-width: var(--cds--edit-in-place--size);
|
|
32191
|
+
--toolbar-width-focussed: calc(2 * var(--cds--edit-in-place--size));
|
|
32192
|
+
display: inline-flex;
|
|
32193
|
+
align-self: stretch;
|
|
32194
|
+
inline-size: var(--toolbar-width);
|
|
32195
|
+
}
|
|
32196
|
+
.cds--edit-in-place__toolbar .cds--btn.cds--btn--icon-only:not(cds-icon-button) {
|
|
32197
|
+
padding: 0;
|
|
32198
|
+
min-block-size: unset;
|
|
32199
|
+
}
|
|
32200
|
+
|
|
32201
|
+
.cds--edit-in-place__toolbar .cds--btn.cds--btn--icon-only:not(cds-icon-button) {
|
|
32202
|
+
block-size: var(--cds--edit-in-place--size);
|
|
32203
|
+
inline-size: var(--cds--edit-in-place--size);
|
|
32204
|
+
}
|
|
32205
|
+
|
|
32206
|
+
.cds--edit-in-place__toolbar cds-icon-button::part(button) {
|
|
32207
|
+
padding: 0.25rem;
|
|
32208
|
+
}
|
|
32209
|
+
|
|
32210
|
+
.cds--edit-in-place--invalid .cds--edit-in-place__toolbar {
|
|
32211
|
+
--toolbar-width: calc(var(--cds--edit-in-place--size) + 2rem);
|
|
32212
|
+
--toolbar-width-focussed: calc(
|
|
32213
|
+
2 * var(--cds--edit-in-place--size) + 2rem
|
|
32214
|
+
);
|
|
32215
|
+
}
|
|
32216
|
+
|
|
32217
|
+
@keyframes edit-in-place-slide-in {
|
|
32218
|
+
0% {
|
|
32219
|
+
overflow: hidden;
|
|
32220
|
+
inline-size: var(--toolbar-width);
|
|
32221
|
+
}
|
|
32222
|
+
99% {
|
|
32223
|
+
overflow: hidden;
|
|
32224
|
+
inline-size: var(--toolbar-width-focussed);
|
|
32225
|
+
}
|
|
32226
|
+
100% {
|
|
32227
|
+
overflow: visible;
|
|
32228
|
+
inline-size: var(--toolbar-width-focussed);
|
|
32229
|
+
}
|
|
32230
|
+
}
|
|
32231
|
+
.cds--edit-in-place--focused:not(.cds--edit-in-place--readonly) .cds--edit-in-place__toolbar {
|
|
32232
|
+
overflow: initial;
|
|
32233
|
+
animation: edit-in-place-slide-in 150ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
32234
|
+
inline-size: var(--toolbar-width-focussed);
|
|
32235
|
+
}
|
|
32236
|
+
|
|
32237
|
+
.cds--user-avatar {
|
|
32238
|
+
position: relative;
|
|
32239
|
+
display: flex;
|
|
32240
|
+
align-items: center;
|
|
32241
|
+
justify-content: center;
|
|
32242
|
+
border: 0.5px solid transparent;
|
|
32243
|
+
border-radius: 100%;
|
|
32244
|
+
block-size: 4rem;
|
|
32245
|
+
color: var(--cds-text-inverse, #ffffff);
|
|
32246
|
+
inline-size: 4rem;
|
|
32247
|
+
outline: none;
|
|
32248
|
+
outline-offset: 3px;
|
|
32249
|
+
}
|
|
32250
|
+
|
|
32251
|
+
.cds--user-avatar svg {
|
|
32252
|
+
color: var(--cds-icon-inverse, #ffffff);
|
|
32253
|
+
}
|
|
32254
|
+
|
|
32255
|
+
.cds--user-avatar__tooltip-trigger {
|
|
32256
|
+
display: flex;
|
|
32257
|
+
box-sizing: border-box;
|
|
32258
|
+
align-items: center;
|
|
32259
|
+
justify-content: center;
|
|
32260
|
+
padding: 0;
|
|
32261
|
+
border: 0;
|
|
32262
|
+
margin: 0;
|
|
32263
|
+
-webkit-appearance: none;
|
|
32264
|
+
-moz-appearance: none;
|
|
32265
|
+
appearance: none;
|
|
32266
|
+
background: none;
|
|
32267
|
+
block-size: 100%;
|
|
32268
|
+
cursor: pointer;
|
|
32269
|
+
inline-size: 100%;
|
|
32270
|
+
outline: none;
|
|
32271
|
+
}
|
|
32272
|
+
|
|
32273
|
+
.cds--user-avatar__tooltip:focus-within .cds--user-avatar {
|
|
32274
|
+
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
32275
|
+
outline-offset: 1px;
|
|
32276
|
+
}
|
|
32277
|
+
|
|
32278
|
+
.cds--user-avatar__photo {
|
|
32279
|
+
border-radius: 100%;
|
|
32280
|
+
-o-object-fit: contain;
|
|
32281
|
+
object-fit: contain;
|
|
32282
|
+
}
|
|
32283
|
+
|
|
32284
|
+
.cds--user-avatar--xl {
|
|
32285
|
+
block-size: 4rem;
|
|
32286
|
+
inline-size: 4rem;
|
|
32287
|
+
}
|
|
32288
|
+
|
|
32289
|
+
.cds--user-avatar--lg {
|
|
32290
|
+
block-size: 3rem;
|
|
32291
|
+
inline-size: 3rem;
|
|
32292
|
+
}
|
|
32293
|
+
|
|
32294
|
+
.cds--user-avatar--md {
|
|
32295
|
+
block-size: 2rem;
|
|
32296
|
+
inline-size: 2rem;
|
|
32297
|
+
}
|
|
32298
|
+
|
|
32299
|
+
.cds--user-avatar--sm {
|
|
32300
|
+
block-size: 1.5rem;
|
|
32301
|
+
inline-size: 1.5rem;
|
|
32302
|
+
}
|
|
32303
|
+
|
|
32304
|
+
.cds--user-avatar--xl {
|
|
32305
|
+
font-size: var(--cds-heading-04-font-size, 1.75rem);
|
|
32306
|
+
font-weight: var(--cds-heading-04-font-weight, 400);
|
|
32307
|
+
line-height: var(--cds-heading-04-line-height, 1.28572);
|
|
32308
|
+
letter-spacing: var(--cds-heading-04-letter-spacing, 0);
|
|
32309
|
+
}
|
|
32310
|
+
|
|
32311
|
+
.cds--user-avatar--lg {
|
|
32312
|
+
font-size: var(--cds-heading-03-font-size, 1.25rem);
|
|
32313
|
+
font-weight: var(--cds-heading-03-font-weight, 400);
|
|
32314
|
+
line-height: var(--cds-heading-03-line-height, 1.4);
|
|
32315
|
+
letter-spacing: var(--cds-heading-03-letter-spacing, 0);
|
|
32316
|
+
}
|
|
32317
|
+
|
|
32318
|
+
.cds--user-avatar--md {
|
|
32319
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
32320
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
32321
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
32322
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
32323
|
+
}
|
|
32324
|
+
|
|
32325
|
+
.cds--user-avatar--sm {
|
|
32326
|
+
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
32327
|
+
font-weight: var(--cds-label-01-font-weight, 400);
|
|
32328
|
+
line-height: var(--cds-label-01-line-height, 1.33333);
|
|
32329
|
+
letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
|
|
32330
|
+
}
|
|
32331
|
+
|
|
32332
|
+
.cds--user-avatar__photo--xl {
|
|
32333
|
+
border-radius: 100%;
|
|
32334
|
+
block-size: 4rem;
|
|
32335
|
+
inline-size: 4rem;
|
|
32336
|
+
-o-object-fit: fill;
|
|
32337
|
+
object-fit: fill;
|
|
32338
|
+
}
|
|
32339
|
+
|
|
32340
|
+
.cds--user-avatar__photo--lg {
|
|
32341
|
+
border-radius: 100%;
|
|
32342
|
+
block-size: 3rem;
|
|
32343
|
+
inline-size: 3rem;
|
|
32344
|
+
-o-object-fit: fill;
|
|
32345
|
+
object-fit: fill;
|
|
32346
|
+
}
|
|
32347
|
+
|
|
32348
|
+
.cds--user-avatar__photo--md {
|
|
32349
|
+
border-radius: 100%;
|
|
32350
|
+
block-size: 2rem;
|
|
32351
|
+
inline-size: 2rem;
|
|
32352
|
+
-o-object-fit: fill;
|
|
32353
|
+
object-fit: fill;
|
|
32354
|
+
}
|
|
32355
|
+
|
|
32356
|
+
.cds--user-avatar__photo--sm {
|
|
32357
|
+
border-radius: 100%;
|
|
32358
|
+
block-size: 1.5rem;
|
|
32359
|
+
inline-size: 1.5rem;
|
|
32360
|
+
-o-object-fit: fill;
|
|
32361
|
+
object-fit: fill;
|
|
32362
|
+
}
|
|
32363
|
+
|
|
32364
|
+
:root .cds--user-avatar--order-1-cyan,
|
|
32365
|
+
.cds--g10 .cds--user-avatar--order-1-cyan,
|
|
32366
|
+
.cds--white .cds--user-avatar--order-1-cyan {
|
|
32367
|
+
background-color: #0072c3;
|
|
32368
|
+
}
|
|
32369
|
+
|
|
32370
|
+
:root .cds--user-avatar--order-2-gray,
|
|
32371
|
+
.cds--g10 .cds--user-avatar--order-2-gray,
|
|
32372
|
+
.cds--white .cds--user-avatar--order-2-gray {
|
|
32373
|
+
background-color: #6f6f6f;
|
|
32374
|
+
}
|
|
32375
|
+
|
|
32376
|
+
:root .cds--user-avatar--order-3-green,
|
|
32377
|
+
.cds--g10 .cds--user-avatar--order-3-green,
|
|
32378
|
+
.cds--white .cds--user-avatar--order-3-green {
|
|
32379
|
+
background-color: #198038;
|
|
32380
|
+
}
|
|
32381
|
+
|
|
32382
|
+
:root .cds--user-avatar--order-4-magenta,
|
|
32383
|
+
.cds--g10 .cds--user-avatar--order-4-magenta,
|
|
32384
|
+
.cds--white .cds--user-avatar--order-4-magenta {
|
|
32385
|
+
background-color: #d02670;
|
|
32386
|
+
}
|
|
32387
|
+
|
|
32388
|
+
:root .cds--user-avatar--order-5-purple,
|
|
32389
|
+
.cds--g10 .cds--user-avatar--order-5-purple,
|
|
32390
|
+
.cds--white .cds--user-avatar--order-5-purple {
|
|
32391
|
+
background-color: #8a3ffc;
|
|
32392
|
+
}
|
|
32393
|
+
|
|
32394
|
+
:root .cds--user-avatar--order-6-teal,
|
|
32395
|
+
.cds--g10 .cds--user-avatar--order-6-teal,
|
|
32396
|
+
.cds--white .cds--user-avatar--order-6-teal {
|
|
32397
|
+
background-color: #007d79;
|
|
32398
|
+
}
|
|
32399
|
+
|
|
32400
|
+
:root .cds--user-avatar--order-7-cyan,
|
|
32401
|
+
.cds--g10 .cds--user-avatar--order-7-cyan,
|
|
32402
|
+
.cds--white .cds--user-avatar--order-7-cyan {
|
|
32403
|
+
background-color: #003a6d;
|
|
32404
|
+
}
|
|
32405
|
+
|
|
32406
|
+
:root .cds--user-avatar--order-8-gray,
|
|
32407
|
+
.cds--g10 .cds--user-avatar--order-8-gray,
|
|
32408
|
+
.cds--white .cds--user-avatar--order-8-gray {
|
|
32409
|
+
background-color: #393939;
|
|
32410
|
+
}
|
|
32411
|
+
|
|
32412
|
+
:root .cds--user-avatar--order-9-green,
|
|
32413
|
+
.cds--g10 .cds--user-avatar--order-9-green,
|
|
32414
|
+
.cds--white .cds--user-avatar--order-9-green {
|
|
32415
|
+
background-color: #044317;
|
|
32416
|
+
}
|
|
32417
|
+
|
|
32418
|
+
:root .cds--user-avatar--order-10-magenta,
|
|
32419
|
+
.cds--g10 .cds--user-avatar--order-10-magenta,
|
|
32420
|
+
.cds--white .cds--user-avatar--order-10-magenta {
|
|
32421
|
+
background-color: #740937;
|
|
32422
|
+
}
|
|
32423
|
+
|
|
32424
|
+
:root .cds--user-avatar--order-11-purple,
|
|
32425
|
+
.cds--g10 .cds--user-avatar--order-11-purple,
|
|
32426
|
+
.cds--white .cds--user-avatar--order-11-purple {
|
|
32427
|
+
background-color: #491d8b;
|
|
32428
|
+
}
|
|
32429
|
+
|
|
32430
|
+
:root .cds--user-avatar--order-12-teal,
|
|
32431
|
+
.cds--g10 .cds--user-avatar--order-12-teal,
|
|
32432
|
+
.cds--white .cds--user-avatar--order-12-teal {
|
|
32433
|
+
background-color: #004144;
|
|
32434
|
+
}
|
|
32435
|
+
|
|
32436
|
+
.cds--g90 .cds--user-avatar--order-1-cyan,
|
|
32437
|
+
.cds--g100 .cds--user-avatar--order-1-cyan {
|
|
32438
|
+
background-color: #1192e8;
|
|
32439
|
+
}
|
|
32440
|
+
|
|
32441
|
+
.cds--g90 .cds--user-avatar--order-2-gray,
|
|
32442
|
+
.cds--g100 .cds--user-avatar--order-2-gray {
|
|
32443
|
+
background-color: #8d8d8d;
|
|
32444
|
+
}
|
|
32445
|
+
|
|
32446
|
+
.cds--g90 .cds--user-avatar--order-3-green,
|
|
32447
|
+
.cds--g100 .cds--user-avatar--order-3-green {
|
|
32448
|
+
background-color: #24a148;
|
|
32449
|
+
}
|
|
32450
|
+
|
|
32451
|
+
.cds--g90 .cds--user-avatar--order-4-magenta,
|
|
32452
|
+
.cds--g100 .cds--user-avatar--order-4-magenta {
|
|
32453
|
+
background-color: #ee5396;
|
|
32454
|
+
}
|
|
32455
|
+
|
|
32456
|
+
.cds--g90 .cds--user-avatar--order-5-purple,
|
|
32457
|
+
.cds--g100 .cds--user-avatar--order-5-purple {
|
|
32458
|
+
background-color: #a56eff;
|
|
32459
|
+
}
|
|
32460
|
+
|
|
32461
|
+
.cds--g90 .cds--user-avatar--order-6-teal,
|
|
32462
|
+
.cds--g100 .cds--user-avatar--order-6-teal {
|
|
32463
|
+
background-color: #009d9a;
|
|
32464
|
+
}
|
|
32465
|
+
|
|
32466
|
+
.cds--g90 .cds--user-avatar--order-7-cyan,
|
|
32467
|
+
.cds--g100 .cds--user-avatar--order-7-cyan {
|
|
32468
|
+
background-color: #82cfff;
|
|
32469
|
+
}
|
|
32470
|
+
|
|
32471
|
+
.cds--g90 .cds--user-avatar--order-8-gray,
|
|
32472
|
+
.cds--g100 .cds--user-avatar--order-8-gray {
|
|
32473
|
+
background-color: #c6c6c6;
|
|
32474
|
+
}
|
|
32475
|
+
|
|
32476
|
+
.cds--g90 .cds--user-avatar--order-9-green,
|
|
32477
|
+
.cds--g100 .cds--user-avatar--order-9-green {
|
|
32478
|
+
background-color: #6fdc8c;
|
|
32479
|
+
}
|
|
32480
|
+
|
|
32481
|
+
.cds--g90 .cds--user-avatar--order-10-magenta,
|
|
32482
|
+
.cds--g100 .cds--user-avatar--order-10-magenta {
|
|
32483
|
+
background-color: #ffafd2;
|
|
32484
|
+
}
|
|
32485
|
+
|
|
32486
|
+
.cds--g90 .cds--user-avatar--order-11-purple,
|
|
32487
|
+
.cds--g100 .cds--user-avatar--order-11-purple {
|
|
32488
|
+
background-color: #d4bbff;
|
|
32489
|
+
}
|
|
32490
|
+
|
|
32491
|
+
.cds--g90 .cds--user-avatar--order-12-teal,
|
|
32492
|
+
.cds--g100 .cds--user-avatar--order-12-teal {
|
|
32493
|
+
background-color: #3ddbd9;
|
|
30651
32494
|
}
|