@stackoverflow/stacks 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/controllers/s-expandable-control.d.ts +1 -1
- package/dist/controllers/s-tooltip.d.ts +16 -1
- package/dist/css/stacks.css +715 -527
- package/dist/css/stacks.min.css +1 -1
- package/dist/js/stacks.js +153 -84
- package/dist/js/stacks.min.js +1 -1
- package/lib/css/atomic/misc.less +1 -1
- package/lib/css/atomic/typography.less +0 -6
- package/lib/css/components/activity-indicator.less +18 -17
- package/lib/css/components/avatars.less +50 -131
- package/lib/css/components/breadcrumbs.less +4 -4
- package/lib/css/components/buttons.less +8 -48
- package/lib/css/components/empty-states.less +15 -0
- package/lib/css/components/{collapsible.less → expandable.less} +0 -0
- package/lib/css/components/inputs.less +37 -101
- package/lib/css/components/labels.less +98 -0
- package/lib/css/components/notices.less +190 -163
- package/lib/css/components/post-summary.less +4 -4
- package/lib/css/components/progress-bars.less +1 -1
- package/lib/css/components/prose.less +4 -4
- package/lib/css/components/spinner.less +39 -1
- package/lib/css/components/tables.less +1 -5
- package/lib/css/components/uploader.less +70 -84
- package/lib/css/exports/constants-colors.less +14 -0
- package/lib/css/stacks-dynamic.less +0 -1
- package/lib/css/stacks-static.less +3 -2
- package/lib/ts/controllers/s-expandable-control.ts +23 -19
- package/lib/ts/controllers/s-modal.ts +16 -16
- package/lib/ts/controllers/s-navigation-tablist.ts +13 -13
- package/lib/ts/controllers/s-popover.ts +26 -18
- package/lib/ts/controllers/s-table.ts +31 -29
- package/lib/ts/controllers/s-tooltip.ts +62 -23
- package/lib/ts/stacks.ts +8 -4
- package/package.json +17 -17
- package/lib/css/components/banners.less +0 -80
- package/lib/css/components/blank-states.less +0 -26
package/dist/css/stacks.css
CHANGED
|
@@ -400,45 +400,86 @@ template {
|
|
|
400
400
|
fill: currentColor;
|
|
401
401
|
}
|
|
402
402
|
.s-activity-indicator {
|
|
403
|
+
--_focus-ring: var(--focus-ring);
|
|
404
|
+
--_bg-color: var(--theme-secondary-400);
|
|
403
405
|
display: inline-block;
|
|
404
406
|
min-width: var(--su-static12);
|
|
405
407
|
min-height: var(--su-static12);
|
|
406
408
|
padding: var(--su2) var(--su4);
|
|
407
409
|
line-height: 1.1;
|
|
408
|
-
background-color: var(--
|
|
409
|
-
box-shadow: 0 0 0 var(--su-static4) var(--
|
|
410
|
+
background-color: var(--_bg-color);
|
|
411
|
+
box-shadow: 0 0 0 var(--su-static4) var(--_focus-ring);
|
|
410
412
|
border-radius: 1000px;
|
|
411
413
|
font-size: var(--fs-fine);
|
|
412
414
|
font-weight: 600;
|
|
413
415
|
color: hsl(0, 0%, 100%);
|
|
414
416
|
text-transform: uppercase;
|
|
415
417
|
}
|
|
416
|
-
|
|
417
|
-
color: var(--
|
|
418
|
+
.s-activity-indicator.s-activity-indicator__success {
|
|
419
|
+
--_bg-color: var(--green-500);
|
|
420
|
+
--_focus-ring: var(--focus-ring-success);
|
|
418
421
|
}
|
|
419
|
-
.s-activity-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
+
.s-activity-indicator.s-activity-indicator__warning {
|
|
423
|
+
--_bg-color: var(--yellow-600);
|
|
424
|
+
--_focus-ring: var(--focus-ring-warning);
|
|
422
425
|
}
|
|
423
|
-
.s-activity-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
+
.s-activity-indicator.s-activity-indicator__danger {
|
|
427
|
+
--_bg-color: var(--red-500);
|
|
428
|
+
--_focus-ring: var(--focus-ring-error);
|
|
426
429
|
}
|
|
427
|
-
.s-activity-
|
|
428
|
-
|
|
429
|
-
box-shadow: 0 0 0 var(--su-static4) var(--focus-ring-error);
|
|
430
|
+
body.theme-highcontrast .s-activity-indicator {
|
|
431
|
+
color: var(--white);
|
|
430
432
|
}
|
|
431
433
|
.s-avatar {
|
|
434
|
+
--_size: var(--su-static16);
|
|
435
|
+
--_br: var(--br-sm);
|
|
436
|
+
--_fs-letter: calc(var(--su-static12) - var(--su-static1));
|
|
437
|
+
--_scale-badge: 1;
|
|
432
438
|
display: inline-block;
|
|
433
439
|
position: relative;
|
|
434
|
-
width: var(--
|
|
435
|
-
height: var(--
|
|
436
|
-
border-radius: var(--
|
|
440
|
+
width: var(--_size);
|
|
441
|
+
height: var(--_size);
|
|
442
|
+
border-radius: var(--_br);
|
|
437
443
|
background-color: hsl(0, 0%, 100%);
|
|
438
444
|
background-repeat: no-repeat;
|
|
439
445
|
background-size: 100%;
|
|
440
446
|
vertical-align: bottom;
|
|
441
447
|
}
|
|
448
|
+
.s-avatar.s-avatar__24 {
|
|
449
|
+
--_size: var(--su-static24);
|
|
450
|
+
--_fs-letter: var(--su-static16);
|
|
451
|
+
--_scale-badge: 1.1;
|
|
452
|
+
}
|
|
453
|
+
.s-avatar.s-avatar__32 {
|
|
454
|
+
--_size: var(--su-static32);
|
|
455
|
+
--_br: var(--br-md);
|
|
456
|
+
--_fs-letter: calc(var(--su-static24) - var(--su-static2));
|
|
457
|
+
--_scale-badge: 1.3;
|
|
458
|
+
}
|
|
459
|
+
.s-avatar.s-avatar__48 {
|
|
460
|
+
--_size: var(--su-static48);
|
|
461
|
+
--_br: var(--br-md);
|
|
462
|
+
--_fs-letter: calc(var(--su-static32) + var(--su-static2));
|
|
463
|
+
--_scale-badge: 1.6;
|
|
464
|
+
}
|
|
465
|
+
.s-avatar.s-avatar__64 {
|
|
466
|
+
--_size: var(--su-static64);
|
|
467
|
+
--_br: var(--br-lg);
|
|
468
|
+
--_fs-letter: calc(var(--su-static48) - var(--su-static4));
|
|
469
|
+
--_scale-badge: 2.4;
|
|
470
|
+
}
|
|
471
|
+
.s-avatar.s-avatar__96 {
|
|
472
|
+
--_size: var(--su-static96);
|
|
473
|
+
--_br: calc(var(--br-lg) + var(--br-sm));
|
|
474
|
+
--_fs-letter: calc(var(--su-static64) + var(--su-static2));
|
|
475
|
+
--_scale-badge: 3;
|
|
476
|
+
}
|
|
477
|
+
.s-avatar.s-avatar__128 {
|
|
478
|
+
--_size: var(--su-static128);
|
|
479
|
+
--_br: calc(var(--br-lg) + var(--br-sm));
|
|
480
|
+
--_fs-letter: calc(var(--su-static96) - var(--su-static8));
|
|
481
|
+
--_scale-badge: 3;
|
|
482
|
+
}
|
|
442
483
|
body.theme-highcontrast .s-avatar {
|
|
443
484
|
background-color: var(--black);
|
|
444
485
|
box-shadow: 0 0 0 1px var(--black);
|
|
@@ -450,7 +491,7 @@ body.theme-highcontrast .s-avatar .s-avatar--letter {
|
|
|
450
491
|
.s-avatar .s-avatar--letter {
|
|
451
492
|
display: block;
|
|
452
493
|
color: hsl(0, 0%, 100%);
|
|
453
|
-
font-size:
|
|
494
|
+
font-size: var(--_fs-letter);
|
|
454
495
|
font-weight: bold;
|
|
455
496
|
line-height: 1.4;
|
|
456
497
|
text-align: center;
|
|
@@ -464,113 +505,15 @@ body.theme-highcontrast .s-avatar .s-avatar--letter {
|
|
|
464
505
|
position: absolute;
|
|
465
506
|
right: -4px;
|
|
466
507
|
bottom: -4px;
|
|
508
|
+
-webkit-transform: scale(var(--_scale-badge));
|
|
509
|
+
transform: scale(var(--_scale-badge));
|
|
467
510
|
}
|
|
468
511
|
.s-avatar .s-avatar--image {
|
|
469
|
-
width: var(--
|
|
470
|
-
height: var(--
|
|
471
|
-
border-radius: var(--
|
|
512
|
+
width: var(--_size);
|
|
513
|
+
height: var(--_size);
|
|
514
|
+
border-radius: var(--_br);
|
|
472
515
|
display: block;
|
|
473
516
|
}
|
|
474
|
-
.s-avatar.s-avatar__24 {
|
|
475
|
-
width: var(--su-static24);
|
|
476
|
-
height: var(--su-static24);
|
|
477
|
-
}
|
|
478
|
-
.s-avatar.s-avatar__24 .s-avatar--letter {
|
|
479
|
-
font-size: 16px;
|
|
480
|
-
}
|
|
481
|
-
.s-avatar.s-avatar__24 .s-avatar--badge {
|
|
482
|
-
-webkit-transform: scale(1.1);
|
|
483
|
-
transform: scale(1.1);
|
|
484
|
-
}
|
|
485
|
-
.s-avatar.s-avatar__24 .s-avatar--image {
|
|
486
|
-
width: var(--su-static24);
|
|
487
|
-
height: var(--su-static24);
|
|
488
|
-
}
|
|
489
|
-
.s-avatar.s-avatar__32 {
|
|
490
|
-
width: var(--su-static32);
|
|
491
|
-
height: var(--su-static32);
|
|
492
|
-
border-radius: var(--br-md);
|
|
493
|
-
}
|
|
494
|
-
.s-avatar.s-avatar__32 .s-avatar--letter {
|
|
495
|
-
font-size: 22px;
|
|
496
|
-
}
|
|
497
|
-
.s-avatar.s-avatar__32 .s-avatar--badge {
|
|
498
|
-
-webkit-transform: scale(1.3);
|
|
499
|
-
transform: scale(1.3);
|
|
500
|
-
}
|
|
501
|
-
.s-avatar.s-avatar__32 .s-avatar--image {
|
|
502
|
-
width: var(--su-static32);
|
|
503
|
-
height: var(--su-static32);
|
|
504
|
-
border-radius: var(--br-md);
|
|
505
|
-
}
|
|
506
|
-
.s-avatar.s-avatar__48 {
|
|
507
|
-
width: var(--su-static48);
|
|
508
|
-
height: var(--su-static48);
|
|
509
|
-
border-radius: var(--br-md);
|
|
510
|
-
}
|
|
511
|
-
.s-avatar.s-avatar__48 .s-avatar--letter {
|
|
512
|
-
font-size: 34px;
|
|
513
|
-
}
|
|
514
|
-
.s-avatar.s-avatar__48 .s-avatar--badge {
|
|
515
|
-
-webkit-transform: scale(1.6);
|
|
516
|
-
transform: scale(1.6);
|
|
517
|
-
}
|
|
518
|
-
.s-avatar.s-avatar__48 .s-avatar--image {
|
|
519
|
-
width: var(--su-static48);
|
|
520
|
-
height: var(--su-static48);
|
|
521
|
-
border-radius: var(--br-md);
|
|
522
|
-
}
|
|
523
|
-
.s-avatar.s-avatar__64 {
|
|
524
|
-
width: var(--su-static64);
|
|
525
|
-
height: var(--su-static64);
|
|
526
|
-
border-radius: var(--br-lg);
|
|
527
|
-
}
|
|
528
|
-
.s-avatar.s-avatar__64 .s-avatar--letter {
|
|
529
|
-
font-size: 44px;
|
|
530
|
-
}
|
|
531
|
-
.s-avatar.s-avatar__64 .s-avatar--badge {
|
|
532
|
-
-webkit-transform: scale(2.4);
|
|
533
|
-
transform: scale(2.4);
|
|
534
|
-
}
|
|
535
|
-
.s-avatar.s-avatar__64 .s-avatar--image {
|
|
536
|
-
width: var(--su-static64);
|
|
537
|
-
height: var(--su-static64);
|
|
538
|
-
border-radius: var(--br-lg);
|
|
539
|
-
}
|
|
540
|
-
.s-avatar.s-avatar__96 {
|
|
541
|
-
width: var(--su-static96);
|
|
542
|
-
height: var(--su-static96);
|
|
543
|
-
border-radius: calc(var(--br-lg) + var(--br-sm));
|
|
544
|
-
}
|
|
545
|
-
.s-avatar.s-avatar__96 .s-avatar--letter {
|
|
546
|
-
font-size: 66px;
|
|
547
|
-
}
|
|
548
|
-
.s-avatar.s-avatar__96 .s-avatar--badge {
|
|
549
|
-
-webkit-transform: scale(3);
|
|
550
|
-
transform: scale(3);
|
|
551
|
-
}
|
|
552
|
-
.s-avatar.s-avatar__96 .s-avatar--image {
|
|
553
|
-
width: var(--su-static96);
|
|
554
|
-
height: var(--su-static96);
|
|
555
|
-
border-radius: calc(var(--br-lg) + var(--br-sm));
|
|
556
|
-
}
|
|
557
|
-
.s-avatar.s-avatar__128 {
|
|
558
|
-
width: var(--su-static128);
|
|
559
|
-
height: var(--su-static128);
|
|
560
|
-
border-radius: calc(var(--br-lg) + var(--br-lg));
|
|
561
|
-
}
|
|
562
|
-
.s-avatar.s-avatar__128 .s-avatar--letter {
|
|
563
|
-
font-size: 88px;
|
|
564
|
-
}
|
|
565
|
-
.s-avatar.s-avatar__128 .s-avatar--badge {
|
|
566
|
-
-webkit-transform: scale(3);
|
|
567
|
-
transform: scale(3);
|
|
568
|
-
}
|
|
569
|
-
.s-avatar.s-avatar__128 .s-avatar--image {
|
|
570
|
-
width: var(--su-static128);
|
|
571
|
-
height: var(--su-static128);
|
|
572
|
-
border-radius: calc(var(--br-lg) + var(--br-lg));
|
|
573
|
-
}
|
|
574
517
|
.s-badge,
|
|
575
518
|
.s-topbar--notice {
|
|
576
519
|
display: inline-flex;
|
|
@@ -800,7 +743,7 @@ body.theme-highcontrast .s-badge__danger.s-badge__filled {
|
|
|
800
743
|
display: flex;
|
|
801
744
|
flex-wrap: wrap;
|
|
802
745
|
align-items: start;
|
|
803
|
-
color: var(--black-
|
|
746
|
+
color: var(--black-200);
|
|
804
747
|
font-size: var(--fs-caption);
|
|
805
748
|
}
|
|
806
749
|
.s-breadcrumbs .s-breadcrumbs--item {
|
|
@@ -815,7 +758,7 @@ body.theme-highcontrast .s-badge__danger.s-badge__filled {
|
|
|
815
758
|
margin-left: var(--su4);
|
|
816
759
|
}
|
|
817
760
|
body.theme-highcontrast .s-breadcrumbs .s-breadcrumbs--divider {
|
|
818
|
-
color: var(--
|
|
761
|
+
color: var(--fc-light);
|
|
819
762
|
}
|
|
820
763
|
@media (max-width: 640px) {
|
|
821
764
|
.s-breadcrumbs .s-breadcrumbs--divider {
|
|
@@ -824,10 +767,10 @@ body.theme-highcontrast .s-breadcrumbs .s-breadcrumbs--divider {
|
|
|
824
767
|
}
|
|
825
768
|
}
|
|
826
769
|
.s-breadcrumbs .s-breadcrumbs--link {
|
|
827
|
-
color: var(--
|
|
770
|
+
color: var(--fc-light);
|
|
828
771
|
}
|
|
829
772
|
.s-breadcrumbs .s-breadcrumbs--link:hover {
|
|
830
|
-
color: var(--
|
|
773
|
+
color: var(--fc-medium);
|
|
831
774
|
}
|
|
832
775
|
.s-btn-group {
|
|
833
776
|
display: flex;
|
|
@@ -1217,81 +1160,28 @@ fieldset[disabled] a,
|
|
|
1217
1160
|
fieldset[disabled] .s-btn,
|
|
1218
1161
|
fieldset[disabled] .s-link {
|
|
1219
1162
|
box-shadow: none !important;
|
|
1220
|
-
opacity:
|
|
1163
|
+
opacity: var(--_o-disabled-static);
|
|
1221
1164
|
pointer-events: none;
|
|
1222
1165
|
}
|
|
1223
1166
|
fieldset[disabled] .s-checkbox,
|
|
1224
1167
|
fieldset[disabled] .s-input-message,
|
|
1225
|
-
fieldset[disabled] .s-label,
|
|
1226
1168
|
fieldset[disabled] .s-radio,
|
|
1227
1169
|
fieldset[disabled] .s-toggle-switch,
|
|
1228
1170
|
fieldset[disabled] .s-toggle-switch label {
|
|
1229
1171
|
cursor: not-allowed;
|
|
1230
|
-
opacity:
|
|
1172
|
+
opacity: var(--_o-disabled-static);
|
|
1231
1173
|
}
|
|
1232
1174
|
fieldset[disabled] .s-input,
|
|
1233
1175
|
fieldset[disabled] .s-textarea,
|
|
1234
1176
|
fieldset[disabled] .s-select > select {
|
|
1235
1177
|
cursor: not-allowed;
|
|
1236
|
-
opacity:
|
|
1237
|
-
}
|
|
1238
|
-
.s-label {
|
|
1239
|
-
padding: 0 var(--su2);
|
|
1240
|
-
color: var(--fc-dark);
|
|
1241
|
-
font-family: inherit;
|
|
1242
|
-
font-size: var(--fs-body2);
|
|
1243
|
-
font-weight: 600;
|
|
1244
|
-
}
|
|
1245
|
-
.s-label[for] {
|
|
1246
|
-
cursor: pointer;
|
|
1247
|
-
}
|
|
1248
|
-
.s-label--status {
|
|
1249
|
-
margin-left: var(--su4);
|
|
1250
|
-
padding: var(--su2) var(--su8);
|
|
1251
|
-
border-radius: 1000px;
|
|
1252
|
-
background-color: var(--black-050);
|
|
1253
|
-
color: var(--fc-medium);
|
|
1254
|
-
font-size: var(--fs-caption);
|
|
1255
|
-
font-weight: 400;
|
|
1256
|
-
vertical-align: text-bottom;
|
|
1257
|
-
}
|
|
1258
|
-
body.theme-highcontrast .s-label--status {
|
|
1259
|
-
border: 1px solid currentColor;
|
|
1260
|
-
}
|
|
1261
|
-
.s-label--status.s-label--status__required {
|
|
1262
|
-
background-color: var(--red-100);
|
|
1263
|
-
color: var(--red-600);
|
|
1264
|
-
}
|
|
1265
|
-
@media (prefers-color-scheme: dark) {
|
|
1266
|
-
body.theme-system .s-label--status.s-label--status__required {
|
|
1267
|
-
color: var(--red-800);
|
|
1268
|
-
}
|
|
1269
|
-
}
|
|
1270
|
-
body.theme-dark .s-label--status.s-label--status__required,
|
|
1271
|
-
.theme-dark__forced .s-label--status.s-label--status__required,
|
|
1272
|
-
body.theme-system .theme-dark__forced .s-label--status.s-label--status__required {
|
|
1273
|
-
color: var(--red-800);
|
|
1274
|
-
}
|
|
1275
|
-
.s-label--status.s-label--status__new {
|
|
1276
|
-
background-color: var(--green-100);
|
|
1277
|
-
color: var(--green-700);
|
|
1278
|
-
}
|
|
1279
|
-
.s-label--status.s-label--status__beta {
|
|
1280
|
-
background-color: var(--blue-100);
|
|
1281
|
-
color: var(--blue-700);
|
|
1178
|
+
opacity: var(--_o-disabled-static);
|
|
1282
1179
|
}
|
|
1283
1180
|
.s-description {
|
|
1284
1181
|
padding: 0 var(--su2);
|
|
1285
1182
|
color: var(--fc-medium);
|
|
1286
1183
|
font-size: var(--fs-caption);
|
|
1287
1184
|
}
|
|
1288
|
-
.s-label .s-description,
|
|
1289
|
-
.s-label .s-input-message {
|
|
1290
|
-
padding: 0;
|
|
1291
|
-
margin-top: 4px;
|
|
1292
|
-
margin-bottom: 0;
|
|
1293
|
-
font-weight: normal;
|
|
1294
|
-
}
|
|
1295
1185
|
.s-input-fill {
|
|
1296
1186
|
padding: 0.6em 0.7em;
|
|
1297
1187
|
border: 1px solid var(--bc-darker);
|
|
@@ -1412,7 +1302,7 @@ body.theme-system .theme-dark__forced .s-label--status.s-label--status__required
|
|
|
1412
1302
|
}
|
|
1413
1303
|
.s-checkbox[disabled],
|
|
1414
1304
|
.s-radio[disabled] {
|
|
1415
|
-
opacity:
|
|
1305
|
+
opacity: var(--_o-disabled-static);
|
|
1416
1306
|
cursor: not-allowed;
|
|
1417
1307
|
}
|
|
1418
1308
|
@supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) {
|
|
@@ -1503,52 +1393,59 @@ body.theme-highcontrast .s-input:focus-within {
|
|
|
1503
1393
|
}
|
|
1504
1394
|
.s-input[disabled],
|
|
1505
1395
|
.s-textarea[disabled],
|
|
1506
|
-
.s-select > select[disabled],
|
|
1507
|
-
.s-input[read-only],
|
|
1508
|
-
.s-textarea[read-only],
|
|
1509
|
-
.s-select > select[read-only] {
|
|
1510
|
-
cursor: not-allowed;
|
|
1511
|
-
opacity: 0.5;
|
|
1512
|
-
}
|
|
1513
|
-
body.theme-highcontrast .s-input[disabled],
|
|
1514
|
-
body.theme-highcontrast .s-textarea[disabled],
|
|
1515
|
-
body.theme-highcontrast .s-select > select[disabled],
|
|
1516
|
-
body.theme-highcontrast .s-input[read-only],
|
|
1517
|
-
body.theme-highcontrast .s-textarea[read-only],
|
|
1518
|
-
body.theme-highcontrast .s-select > select[read-only] {
|
|
1519
|
-
opacity: 0.5;
|
|
1520
|
-
}
|
|
1521
|
-
.s-input[disabled],
|
|
1522
|
-
.s-textarea[disabled],
|
|
1523
1396
|
.s-select > select[disabled] {
|
|
1524
1397
|
cursor: not-allowed;
|
|
1525
|
-
opacity:
|
|
1398
|
+
opacity: var(--_o-disabled-static);
|
|
1399
|
+
}
|
|
1400
|
+
.s-input[readonly],
|
|
1401
|
+
.s-textarea[readonly],
|
|
1402
|
+
.s-select > select[readonly],
|
|
1403
|
+
.is-readonly .s-input,
|
|
1404
|
+
.is-readonly .s-textarea,
|
|
1405
|
+
.is-readonly .s-select > select {
|
|
1406
|
+
border-color: var(--bc-light);
|
|
1407
|
+
background-color: var(--black-050);
|
|
1408
|
+
color: var(--black-200);
|
|
1409
|
+
cursor: not-allowed;
|
|
1410
|
+
}
|
|
1411
|
+
body.theme-highcontrast .s-input[readonly],
|
|
1412
|
+
body.theme-highcontrast .s-textarea[readonly],
|
|
1413
|
+
body.theme-highcontrast .s-select > select[readonly],
|
|
1414
|
+
body.theme-highcontrast .is-readonly .s-input,
|
|
1415
|
+
body.theme-highcontrast .is-readonly .s-textarea,
|
|
1416
|
+
body.theme-highcontrast .is-readonly .s-select > select {
|
|
1417
|
+
color: var(--fc-light);
|
|
1526
1418
|
}
|
|
1527
1419
|
.is-disabled,
|
|
1420
|
+
.is-readonly,
|
|
1528
1421
|
.has-success,
|
|
1529
1422
|
.has-error,
|
|
1530
1423
|
.has-warning {
|
|
1531
1424
|
position: relative;
|
|
1532
1425
|
}
|
|
1533
1426
|
.is-disabled .s-input,
|
|
1427
|
+
.is-readonly .s-input,
|
|
1534
1428
|
.has-success .s-input,
|
|
1535
1429
|
.has-error .s-input,
|
|
1536
1430
|
.has-warning .s-input {
|
|
1537
1431
|
padding-right: var(--su32);
|
|
1538
1432
|
}
|
|
1539
1433
|
.is-disabled .s-select .s-input-icon,
|
|
1434
|
+
.is-readonly .s-select .s-input-icon,
|
|
1540
1435
|
.has-success .s-select .s-input-icon,
|
|
1541
1436
|
.has-error .s-select .s-input-icon,
|
|
1542
1437
|
.has-warning .s-select .s-input-icon {
|
|
1543
1438
|
right: var(--su32);
|
|
1544
1439
|
}
|
|
1545
1440
|
.is-disabled .s-textarea,
|
|
1441
|
+
.is-readonly .s-textarea,
|
|
1546
1442
|
.has-success .s-textarea,
|
|
1547
1443
|
.has-error .s-textarea,
|
|
1548
1444
|
.has-warning .s-textarea {
|
|
1549
1445
|
padding-right: var(--su48);
|
|
1550
1446
|
}
|
|
1551
1447
|
.is-disabled .s-textarea ~ .s-input-icon,
|
|
1448
|
+
.is-readonly .s-textarea ~ .s-input-icon,
|
|
1552
1449
|
.has-success .s-textarea ~ .s-input-icon,
|
|
1553
1450
|
.has-error .s-textarea ~ .s-input-icon,
|
|
1554
1451
|
.has-warning .s-textarea ~ .s-input-icon {
|
|
@@ -1556,6 +1453,7 @@ body.theme-highcontrast .s-select > select[read-only] {
|
|
|
1556
1453
|
right: 1.5em;
|
|
1557
1454
|
}
|
|
1558
1455
|
.is-disabled .s-input-message a,
|
|
1456
|
+
.is-readonly .s-input-message a,
|
|
1559
1457
|
.has-success .s-input-message a,
|
|
1560
1458
|
.has-error .s-input-message a,
|
|
1561
1459
|
.has-warning .s-input-message a {
|
|
@@ -1640,19 +1538,17 @@ body.theme-highcontrast .s-select > select[read-only] {
|
|
|
1640
1538
|
.is-disabled .s-select:after {
|
|
1641
1539
|
border-color: var(--bc-darker) transparent;
|
|
1642
1540
|
}
|
|
1643
|
-
.is-disabled .s-label,
|
|
1644
1541
|
.is-disabled .s-description {
|
|
1645
|
-
opacity:
|
|
1646
|
-
}
|
|
1647
|
-
.is-disabled .s-label .s-description,
|
|
1648
|
-
.is-disabled .s-description .s-description {
|
|
1649
|
-
opacity: unset;
|
|
1542
|
+
opacity: var(--_o-disabled-static);
|
|
1650
1543
|
}
|
|
1651
1544
|
.is-disabled .s-input-icon {
|
|
1652
1545
|
color: var(--black-400);
|
|
1653
1546
|
}
|
|
1654
|
-
.is-
|
|
1655
|
-
|
|
1547
|
+
.is-readonly .s-input-icon {
|
|
1548
|
+
color: var(--black-200);
|
|
1549
|
+
}
|
|
1550
|
+
body.theme-highcontrast .is-readonly .s-input-icon {
|
|
1551
|
+
color: var(--fc-light);
|
|
1656
1552
|
}
|
|
1657
1553
|
.s-input-icon {
|
|
1658
1554
|
position: absolute;
|
|
@@ -1673,25 +1569,21 @@ body.theme-highcontrast .s-select > select[read-only] {
|
|
|
1673
1569
|
}
|
|
1674
1570
|
.s-input__sm,
|
|
1675
1571
|
.s-textarea__sm,
|
|
1676
|
-
.s-label__sm,
|
|
1677
1572
|
.s-select__sm > select {
|
|
1678
1573
|
font-size: var(--fs-caption);
|
|
1679
1574
|
}
|
|
1680
1575
|
.s-input__md,
|
|
1681
1576
|
.s-textarea__md,
|
|
1682
|
-
.s-label__md,
|
|
1683
1577
|
.s-select__md > select {
|
|
1684
1578
|
font-size: var(--fs-body3);
|
|
1685
1579
|
}
|
|
1686
1580
|
.s-input__lg,
|
|
1687
1581
|
.s-textarea__lg,
|
|
1688
|
-
.s-label__lg,
|
|
1689
1582
|
.s-select__lg > select {
|
|
1690
1583
|
font-size: var(--fs-title);
|
|
1691
1584
|
}
|
|
1692
1585
|
.s-input__xl,
|
|
1693
1586
|
.s-textarea__xl,
|
|
1694
|
-
.s-label__xl,
|
|
1695
1587
|
.s-select__xl > select {
|
|
1696
1588
|
font-size: var(--fs-headline1);
|
|
1697
1589
|
}
|
|
@@ -1726,6 +1618,101 @@ body.theme-highcontrast .s-select > select[read-only] {
|
|
|
1726
1618
|
padding-bottom: 0.4em;
|
|
1727
1619
|
}
|
|
1728
1620
|
}
|
|
1621
|
+
.s-label {
|
|
1622
|
+
--_fs: var(--fs-body2);
|
|
1623
|
+
color: var(--fc-dark);
|
|
1624
|
+
font-family: inherit;
|
|
1625
|
+
font-size: var(--_fs);
|
|
1626
|
+
font-weight: 600;
|
|
1627
|
+
padding: 0 var(--su2);
|
|
1628
|
+
}
|
|
1629
|
+
.s-label[for] {
|
|
1630
|
+
cursor: pointer;
|
|
1631
|
+
}
|
|
1632
|
+
fieldset[disabled] .s-label,
|
|
1633
|
+
.is-disabled .s-label {
|
|
1634
|
+
cursor: not-allowed;
|
|
1635
|
+
opacity: var(--_o-disabled-static);
|
|
1636
|
+
}
|
|
1637
|
+
fieldset[disabled] .s-label .s-description,
|
|
1638
|
+
.is-disabled .s-label .s-description {
|
|
1639
|
+
opacity: unset;
|
|
1640
|
+
}
|
|
1641
|
+
.is-readonly .s-label {
|
|
1642
|
+
cursor: not-allowed;
|
|
1643
|
+
}
|
|
1644
|
+
.s-label .s-description,
|
|
1645
|
+
.s-label .s-input-message {
|
|
1646
|
+
font-weight: normal;
|
|
1647
|
+
margin-bottom: 0;
|
|
1648
|
+
margin-top: var(--su4);
|
|
1649
|
+
padding: 0;
|
|
1650
|
+
}
|
|
1651
|
+
.s-label.s-label__sm {
|
|
1652
|
+
--_fs: var(--fs-caption);
|
|
1653
|
+
}
|
|
1654
|
+
.s-label.s-label__md {
|
|
1655
|
+
--_fs: var(--fs-body3);
|
|
1656
|
+
}
|
|
1657
|
+
.s-label.s-label__lg {
|
|
1658
|
+
--_fs: var(--fs-title);
|
|
1659
|
+
}
|
|
1660
|
+
.s-label.s-label__xl {
|
|
1661
|
+
--_fs: var(--fs-headline1);
|
|
1662
|
+
}
|
|
1663
|
+
.s-label--status {
|
|
1664
|
+
--_b: none;
|
|
1665
|
+
--_bg: var(--black-050);
|
|
1666
|
+
--_fc: var(--fc-medium);
|
|
1667
|
+
background-color: var(--_bg);
|
|
1668
|
+
border: var(--_b);
|
|
1669
|
+
border-radius: 1000px;
|
|
1670
|
+
color: var(--_fc);
|
|
1671
|
+
font-size: var(--fs-caption);
|
|
1672
|
+
font-weight: 400;
|
|
1673
|
+
margin-left: var(--su4);
|
|
1674
|
+
padding: var(--su2) var(--su8);
|
|
1675
|
+
vertical-align: text-bottom;
|
|
1676
|
+
}
|
|
1677
|
+
body.theme-highcontrast .s-label--status {
|
|
1678
|
+
--_b: var(--su-static1) solid currentColor;
|
|
1679
|
+
}
|
|
1680
|
+
.s-label--status.s-label--status__required {
|
|
1681
|
+
--_bg: var(--red-100);
|
|
1682
|
+
--_fc: var(--red-700);
|
|
1683
|
+
}
|
|
1684
|
+
@media (prefers-color-scheme: dark) {
|
|
1685
|
+
body.theme-system .s-label--status.s-label--status__required {
|
|
1686
|
+
--_bg: var(--red-050);
|
|
1687
|
+
--_fc: var(--red-800);
|
|
1688
|
+
}
|
|
1689
|
+
}
|
|
1690
|
+
body.theme-dark .s-label--status.s-label--status__required,
|
|
1691
|
+
.theme-dark__forced .s-label--status.s-label--status__required,
|
|
1692
|
+
body.theme-system .theme-dark__forced .s-label--status.s-label--status__required {
|
|
1693
|
+
--_bg: var(--red-050);
|
|
1694
|
+
--_fc: var(--red-800);
|
|
1695
|
+
}
|
|
1696
|
+
.s-label--status.s-label--status__new {
|
|
1697
|
+
--_bg: var(--green-100);
|
|
1698
|
+
--_fc: var(--green-700);
|
|
1699
|
+
}
|
|
1700
|
+
@media (prefers-color-scheme: dark) {
|
|
1701
|
+
body.theme-system .s-label--status.s-label--status__new {
|
|
1702
|
+
--_bg: var(--green-050);
|
|
1703
|
+
--_fc: var(--green-800);
|
|
1704
|
+
}
|
|
1705
|
+
}
|
|
1706
|
+
body.theme-dark .s-label--status.s-label--status__new,
|
|
1707
|
+
.theme-dark__forced .s-label--status.s-label--status__new,
|
|
1708
|
+
body.theme-system .theme-dark__forced .s-label--status.s-label--status__new {
|
|
1709
|
+
--_bg: var(--green-050);
|
|
1710
|
+
--_fc: var(--green-800);
|
|
1711
|
+
}
|
|
1712
|
+
.s-label--status.s-label--status__beta {
|
|
1713
|
+
--_bg: var(--blue-100);
|
|
1714
|
+
--_fc: var(--blue-700);
|
|
1715
|
+
}
|
|
1729
1716
|
.s-menu {
|
|
1730
1717
|
list-style: none;
|
|
1731
1718
|
margin: 0;
|
|
@@ -2384,7 +2371,6 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2384
2371
|
line-height: var(--lh-md);
|
|
2385
2372
|
font-weight: normal;
|
|
2386
2373
|
word-break: break-word !important;
|
|
2387
|
-
word-wrap: break-word !important;
|
|
2388
2374
|
overflow-wrap: break-word !important;
|
|
2389
2375
|
-webkit-hyphens: auto !important;
|
|
2390
2376
|
-moz-hyphens: auto !important;
|
|
@@ -2401,7 +2387,6 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2401
2387
|
}
|
|
2402
2388
|
.s-post-summary--content .s-post-summary--content-title a {
|
|
2403
2389
|
word-break: break-word !important;
|
|
2404
|
-
word-wrap: break-word !important;
|
|
2405
2390
|
overflow-wrap: break-word !important;
|
|
2406
2391
|
-webkit-hyphens: auto !important;
|
|
2407
2392
|
-moz-hyphens: auto !important;
|
|
@@ -2435,7 +2420,6 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2435
2420
|
-webkit-box-orient: vertical;
|
|
2436
2421
|
overflow: hidden;
|
|
2437
2422
|
word-break: break-word !important;
|
|
2438
|
-
word-wrap: break-word !important;
|
|
2439
2423
|
overflow-wrap: break-word !important;
|
|
2440
2424
|
-webkit-hyphens: auto !important;
|
|
2441
2425
|
-moz-hyphens: auto !important;
|
|
@@ -2526,11 +2510,11 @@ body.theme-highcontrast .s-post-summary--answer:before {
|
|
|
2526
2510
|
}
|
|
2527
2511
|
.s-post-summary__ignored .s-post-summary--content > *:not(.s-post-summary--content-menu-button):not(.s-post-summary--meta),
|
|
2528
2512
|
.s-post-summary__deleted .s-post-summary--content > *:not(.s-post-summary--content-menu-button):not(.s-post-summary--meta) {
|
|
2529
|
-
opacity:
|
|
2513
|
+
opacity: calc(var(--_o-disabled-static) * 1.2);
|
|
2530
2514
|
}
|
|
2531
2515
|
.s-post-summary__ignored .s-post-summary--stats-item:not(.s-badge):not(.is-deleted),
|
|
2532
2516
|
.s-post-summary__deleted .s-post-summary--stats-item:not(.s-badge):not(.is-deleted) {
|
|
2533
|
-
opacity:
|
|
2517
|
+
opacity: calc(var(--_o-disabled-static) * 1.2);
|
|
2534
2518
|
filter: grayscale(100%);
|
|
2535
2519
|
}
|
|
2536
2520
|
.s-post-summary__ignored .s-post-summary--content-title a,
|
|
@@ -2553,12 +2537,12 @@ body.theme-highcontrast .s-post-summary--answer:before {
|
|
|
2553
2537
|
}
|
|
2554
2538
|
.s-post-summary__ignored .s-post-summary--meta > *:not(.s-post-summary--meta-tags),
|
|
2555
2539
|
.s-post-summary__deleted .s-post-summary--meta > *:not(.s-post-summary--meta-tags) {
|
|
2556
|
-
opacity:
|
|
2540
|
+
opacity: calc(var(--_o-disabled-static) * 1.2);
|
|
2557
2541
|
filter: grayscale(100%);
|
|
2558
2542
|
}
|
|
2559
2543
|
.s-post-summary__ignored .s-post-summary--meta-tags > a,
|
|
2560
2544
|
.s-post-summary__deleted .s-post-summary--meta-tags > a {
|
|
2561
|
-
opacity:
|
|
2545
|
+
opacity: calc(var(--_o-disabled-static) * 1.2);
|
|
2562
2546
|
filter: grayscale(100%);
|
|
2563
2547
|
}
|
|
2564
2548
|
.s-progress,
|
|
@@ -2699,7 +2683,7 @@ body.theme-highcontrast .s-progress__privilege .s-progress--bar {
|
|
|
2699
2683
|
border-radius: 0;
|
|
2700
2684
|
padding: var(--su12) var(--su6) 0 var(--su6);
|
|
2701
2685
|
text-align: center;
|
|
2702
|
-
color: var(--black-
|
|
2686
|
+
color: var(--black-500);
|
|
2703
2687
|
z-index: var(--zi-base);
|
|
2704
2688
|
}
|
|
2705
2689
|
.s-progress.s-progress__stepped .s-progress--stop {
|
|
@@ -2791,13 +2775,13 @@ body.theme-highcontrast .s-progress.s-progress__stepped .s-progress--stop {
|
|
|
2791
2775
|
--s-prose-spacing-condensed: calc(var(--s-prose-spacing) / 2);
|
|
2792
2776
|
font-size: 15px;
|
|
2793
2777
|
line-height: var(--s-prose-line-height);
|
|
2794
|
-
|
|
2778
|
+
overflow-wrap: break-word;
|
|
2795
2779
|
}
|
|
2796
2780
|
.s-prose p {
|
|
2797
2781
|
margin-bottom: var(--s-prose-spacing);
|
|
2798
2782
|
}
|
|
2799
2783
|
.s-prose pre {
|
|
2800
|
-
|
|
2784
|
+
overflow-wrap: normal;
|
|
2801
2785
|
}
|
|
2802
2786
|
.s-prose code {
|
|
2803
2787
|
font-size: var(--fs-body1);
|
|
@@ -2819,10 +2803,10 @@ body.theme-highcontrast .s-prose hr {
|
|
|
2819
2803
|
background-color: var(--black-500);
|
|
2820
2804
|
}
|
|
2821
2805
|
.s-prose li {
|
|
2822
|
-
|
|
2806
|
+
overflow-wrap: break-word;
|
|
2823
2807
|
}
|
|
2824
2808
|
.s-prose li pre {
|
|
2825
|
-
|
|
2809
|
+
overflow-wrap: normal;
|
|
2826
2810
|
}
|
|
2827
2811
|
.s-prose p:last-child,
|
|
2828
2812
|
.s-prose dl:last-child,
|
|
@@ -3347,6 +3331,39 @@ body.theme-system .theme-dark__forced .s-prose kbd {
|
|
|
3347
3331
|
}
|
|
3348
3332
|
}
|
|
3349
3333
|
}
|
|
3334
|
+
.is-loading {
|
|
3335
|
+
position: relative;
|
|
3336
|
+
padding-left: 2.2em;
|
|
3337
|
+
}
|
|
3338
|
+
.is-loading:before {
|
|
3339
|
+
content: "";
|
|
3340
|
+
position: absolute;
|
|
3341
|
+
opacity: 0.3;
|
|
3342
|
+
left: 0.6em;
|
|
3343
|
+
top: calc(50% - 0.6em);
|
|
3344
|
+
width: 1.23076923em;
|
|
3345
|
+
height: 1.23076923em;
|
|
3346
|
+
border-width: 2px;
|
|
3347
|
+
border-style: solid;
|
|
3348
|
+
border-color: currentColor;
|
|
3349
|
+
border-radius: var(--br-circle);
|
|
3350
|
+
}
|
|
3351
|
+
.is-loading:after {
|
|
3352
|
+
content: "";
|
|
3353
|
+
position: absolute;
|
|
3354
|
+
left: 0.6em;
|
|
3355
|
+
top: calc(50% - 0.6em);
|
|
3356
|
+
width: 1.23076923em;
|
|
3357
|
+
height: 1.23076923em;
|
|
3358
|
+
border-width: 2px;
|
|
3359
|
+
border-style: solid;
|
|
3360
|
+
border-color: transparent;
|
|
3361
|
+
border-left-color: currentColor;
|
|
3362
|
+
border-radius: var(--br-circle);
|
|
3363
|
+
animation: s-spinner-rotate 0.9s infinite cubic-bezier(0.5, 0.1, 0.5, 0.9);
|
|
3364
|
+
filter: invert(0);
|
|
3365
|
+
transform-origin: 50% 50% 1px;
|
|
3366
|
+
}
|
|
3350
3367
|
@keyframes s-spinner-rotate {
|
|
3351
3368
|
from {
|
|
3352
3369
|
transform: rotate(0deg);
|
|
@@ -3541,11 +3558,7 @@ body.theme-system .theme-dark__forced .s-prose kbd {
|
|
|
3541
3558
|
}
|
|
3542
3559
|
.s-table tr.is-disabled th:not(.is-enabled),
|
|
3543
3560
|
.s-table tr.is-disabled td:not(.is-enabled) {
|
|
3544
|
-
opacity: 0.
|
|
3545
|
-
}
|
|
3546
|
-
body.theme-highcontrast .s-table tr.is-disabled th:not(.is-enabled),
|
|
3547
|
-
body.theme-highcontrast .s-table tr.is-disabled td:not(.is-enabled) {
|
|
3548
|
-
opacity: 0.8;
|
|
3561
|
+
opacity: calc(var(--_o-disabled) * 0.6);
|
|
3549
3562
|
}
|
|
3550
3563
|
.s-table--cell1 {
|
|
3551
3564
|
width: 8.33333333%;
|
|
@@ -4021,84 +4034,77 @@ body.theme-highcontrast .s-topbar__dark .s-badge {
|
|
|
4021
4034
|
}
|
|
4022
4035
|
}
|
|
4023
4036
|
.s-uploader {
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
justify-content: center;
|
|
4030
|
-
padding: var(--su8) var(--su16);
|
|
4037
|
+
--_bg: var(--black-025);
|
|
4038
|
+
--_bg-focus: var(--black-050);
|
|
4039
|
+
--_bg-bc: var(--black-150);
|
|
4040
|
+
--_focus-ring-color: var(--focus-ring);
|
|
4041
|
+
--_bg-b-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23000000' stroke-width='8' stroke-dasharray='7%2c 22' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
|
|
4031
4042
|
position: relative;
|
|
4032
|
-
text-align: center;
|
|
4033
|
-
}
|
|
4034
|
-
.s-uploader:before {
|
|
4035
|
-
--s-uploader-background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23000000' stroke-width='8' stroke-dasharray='7%2c 22' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
|
|
4036
|
-
content: '';
|
|
4037
|
-
display: block;
|
|
4038
|
-
position: absolute;
|
|
4039
|
-
top: 0;
|
|
4040
|
-
left: 0;
|
|
4041
|
-
right: 0;
|
|
4042
|
-
bottom: 0;
|
|
4043
|
-
background-color: var(--black-150);
|
|
4044
|
-
-webkit-mask-image: var(--s-uploader-background-image);
|
|
4045
|
-
mask-image: var(--s-uploader-background-image);
|
|
4046
|
-
border-radius: var(--br-lg);
|
|
4047
|
-
}
|
|
4048
|
-
body.theme-highcontrast .s-uploader:before {
|
|
4049
|
-
background-color: var(--black-400);
|
|
4050
4043
|
}
|
|
4051
|
-
.s-uploader
|
|
4052
|
-
|
|
4044
|
+
body.theme-highcontrast .s-uploader {
|
|
4045
|
+
--_bg-bc-hc: var(--black-400);
|
|
4053
4046
|
}
|
|
4054
|
-
.s-uploader.
|
|
4055
|
-
|
|
4047
|
+
.s-uploader.is-active {
|
|
4048
|
+
--_bg: var(--black-050);
|
|
4049
|
+
--_bg-bc: var(--black-200);
|
|
4056
4050
|
}
|
|
4057
|
-
|
|
4058
|
-
|
|
4051
|
+
.s-uploader.is-disabled {
|
|
4052
|
+
opacity: var(--_o-disabled-static);
|
|
4059
4053
|
}
|
|
4060
|
-
.s-uploader.has-error
|
|
4061
|
-
|
|
4054
|
+
.s-uploader.has-error {
|
|
4055
|
+
--_bg: var(--red-050);
|
|
4056
|
+
--_bg-focus: var(--red-100);
|
|
4057
|
+
--_bg-bc: var(--red-400);
|
|
4058
|
+
--_bg-bc-hc-state: var(--red-400);
|
|
4059
|
+
--_focus-ring-color: var(--focus-ring-error);
|
|
4060
|
+
--_link-fc: var(--red-900);
|
|
4062
4061
|
}
|
|
4063
4062
|
.s-uploader.has-success {
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
background-color: var(--green-400);
|
|
4071
|
-
}
|
|
4072
|
-
.s-uploader.has-success .s-link {
|
|
4073
|
-
color: var(--green-900);
|
|
4074
|
-
}
|
|
4075
|
-
.s-uploader.has-warning {
|
|
4076
|
-
background-color: var(--yellow-050);
|
|
4077
|
-
}
|
|
4078
|
-
.s-uploader.has-warning:before {
|
|
4079
|
-
background-color: var(--yellow-400);
|
|
4080
|
-
}
|
|
4081
|
-
body.theme-highcontrast .s-uploader.has-warning:before {
|
|
4082
|
-
background-color: var(--yellow-400);
|
|
4083
|
-
}
|
|
4084
|
-
.s-uploader.has-warning .s-link {
|
|
4085
|
-
color: var(--yellow-900);
|
|
4086
|
-
}
|
|
4087
|
-
.s-uploader.is-active {
|
|
4088
|
-
background-color: var(--black-050);
|
|
4089
|
-
}
|
|
4090
|
-
.s-uploader.is-active:before {
|
|
4091
|
-
background-color: var(--black-200);
|
|
4092
|
-
}
|
|
4093
|
-
body.theme-highcontrast .s-uploader.is-active:before {
|
|
4094
|
-
background-color: var(--black);
|
|
4063
|
+
--_bg: var(--green-025);
|
|
4064
|
+
--_bg-focus: var(--green-050);
|
|
4065
|
+
--_bg-bc: var(--green-400);
|
|
4066
|
+
--_bg-bc-hc-state: var(--green-400);
|
|
4067
|
+
--_focus-ring-color: var(--focus-ring-success);
|
|
4068
|
+
--_link-fc: var(--green-900);
|
|
4095
4069
|
}
|
|
4096
|
-
.s-uploader.
|
|
4097
|
-
|
|
4070
|
+
.s-uploader.has-warning {
|
|
4071
|
+
--_bg: var(--yellow-050);
|
|
4072
|
+
--_bg-focus: var(--yellow-100);
|
|
4073
|
+
--_bg-bc: var(--yellow-400);
|
|
4074
|
+
--_bg-bc-hc-state: var(--yellow-400);
|
|
4075
|
+
--_focus-ring-color: var(--focus-ring-warning);
|
|
4076
|
+
--_link-fc: var(--yellow-900);
|
|
4077
|
+
}
|
|
4078
|
+
.s-uploader.has-error .s-link,
|
|
4079
|
+
.s-uploader.has-success .s-link,
|
|
4080
|
+
.s-uploader.has-warning .s-link {
|
|
4081
|
+
color: var(--_link-fc);
|
|
4098
4082
|
}
|
|
4099
4083
|
.s-uploader input[type="file"]::file-selector-button {
|
|
4100
4084
|
cursor: pointer;
|
|
4101
4085
|
}
|
|
4086
|
+
.s-uploader .s-uploader--container {
|
|
4087
|
+
align-items: center;
|
|
4088
|
+
background-color: var(--_bg);
|
|
4089
|
+
border-radius: var(--br-lg);
|
|
4090
|
+
display: flex;
|
|
4091
|
+
flex-direction: column;
|
|
4092
|
+
justify-content: center;
|
|
4093
|
+
min-height: var(--su-static128);
|
|
4094
|
+
padding: var(--su8) var(--su16);
|
|
4095
|
+
position: relative;
|
|
4096
|
+
text-align: center;
|
|
4097
|
+
}
|
|
4098
|
+
.s-uploader .s-uploader--container:before {
|
|
4099
|
+
-webkit-mask-image: var(--_bg-b-image);
|
|
4100
|
+
mask-image: var(--_bg-b-image);
|
|
4101
|
+
background-color: var(--_bg-bc-hc-state, var(--_bg-bc-hc, var(--_bg-bc)));
|
|
4102
|
+
content: '';
|
|
4103
|
+
border-radius: var(--br-lg);
|
|
4104
|
+
display: block;
|
|
4105
|
+
position: absolute;
|
|
4106
|
+
inset: 0;
|
|
4107
|
+
}
|
|
4102
4108
|
.s-uploader .s-uploader--input {
|
|
4103
4109
|
cursor: pointer;
|
|
4104
4110
|
height: 100%;
|
|
@@ -4106,10 +4112,11 @@ body.theme-highcontrast .s-uploader.is-active:before {
|
|
|
4106
4112
|
opacity: 0;
|
|
4107
4113
|
position: absolute;
|
|
4108
4114
|
width: 100%;
|
|
4115
|
+
z-index: var(--zi-selected);
|
|
4109
4116
|
}
|
|
4110
4117
|
.s-uploader .s-uploader--input:focus:focus-visible + .s-uploader--container {
|
|
4111
|
-
background-color: var(--
|
|
4112
|
-
box-shadow: 0 0 0 var(--su-static4) var(--
|
|
4118
|
+
background-color: var(--_bg-focus);
|
|
4119
|
+
box-shadow: 0 0 0 var(--su-static4) var(--_focus-ring-color);
|
|
4113
4120
|
}
|
|
4114
4121
|
.s-uploader .s-uploader--preview {
|
|
4115
4122
|
max-width: 100%;
|
|
@@ -4170,8 +4177,7 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
|
|
|
4170
4177
|
object-fit: cover;
|
|
4171
4178
|
}
|
|
4172
4179
|
.s-uploader .s-uploader--previews.has-multiple .s-uploader--preview-thumbnail:not(img) {
|
|
4173
|
-
|
|
4174
|
-
background-image: var(--s-uploader--preview-document-icon);
|
|
4180
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' fill='%23535A60' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M3 3a2 2 0 012-2h6l4 4v10a2 2 0 01-2 2H5a2 2 0 01-2-2V3zm7-1.5V6h4.5L10 1.5z'%3E%3C/path%3E%3C/svg%3E");
|
|
4175
4181
|
background-position: center;
|
|
4176
4182
|
background-repeat: no-repeat;
|
|
4177
4183
|
}
|
|
@@ -4897,6 +4903,8 @@ body.theme-system .theme-light__forced {
|
|
|
4897
4903
|
--focus-ring-warning: hsla(47, 79%, 58%, 0.4);
|
|
4898
4904
|
--focus-ring-error: hsla(358, 62%, 47%, 0.15);
|
|
4899
4905
|
--focus-ring-muted: hsla(210, 8%, 15%, 0.1);
|
|
4906
|
+
--_o-disabled: 0.5;
|
|
4907
|
+
--_o-disabled-static: 0.5;
|
|
4900
4908
|
--bs-sm: 0 1px 2px hsla(0, 0%, 0%, 0.05), 0 1px 4px hsla(0, 0%, 0%, 0.05), 0 2px 8px hsla(0, 0%, 0%, 0.05);
|
|
4901
4909
|
--bs-md: 0 1px 3px hsla(0, 0%, 0%, 0.06), 0 2px 6px hsla(0, 0%, 0%, 0.06), 0 3px 8px hsla(0, 0%, 0%, 0.09);
|
|
4902
4910
|
--bs-lg: 0 1px 4px hsla(0, 0%, 0%, 0.09), 0 3px 8px hsla(0, 0%, 0%, 0.09), 0 4px 13px hsla(0, 0%, 0%, 0.13);
|
|
@@ -5068,6 +5076,8 @@ body:not(.theme-dark) .theme-dark__forced {
|
|
|
5068
5076
|
--focus-ring-warning: hsla(47, 79%, 58%, 0.4);
|
|
5069
5077
|
--focus-ring-error: hsla(358, 62%, 52%, 0.3);
|
|
5070
5078
|
--focus-ring-muted: hsla(0, 0%, 100%, 0.1);
|
|
5079
|
+
--_o-disabled: 0.5;
|
|
5080
|
+
--_o-disabled-static: 0.5;
|
|
5071
5081
|
--bs-sm: 0 1px 2px hsla(0, 0%, 0%, 0.1), 0 1px 4px hsla(0, 0%, 0%, 0.1), 0 2px 8px hsla(0, 0%, 0%, 0.1);
|
|
5072
5082
|
--bs-md: 0 1px 3px hsla(0, 0%, 0%, 0.11), 0 2px 6px hsla(0, 0%, 0%, 0.11), 0 3px 8px hsla(0, 0%, 0%, 0.14);
|
|
5073
5083
|
--bs-lg: 0 1px 4px hsla(0, 0%, 0%, 0.14), 0 3px 8px hsla(0, 0%, 0%, 0.14), 0 4px 13px hsla(0, 0%, 0%, 0.18);
|
|
@@ -5237,6 +5247,8 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
5237
5247
|
--focus-ring-warning: hsla(47, 79%, 58%, 0.4);
|
|
5238
5248
|
--focus-ring-error: hsla(358, 62%, 52%, 0.3);
|
|
5239
5249
|
--focus-ring-muted: hsla(0, 0%, 100%, 0.1);
|
|
5250
|
+
--_o-disabled: 0.5;
|
|
5251
|
+
--_o-disabled-static: 0.5;
|
|
5240
5252
|
--bs-sm: 0 1px 2px hsla(0, 0%, 0%, 0.1), 0 1px 4px hsla(0, 0%, 0%, 0.1), 0 2px 8px hsla(0, 0%, 0%, 0.1);
|
|
5241
5253
|
--bs-md: 0 1px 3px hsla(0, 0%, 0%, 0.11), 0 2px 6px hsla(0, 0%, 0%, 0.11), 0 3px 8px hsla(0, 0%, 0%, 0.14);
|
|
5242
5254
|
--bs-lg: 0 1px 4px hsla(0, 0%, 0%, 0.14), 0 3px 8px hsla(0, 0%, 0%, 0.14), 0 4px 13px hsla(0, 0%, 0%, 0.18);
|
|
@@ -5407,6 +5419,7 @@ body.theme-system.theme-highcontrast .theme-light__forced {
|
|
|
5407
5419
|
--focus-ring-warning: hsla(47, 76%, 46%, 0.9);
|
|
5408
5420
|
--focus-ring-error: hsla(358, 62%, 47%, 0.9);
|
|
5409
5421
|
--focus-ring-muted: hsla(210, 8%, 55%, 0.95);
|
|
5422
|
+
--_o-disabled: 0.8;
|
|
5410
5423
|
--bs-sm: none;
|
|
5411
5424
|
--bs-md: none;
|
|
5412
5425
|
--bs-lg: none;
|
|
@@ -5528,6 +5541,7 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
|
|
|
5528
5541
|
--fc-dark: var(--black-900);
|
|
5529
5542
|
--fc-medium: var(--black-700);
|
|
5530
5543
|
--fc-light: var(--black-500);
|
|
5544
|
+
--_o-disabled: 0.8;
|
|
5531
5545
|
--bs-sm: none;
|
|
5532
5546
|
--bs-md: none;
|
|
5533
5547
|
--bs-lg: none;
|
|
@@ -5649,6 +5663,7 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
|
|
|
5649
5663
|
--fc-dark: var(--black-900);
|
|
5650
5664
|
--fc-medium: var(--black-700);
|
|
5651
5665
|
--fc-light: var(--black-500);
|
|
5666
|
+
--_o-disabled: 0.8;
|
|
5652
5667
|
--bs-sm: none;
|
|
5653
5668
|
--bs-md: none;
|
|
5654
5669
|
--bs-lg: none;
|
|
@@ -13214,23 +13229,18 @@ p {
|
|
|
13214
13229
|
}
|
|
13215
13230
|
.ow-normal {
|
|
13216
13231
|
overflow-wrap: normal !important;
|
|
13217
|
-
word-wrap: normal !important;
|
|
13218
13232
|
}
|
|
13219
13233
|
.ow-break-word {
|
|
13220
13234
|
overflow-wrap: break-word !important;
|
|
13221
|
-
word-wrap: break-word !important;
|
|
13222
13235
|
}
|
|
13223
13236
|
.ow-inherit {
|
|
13224
13237
|
overflow-wrap: inherit !important;
|
|
13225
|
-
word-wrap: inherit !important;
|
|
13226
13238
|
}
|
|
13227
13239
|
.ow-initial {
|
|
13228
13240
|
overflow-wrap: initial !important;
|
|
13229
|
-
word-wrap: initial !important;
|
|
13230
13241
|
}
|
|
13231
13242
|
.ow-unset {
|
|
13232
13243
|
overflow-wrap: unset !important;
|
|
13233
|
-
word-wrap: unset !important;
|
|
13234
13244
|
}
|
|
13235
13245
|
.hyphens-none {
|
|
13236
13246
|
hyphens: none !important;
|
|
@@ -13245,7 +13255,6 @@ p {
|
|
|
13245
13255
|
}
|
|
13246
13256
|
.break-word {
|
|
13247
13257
|
word-break: break-word !important;
|
|
13248
|
-
word-wrap: break-word !important;
|
|
13249
13258
|
overflow-wrap: break-word !important;
|
|
13250
13259
|
-webkit-hyphens: auto !important;
|
|
13251
13260
|
-moz-hyphens: auto !important;
|
|
@@ -13486,7 +13495,7 @@ ol {
|
|
|
13486
13495
|
padding: 0;
|
|
13487
13496
|
position: absolute;
|
|
13488
13497
|
width: 1px;
|
|
13489
|
-
|
|
13498
|
+
overflow-wrap: normal;
|
|
13490
13499
|
}
|
|
13491
13500
|
.float-left {
|
|
13492
13501
|
float: left !important;
|
|
@@ -19126,51 +19135,6 @@ body *:before,
|
|
|
19126
19135
|
body *:after {
|
|
19127
19136
|
box-sizing: inherit;
|
|
19128
19137
|
}
|
|
19129
|
-
.s-banner__body-pt {
|
|
19130
|
-
padding-top: 93px;
|
|
19131
|
-
}
|
|
19132
|
-
.s-banner {
|
|
19133
|
-
position: fixed;
|
|
19134
|
-
z-index: calc(var(--zi-navigation-fixed) - 1);
|
|
19135
|
-
top: 0;
|
|
19136
|
-
right: 0;
|
|
19137
|
-
left: 0;
|
|
19138
|
-
width: 100%;
|
|
19139
|
-
padding: var(--su12);
|
|
19140
|
-
border-top: 1px solid transparent;
|
|
19141
|
-
border-bottom: 1px solid transparent;
|
|
19142
|
-
border-radius: 0;
|
|
19143
|
-
box-shadow: none;
|
|
19144
|
-
color: var(--fc-medium);
|
|
19145
|
-
font-size: var(--fs-body1);
|
|
19146
|
-
}
|
|
19147
|
-
.s-banner[aria-hidden="true"] {
|
|
19148
|
-
visibility: hidden;
|
|
19149
|
-
opacity: 0;
|
|
19150
|
-
-webkit-transform: translate3d(0, -50px, 0);
|
|
19151
|
-
transform: translate3d(0, -50px, 0);
|
|
19152
|
-
}
|
|
19153
|
-
.s-banner[aria-hidden="false"] {
|
|
19154
|
-
visibility: visible;
|
|
19155
|
-
opacity: 1;
|
|
19156
|
-
-webkit-transform: translate3d(0, 49px, 0);
|
|
19157
|
-
transform: translate3d(0, 49px, 0);
|
|
19158
|
-
}
|
|
19159
|
-
.s-banner.is-pinned {
|
|
19160
|
-
z-index: calc(var(--zi-navigation-fixed) + 1);
|
|
19161
|
-
-webkit-transform: translate3d(0, 0, 0);
|
|
19162
|
-
transform: translate3d(0, 0, 0);
|
|
19163
|
-
}
|
|
19164
|
-
.s-banner.s-banner__important {
|
|
19165
|
-
border-color: transparent;
|
|
19166
|
-
color: var(--white);
|
|
19167
|
-
}
|
|
19168
|
-
.s-banner--container {
|
|
19169
|
-
position: relative;
|
|
19170
|
-
width: 100%;
|
|
19171
|
-
max-width: calc(var(--s-step) * 10);
|
|
19172
|
-
margin: 0 auto;
|
|
19173
|
-
}
|
|
19174
19138
|
.s-btn {
|
|
19175
19139
|
position: relative;
|
|
19176
19140
|
display: inline-block;
|
|
@@ -19218,7 +19182,7 @@ button[type="reset"] .s-btn {
|
|
|
19218
19182
|
box-shadow: 0 0 0 var(--su-static4) var(--focus-ring);
|
|
19219
19183
|
}
|
|
19220
19184
|
.s-btn[disabled] {
|
|
19221
|
-
opacity:
|
|
19185
|
+
opacity: var(--_o-disabled-static);
|
|
19222
19186
|
pointer-events: none;
|
|
19223
19187
|
box-shadow: none !important;
|
|
19224
19188
|
}
|
|
@@ -19282,7 +19246,7 @@ button[type="reset"] .s-btn {
|
|
|
19282
19246
|
border-bottom-width: 0;
|
|
19283
19247
|
}
|
|
19284
19248
|
.s-btn .s-btn--badge {
|
|
19285
|
-
opacity:
|
|
19249
|
+
opacity: var(--_o-disabled);
|
|
19286
19250
|
display: inline-block;
|
|
19287
19251
|
border-radius: var(--br-sm);
|
|
19288
19252
|
padding: var(--su2) calc(var(--su4) - var(--su1));
|
|
@@ -19290,9 +19254,6 @@ button[type="reset"] .s-btn {
|
|
|
19290
19254
|
line-height: var(--lh-xs);
|
|
19291
19255
|
background-color: currentColor;
|
|
19292
19256
|
}
|
|
19293
|
-
body.theme-highcontrast .s-btn .s-btn--badge {
|
|
19294
|
-
opacity: 0.8;
|
|
19295
|
-
}
|
|
19296
19257
|
.s-btn .s-btn--number {
|
|
19297
19258
|
color: var(--white);
|
|
19298
19259
|
}
|
|
@@ -19772,38 +19733,6 @@ body.theme-highcontrast .s-btn__link {
|
|
|
19772
19733
|
margin-bottom: -0.3em;
|
|
19773
19734
|
transition: opacity 200ms var(--te-smooth);
|
|
19774
19735
|
}
|
|
19775
|
-
.s-btn.is-loading {
|
|
19776
|
-
padding-left: 2.2em;
|
|
19777
|
-
}
|
|
19778
|
-
.s-btn.is-loading:before {
|
|
19779
|
-
content: "";
|
|
19780
|
-
position: absolute;
|
|
19781
|
-
opacity: 0.3;
|
|
19782
|
-
left: 0.6em;
|
|
19783
|
-
top: calc(50% - 0.6em);
|
|
19784
|
-
width: 1.23076923em;
|
|
19785
|
-
height: 1.23076923em;
|
|
19786
|
-
border-width: 2px;
|
|
19787
|
-
border-style: solid;
|
|
19788
|
-
border-color: currentColor;
|
|
19789
|
-
border-radius: var(--br-circle);
|
|
19790
|
-
}
|
|
19791
|
-
.s-btn.is-loading:after {
|
|
19792
|
-
content: "";
|
|
19793
|
-
position: absolute;
|
|
19794
|
-
left: 0.6em;
|
|
19795
|
-
top: calc(50% - 0.6em);
|
|
19796
|
-
width: 1.23076923em;
|
|
19797
|
-
height: 1.23076923em;
|
|
19798
|
-
border-width: 2px;
|
|
19799
|
-
border-style: solid;
|
|
19800
|
-
border-color: transparent;
|
|
19801
|
-
border-left-color: currentColor;
|
|
19802
|
-
border-radius: var(--br-circle);
|
|
19803
|
-
animation: s-spinner-rotate 0.9s infinite cubic-bezier(0.5, 0.1, 0.5, 0.9);
|
|
19804
|
-
filter: invert(0);
|
|
19805
|
-
transform-origin: 50% 50% 1px;
|
|
19806
|
-
}
|
|
19807
19736
|
.s-btn.is-loading .svg-icon:first-child {
|
|
19808
19737
|
margin-left: -23px;
|
|
19809
19738
|
opacity: 0;
|
|
@@ -20271,188 +20200,439 @@ body.theme-highcontrast a.s-link-preview--title.s-link__visited:active {
|
|
|
20271
20200
|
.s-link-preview--footer a:focus {
|
|
20272
20201
|
color: var(--black-600);
|
|
20273
20202
|
}
|
|
20274
|
-
.s-
|
|
20275
|
-
|
|
20276
|
-
border:
|
|
20277
|
-
border-
|
|
20278
|
-
color: var(--fc-medium);
|
|
20203
|
+
.s-banner {
|
|
20204
|
+
background: var(--_bg, var(--black-050));
|
|
20205
|
+
border-color: var(--_bc, var(--bc-medium));
|
|
20206
|
+
border-style: solid;
|
|
20207
|
+
color: var(--_fc, var(--fc-medium));
|
|
20279
20208
|
font-size: var(--fs-body1);
|
|
20280
|
-
|
|
20281
|
-
|
|
20282
|
-
|
|
20209
|
+
--_x-offset: 0;
|
|
20210
|
+
border-width: var(--su-static1) 0;
|
|
20211
|
+
inset: 0 0 auto 0;
|
|
20212
|
+
padding: var(--su12);
|
|
20213
|
+
position: fixed;
|
|
20283
20214
|
width: 100%;
|
|
20284
|
-
|
|
20285
|
-
|
|
20286
|
-
|
|
20287
|
-
pointer-events: all;
|
|
20215
|
+
z-index: calc(var(--zi-navigation-fixed) - 1);
|
|
20216
|
+
-webkit-transform: translate3d(0, var(--_x-offset), 0);
|
|
20217
|
+
transform: translate3d(0, var(--_x-offset), 0);
|
|
20288
20218
|
}
|
|
20289
|
-
.s-
|
|
20290
|
-
|
|
20219
|
+
.s-banner code {
|
|
20220
|
+
background: var(--_code-bg, transparent);
|
|
20221
|
+
}
|
|
20222
|
+
.s-banner .s-banner--btn {
|
|
20223
|
+
color: inherit;
|
|
20291
20224
|
padding: var(--su8);
|
|
20292
20225
|
}
|
|
20293
|
-
.s-
|
|
20226
|
+
.s-banner .s-banner--btn:focus,
|
|
20227
|
+
.s-banner .s-banner--btn:hover {
|
|
20228
|
+
background: var(--_btn-focus-bg, var(--black-100));
|
|
20229
|
+
}
|
|
20230
|
+
.s-banner .s-banner--btn:active {
|
|
20231
|
+
background: var(--_btn-active-bg, var(--black-150));
|
|
20232
|
+
}
|
|
20233
|
+
@media (prefers-color-scheme: dark) {
|
|
20234
|
+
body.theme-system .s-banner:not(.s-banner__important) {
|
|
20235
|
+
--_bc: var(--_bg);
|
|
20236
|
+
}
|
|
20237
|
+
}
|
|
20238
|
+
body.theme-dark .s-banner:not(.s-banner__important),
|
|
20239
|
+
.theme-dark__forced .s-banner:not(.s-banner__important),
|
|
20240
|
+
body.theme-system .theme-dark__forced .s-banner:not(.s-banner__important) {
|
|
20241
|
+
--_bc: var(--_bg);
|
|
20242
|
+
}
|
|
20243
|
+
body.theme-highcontrast .s-banner:not(.s-banner__important) {
|
|
20244
|
+
--_bc: currentColor;
|
|
20245
|
+
}
|
|
20246
|
+
@media (prefers-color-scheme: dark) {
|
|
20247
|
+
body.theme-highcontrast.theme-system .s-banner:not(.s-banner__important) {
|
|
20248
|
+
--_bc: currentColor;
|
|
20249
|
+
}
|
|
20250
|
+
}
|
|
20251
|
+
body.theme-highcontrast.theme-dark .s-banner:not(.s-banner__important) {
|
|
20252
|
+
--_bc: currentColor;
|
|
20253
|
+
}
|
|
20254
|
+
.s-banner__important {
|
|
20255
|
+
--_bc: var(--_bg);
|
|
20256
|
+
--_bg: var(--black-700);
|
|
20257
|
+
--_fc: var(--white);
|
|
20258
|
+
--_btn-focus-bg: var(--black-800);
|
|
20259
|
+
--_btn-active-bg: var(--black-900);
|
|
20260
|
+
}
|
|
20261
|
+
body.theme-highcontrast .s-banner__important {
|
|
20262
|
+
--_bc: var(--_bg);
|
|
20263
|
+
}
|
|
20264
|
+
.s-banner__danger {
|
|
20265
|
+
--_bc: var(--red-200);
|
|
20266
|
+
--_bg: var(--red-050);
|
|
20267
|
+
--_btn-focus-bg: var(--red-100);
|
|
20268
|
+
--_btn-active-bg: var(--red-200);
|
|
20269
|
+
}
|
|
20270
|
+
body.theme-highcontrast .s-banner__danger:not(.s-banner__important) {
|
|
20271
|
+
--_bg: var(--red-200);
|
|
20272
|
+
}
|
|
20273
|
+
.s-banner__danger.s-banner__important {
|
|
20274
|
+
--_bc: var(--_bg);
|
|
20275
|
+
--_bg: var(--red-500);
|
|
20276
|
+
--_btn-focus-bg: var(--red-600);
|
|
20277
|
+
--_btn-active-bg: var(--red-700);
|
|
20278
|
+
}
|
|
20279
|
+
@media (prefers-color-scheme: dark) {
|
|
20280
|
+
body.theme-system .s-banner__danger.s-banner__important {
|
|
20281
|
+
--_bg: var(--red-400);
|
|
20282
|
+
--_fc: var(--black-900);
|
|
20283
|
+
}
|
|
20284
|
+
}
|
|
20285
|
+
body.theme-dark .s-banner__danger.s-banner__important,
|
|
20286
|
+
.theme-dark__forced .s-banner__danger.s-banner__important,
|
|
20287
|
+
body.theme-system .theme-dark__forced .s-banner__danger.s-banner__important {
|
|
20288
|
+
--_bg: var(--red-400);
|
|
20289
|
+
--_fc: var(--black-900);
|
|
20290
|
+
}
|
|
20291
|
+
@media (prefers-color-scheme: dark) {
|
|
20292
|
+
body.theme-highcontrast.theme-system .s-banner__danger.s-banner__important {
|
|
20293
|
+
--_bg: var(--red-500);
|
|
20294
|
+
--_fc: var(--white);
|
|
20295
|
+
}
|
|
20296
|
+
}
|
|
20297
|
+
body.theme-highcontrast.theme-dark .s-banner__danger.s-banner__important {
|
|
20298
|
+
--_bg: var(--red-500);
|
|
20299
|
+
--_fc: var(--white);
|
|
20300
|
+
}
|
|
20294
20301
|
.s-banner__info {
|
|
20295
|
-
|
|
20296
|
-
|
|
20302
|
+
--_bc: var(--theme-secondary-150);
|
|
20303
|
+
--_bg: var(--theme-secondary-050);
|
|
20304
|
+
--_btn-focus-bg: var(--theme-secondary-100);
|
|
20305
|
+
--_btn-active-bg: var(--theme-secondary-150);
|
|
20306
|
+
--_code-bg: var(--theme-secondary-150);
|
|
20307
|
+
}
|
|
20308
|
+
body.theme-highcontrast .s-banner__info:not(.s-banner__important) {
|
|
20309
|
+
--_bg: var(--theme-secondary-100);
|
|
20310
|
+
}
|
|
20311
|
+
@media (prefers-color-scheme: dark) {
|
|
20312
|
+
body.theme-highcontrast.theme-system .s-banner__info:not(.s-banner__important) {
|
|
20313
|
+
--_bg: var(--theme-secondary-100);
|
|
20314
|
+
}
|
|
20315
|
+
}
|
|
20316
|
+
body.theme-highcontrast.theme-dark .s-banner__info:not(.s-banner__important) {
|
|
20317
|
+
--_bg: var(--theme-secondary-100);
|
|
20297
20318
|
}
|
|
20298
|
-
.s-notice__info.s-notice__important,
|
|
20299
|
-
.s-banner__info.s-notice__important,
|
|
20300
|
-
.s-notice__info.s-banner__important,
|
|
20301
20319
|
.s-banner__info.s-banner__important {
|
|
20302
|
-
|
|
20320
|
+
--_bc: var(--_bg);
|
|
20321
|
+
--_bg: var(--theme-secondary-400);
|
|
20322
|
+
--_btn-focus-bg: var(--theme-secondary-500);
|
|
20323
|
+
--_btn-active-bg: var(--theme-secondary-600);
|
|
20303
20324
|
}
|
|
20304
|
-
|
|
20305
|
-
.s-banner__info
|
|
20306
|
-
|
|
20307
|
-
|
|
20308
|
-
|
|
20325
|
+
@media (prefers-color-scheme: dark) {
|
|
20326
|
+
body.theme-system .s-banner__info.s-banner__important {
|
|
20327
|
+
--_bg: var(--theme-secondary-300);
|
|
20328
|
+
--_fc: var(--black-900);
|
|
20329
|
+
}
|
|
20309
20330
|
}
|
|
20310
|
-
.
|
|
20311
|
-
.s-banner__info
|
|
20312
|
-
|
|
20331
|
+
body.theme-dark .s-banner__info.s-banner__important,
|
|
20332
|
+
.theme-dark__forced .s-banner__info.s-banner__important,
|
|
20333
|
+
body.theme-system .theme-dark__forced .s-banner__info.s-banner__important {
|
|
20334
|
+
--_bg: var(--theme-secondary-300);
|
|
20335
|
+
--_fc: var(--black-900);
|
|
20336
|
+
}
|
|
20337
|
+
@media (prefers-color-scheme: dark) {
|
|
20338
|
+
body.theme-highcontrast.theme-system .s-banner__info.s-banner__important {
|
|
20339
|
+
--_bg: var(--theme-secondary-400);
|
|
20340
|
+
--_fc: var(--white);
|
|
20341
|
+
}
|
|
20313
20342
|
}
|
|
20314
|
-
.s-
|
|
20315
|
-
|
|
20316
|
-
|
|
20343
|
+
body.theme-highcontrast.theme-dark .s-banner__info.s-banner__important {
|
|
20344
|
+
--_bg: var(--theme-secondary-400);
|
|
20345
|
+
--_fc: var(--white);
|
|
20317
20346
|
}
|
|
20318
|
-
.s-notice__success,
|
|
20319
20347
|
.s-banner__success {
|
|
20320
|
-
|
|
20321
|
-
|
|
20348
|
+
--_bc: var(--green-200);
|
|
20349
|
+
--_bg: var(--green-050);
|
|
20350
|
+
--_btn-focus-bg: var(--green-100);
|
|
20351
|
+
--_btn-active-bg: var(--green-200);
|
|
20322
20352
|
}
|
|
20323
|
-
body.theme-highcontrast .s-
|
|
20324
|
-
|
|
20325
|
-
background-color: var(--green-200);
|
|
20326
|
-
border-color: var(--green-400);
|
|
20353
|
+
body.theme-highcontrast .s-banner__success:not(.s-banner__important) {
|
|
20354
|
+
--_bg: var(--green-200);
|
|
20327
20355
|
}
|
|
20328
|
-
.s-notice__success.s-notice__important,
|
|
20329
|
-
.s-banner__success.s-notice__important,
|
|
20330
|
-
.s-notice__success.s-banner__important,
|
|
20331
20356
|
.s-banner__success.s-banner__important {
|
|
20332
|
-
|
|
20333
|
-
|
|
20357
|
+
--_bc: var(--_bg);
|
|
20358
|
+
--_bg: var(--green-400);
|
|
20359
|
+
--_fc: var(--black-900);
|
|
20360
|
+
--_btn-focus-bg: var(--green-500);
|
|
20361
|
+
--_btn-active-bg: var(--green-600);
|
|
20334
20362
|
}
|
|
20335
|
-
|
|
20336
|
-
body.theme-
|
|
20337
|
-
|
|
20338
|
-
|
|
20339
|
-
|
|
20340
|
-
color: var(--white);
|
|
20341
|
-
border-color: transparent;
|
|
20363
|
+
@media (prefers-color-scheme: dark) {
|
|
20364
|
+
body.theme-system .s-banner__success.s-banner__important {
|
|
20365
|
+
--_bg: var(--green-500);
|
|
20366
|
+
--_fc: var(--white);
|
|
20367
|
+
}
|
|
20342
20368
|
}
|
|
20343
|
-
.
|
|
20344
|
-
.s-banner__success
|
|
20345
|
-
.
|
|
20346
|
-
|
|
20347
|
-
|
|
20369
|
+
body.theme-dark .s-banner__success.s-banner__important,
|
|
20370
|
+
.theme-dark__forced .s-banner__success.s-banner__important,
|
|
20371
|
+
body.theme-system .theme-dark__forced .s-banner__success.s-banner__important {
|
|
20372
|
+
--_bg: var(--green-500);
|
|
20373
|
+
--_fc: var(--white);
|
|
20348
20374
|
}
|
|
20349
|
-
.
|
|
20350
|
-
|
|
20351
|
-
|
|
20375
|
+
body.theme-highcontrast .s-banner__success.s-banner__important {
|
|
20376
|
+
--_bg: var(--green-500);
|
|
20377
|
+
--_fc: var(--white);
|
|
20352
20378
|
}
|
|
20353
|
-
.s-notice__warning,
|
|
20354
20379
|
.s-banner__warning {
|
|
20355
|
-
|
|
20356
|
-
|
|
20380
|
+
--_bc: var(--yellow-300);
|
|
20381
|
+
--_bg: var(--yellow-050);
|
|
20382
|
+
--_btn-focus-bg: var(--yellow-200);
|
|
20383
|
+
--_btn-active-bg: var(--yellow-300);
|
|
20384
|
+
--_code-bg: var(--yellow-200);
|
|
20357
20385
|
}
|
|
20358
|
-
body.theme-highcontrast .s-
|
|
20359
|
-
|
|
20360
|
-
background-color: var(--yellow-200);
|
|
20361
|
-
border-color: var(--yellow-700);
|
|
20386
|
+
body.theme-highcontrast .s-banner__warning:not(.s-banner__important) {
|
|
20387
|
+
--_bg: var(--yellow-200);
|
|
20362
20388
|
}
|
|
20363
|
-
.s-notice__warning.s-notice__important,
|
|
20364
|
-
.s-banner__warning.s-notice__important,
|
|
20365
|
-
.s-notice__warning.s-banner__important,
|
|
20366
20389
|
.s-banner__warning.s-banner__important {
|
|
20367
|
-
|
|
20368
|
-
|
|
20390
|
+
--_bc: var(--_bg);
|
|
20391
|
+
--_bg: var(--yellow-400);
|
|
20392
|
+
--_btn-focus-bg: var(--yellow-500);
|
|
20393
|
+
--_btn-active-bg: var(--yellow-600);
|
|
20394
|
+
--_fc: var(--black-900);
|
|
20395
|
+
}
|
|
20396
|
+
@media (prefers-color-scheme: dark) {
|
|
20397
|
+
body.theme-system .s-banner__warning.s-banner__important {
|
|
20398
|
+
--_bg: var(--yellow-600);
|
|
20399
|
+
--_fc: var(--white);
|
|
20400
|
+
}
|
|
20401
|
+
}
|
|
20402
|
+
body.theme-dark .s-banner__warning.s-banner__important,
|
|
20403
|
+
.theme-dark__forced .s-banner__warning.s-banner__important,
|
|
20404
|
+
body.theme-system .theme-dark__forced .s-banner__warning.s-banner__important {
|
|
20405
|
+
--_bg: var(--yellow-600);
|
|
20406
|
+
--_fc: var(--white);
|
|
20369
20407
|
}
|
|
20370
|
-
body.theme-highcontrast .s-notice__warning.s-notice__important,
|
|
20371
|
-
body.theme-highcontrast .s-banner__warning.s-notice__important,
|
|
20372
|
-
body.theme-highcontrast .s-notice__warning.s-banner__important,
|
|
20373
20408
|
body.theme-highcontrast .s-banner__warning.s-banner__important {
|
|
20374
|
-
|
|
20375
|
-
|
|
20376
|
-
border-color: transparent;
|
|
20409
|
+
--_bg: var(--yellow-700);
|
|
20410
|
+
--_fc: var(--white);
|
|
20377
20411
|
}
|
|
20378
|
-
.s-
|
|
20379
|
-
|
|
20380
|
-
.s-notice__warning .s-notice--btn:hover,
|
|
20381
|
-
.s-banner__warning .s-notice--btn:hover {
|
|
20382
|
-
background-color: var(--yellow-200);
|
|
20412
|
+
.s-banner__body-pt {
|
|
20413
|
+
padding-top: 93px;
|
|
20383
20414
|
}
|
|
20384
|
-
.s-
|
|
20385
|
-
|
|
20386
|
-
background-color: var(--yellow-300);
|
|
20415
|
+
.s-banner.is-pinned {
|
|
20416
|
+
z-index: calc(var(--zi-navigation-fixed) + 1);
|
|
20387
20417
|
}
|
|
20388
|
-
.s-
|
|
20389
|
-
|
|
20390
|
-
|
|
20418
|
+
.s-banner[aria-hidden="true"] {
|
|
20419
|
+
--_x-offset: -50px;
|
|
20420
|
+
visibility: hidden;
|
|
20421
|
+
opacity: 0;
|
|
20391
20422
|
}
|
|
20392
|
-
.s-
|
|
20393
|
-
|
|
20394
|
-
|
|
20395
|
-
|
|
20423
|
+
.s-banner[aria-hidden="false"] {
|
|
20424
|
+
--_x-offset: 49px;
|
|
20425
|
+
visibility: visible;
|
|
20426
|
+
opacity: 1;
|
|
20396
20427
|
}
|
|
20397
|
-
|
|
20398
|
-
|
|
20399
|
-
|
|
20400
|
-
|
|
20428
|
+
.s-banner .s-banner--container {
|
|
20429
|
+
position: relative;
|
|
20430
|
+
width: 100%;
|
|
20431
|
+
max-width: calc(var(--s-step) * 10);
|
|
20432
|
+
margin: 0 auto;
|
|
20401
20433
|
}
|
|
20402
|
-
|
|
20403
|
-
|
|
20404
|
-
|
|
20405
|
-
|
|
20406
|
-
|
|
20434
|
+
.s-notice {
|
|
20435
|
+
background: var(--_bg, var(--black-050));
|
|
20436
|
+
border-color: var(--_bc, var(--bc-medium));
|
|
20437
|
+
border-style: solid;
|
|
20438
|
+
color: var(--_fc, var(--fc-medium));
|
|
20439
|
+
font-size: var(--fs-body1);
|
|
20440
|
+
border-radius: var(--br-sm);
|
|
20441
|
+
border-width: var(--su-static1);
|
|
20442
|
+
padding: var(--su16);
|
|
20407
20443
|
}
|
|
20408
|
-
.s-
|
|
20409
|
-
|
|
20410
|
-
.s-notice__danger.s-banner__important,
|
|
20411
|
-
.s-banner__danger.s-banner__important {
|
|
20412
|
-
background-color: var(--red-400);
|
|
20444
|
+
.s-notice code {
|
|
20445
|
+
background: var(--_code-bg, transparent);
|
|
20413
20446
|
}
|
|
20414
|
-
.s-
|
|
20415
|
-
|
|
20416
|
-
|
|
20417
|
-
.s-banner__danger .s-notice--btn:hover {
|
|
20418
|
-
background-color: var(--red-100);
|
|
20447
|
+
.s-notice .s-notice--btn {
|
|
20448
|
+
color: inherit;
|
|
20449
|
+
padding: var(--su8);
|
|
20419
20450
|
}
|
|
20420
|
-
.s-
|
|
20421
|
-
.s-
|
|
20422
|
-
background
|
|
20451
|
+
.s-notice .s-notice--btn:focus,
|
|
20452
|
+
.s-notice .s-notice--btn:hover {
|
|
20453
|
+
background: var(--_btn-focus-bg, var(--black-100));
|
|
20454
|
+
}
|
|
20455
|
+
.s-notice .s-notice--btn:active {
|
|
20456
|
+
background: var(--_btn-active-bg, var(--black-150));
|
|
20457
|
+
}
|
|
20458
|
+
@media (prefers-color-scheme: dark) {
|
|
20459
|
+
body.theme-system .s-notice:not(.s-notice__important) {
|
|
20460
|
+
--_bc: var(--_bg);
|
|
20461
|
+
}
|
|
20462
|
+
}
|
|
20463
|
+
body.theme-dark .s-notice:not(.s-notice__important),
|
|
20464
|
+
.theme-dark__forced .s-notice:not(.s-notice__important),
|
|
20465
|
+
body.theme-system .theme-dark__forced .s-notice:not(.s-notice__important) {
|
|
20466
|
+
--_bc: var(--_bg);
|
|
20467
|
+
}
|
|
20468
|
+
body.theme-highcontrast .s-notice:not(.s-notice__important) {
|
|
20469
|
+
--_bc: currentColor;
|
|
20470
|
+
}
|
|
20471
|
+
@media (prefers-color-scheme: dark) {
|
|
20472
|
+
body.theme-highcontrast.theme-system .s-notice:not(.s-notice__important) {
|
|
20473
|
+
--_bc: currentColor;
|
|
20474
|
+
}
|
|
20475
|
+
}
|
|
20476
|
+
body.theme-highcontrast.theme-dark .s-notice:not(.s-notice__important) {
|
|
20477
|
+
--_bc: currentColor;
|
|
20423
20478
|
}
|
|
20424
20479
|
.s-notice__important {
|
|
20425
|
-
|
|
20426
|
-
|
|
20427
|
-
|
|
20480
|
+
--_bc: var(--_bg);
|
|
20481
|
+
--_bg: var(--black-700);
|
|
20482
|
+
--_fc: var(--white);
|
|
20483
|
+
--_btn-focus-bg: var(--black-800);
|
|
20484
|
+
--_btn-active-bg: var(--black-900);
|
|
20485
|
+
}
|
|
20486
|
+
body.theme-highcontrast .s-notice__important {
|
|
20487
|
+
--_bc: var(--_bg);
|
|
20488
|
+
}
|
|
20489
|
+
.s-notice__danger {
|
|
20490
|
+
--_bc: var(--red-200);
|
|
20491
|
+
--_bg: var(--red-050);
|
|
20492
|
+
--_btn-focus-bg: var(--red-100);
|
|
20493
|
+
--_btn-active-bg: var(--red-200);
|
|
20494
|
+
}
|
|
20495
|
+
body.theme-highcontrast .s-notice__danger:not(.s-notice__important) {
|
|
20496
|
+
--_bg: var(--red-200);
|
|
20497
|
+
}
|
|
20498
|
+
.s-notice__danger.s-notice__important {
|
|
20499
|
+
--_bc: var(--_bg);
|
|
20500
|
+
--_bg: var(--red-500);
|
|
20501
|
+
--_btn-focus-bg: var(--red-600);
|
|
20502
|
+
--_btn-active-bg: var(--red-700);
|
|
20428
20503
|
}
|
|
20429
20504
|
@media (prefers-color-scheme: dark) {
|
|
20430
|
-
body.theme-system .s-
|
|
20431
|
-
|
|
20432
|
-
|
|
20433
|
-
body.theme-system .s-notice__danger {
|
|
20434
|
-
border-color: transparent;
|
|
20505
|
+
body.theme-system .s-notice__danger.s-notice__important {
|
|
20506
|
+
--_bg: var(--red-400);
|
|
20507
|
+
--_fc: var(--black-900);
|
|
20435
20508
|
}
|
|
20436
20509
|
}
|
|
20437
|
-
body.theme-dark .s-
|
|
20438
|
-
|
|
20439
|
-
body.theme-
|
|
20440
|
-
|
|
20441
|
-
|
|
20442
|
-
.theme-dark__forced .s-notice__success,
|
|
20443
|
-
.theme-dark__forced .s-notice__warning,
|
|
20444
|
-
.theme-dark__forced .s-notice__danger,
|
|
20445
|
-
body.theme-system .theme-dark__forced .s-notice__info,
|
|
20446
|
-
body.theme-system .theme-dark__forced .s-notice__success,
|
|
20447
|
-
body.theme-system .theme-dark__forced .s-notice__warning,
|
|
20448
|
-
body.theme-system .theme-dark__forced .s-notice__danger {
|
|
20449
|
-
border-color: transparent;
|
|
20510
|
+
body.theme-dark .s-notice__danger.s-notice__important,
|
|
20511
|
+
.theme-dark__forced .s-notice__danger.s-notice__important,
|
|
20512
|
+
body.theme-system .theme-dark__forced .s-notice__danger.s-notice__important {
|
|
20513
|
+
--_bg: var(--red-400);
|
|
20514
|
+
--_fc: var(--black-900);
|
|
20450
20515
|
}
|
|
20451
|
-
|
|
20452
|
-
body.theme-highcontrast .s-
|
|
20453
|
-
|
|
20454
|
-
|
|
20455
|
-
|
|
20516
|
+
@media (prefers-color-scheme: dark) {
|
|
20517
|
+
body.theme-highcontrast.theme-system .s-notice__danger.s-notice__important {
|
|
20518
|
+
--_bg: var(--red-500);
|
|
20519
|
+
--_fc: var(--white);
|
|
20520
|
+
}
|
|
20521
|
+
}
|
|
20522
|
+
body.theme-highcontrast.theme-dark .s-notice__danger.s-notice__important {
|
|
20523
|
+
--_bg: var(--red-500);
|
|
20524
|
+
--_fc: var(--white);
|
|
20525
|
+
}
|
|
20526
|
+
.s-notice__info {
|
|
20527
|
+
--_bc: var(--theme-secondary-150);
|
|
20528
|
+
--_bg: var(--theme-secondary-050);
|
|
20529
|
+
--_btn-focus-bg: var(--theme-secondary-100);
|
|
20530
|
+
--_btn-active-bg: var(--theme-secondary-150);
|
|
20531
|
+
--_code-bg: var(--theme-secondary-150);
|
|
20532
|
+
}
|
|
20533
|
+
body.theme-highcontrast .s-notice__info:not(.s-notice__important) {
|
|
20534
|
+
--_bg: var(--theme-secondary-100);
|
|
20535
|
+
}
|
|
20536
|
+
@media (prefers-color-scheme: dark) {
|
|
20537
|
+
body.theme-highcontrast.theme-system .s-notice__info:not(.s-notice__important) {
|
|
20538
|
+
--_bg: var(--theme-secondary-100);
|
|
20539
|
+
}
|
|
20540
|
+
}
|
|
20541
|
+
body.theme-highcontrast.theme-dark .s-notice__info:not(.s-notice__important) {
|
|
20542
|
+
--_bg: var(--theme-secondary-100);
|
|
20543
|
+
}
|
|
20544
|
+
.s-notice__info.s-notice__important {
|
|
20545
|
+
--_bc: var(--_bg);
|
|
20546
|
+
--_bg: var(--theme-secondary-400);
|
|
20547
|
+
--_btn-focus-bg: var(--theme-secondary-500);
|
|
20548
|
+
--_btn-active-bg: var(--theme-secondary-600);
|
|
20549
|
+
}
|
|
20550
|
+
@media (prefers-color-scheme: dark) {
|
|
20551
|
+
body.theme-system .s-notice__info.s-notice__important {
|
|
20552
|
+
--_bg: var(--theme-secondary-300);
|
|
20553
|
+
--_fc: var(--black-900);
|
|
20554
|
+
}
|
|
20555
|
+
}
|
|
20556
|
+
body.theme-dark .s-notice__info.s-notice__important,
|
|
20557
|
+
.theme-dark__forced .s-notice__info.s-notice__important,
|
|
20558
|
+
body.theme-system .theme-dark__forced .s-notice__info.s-notice__important {
|
|
20559
|
+
--_bg: var(--theme-secondary-300);
|
|
20560
|
+
--_fc: var(--black-900);
|
|
20561
|
+
}
|
|
20562
|
+
@media (prefers-color-scheme: dark) {
|
|
20563
|
+
body.theme-highcontrast.theme-system .s-notice__info.s-notice__important {
|
|
20564
|
+
--_bg: var(--theme-secondary-400);
|
|
20565
|
+
--_fc: var(--white);
|
|
20566
|
+
}
|
|
20567
|
+
}
|
|
20568
|
+
body.theme-highcontrast.theme-dark .s-notice__info.s-notice__important {
|
|
20569
|
+
--_bg: var(--theme-secondary-400);
|
|
20570
|
+
--_fc: var(--white);
|
|
20571
|
+
}
|
|
20572
|
+
.s-notice__success {
|
|
20573
|
+
--_bc: var(--green-200);
|
|
20574
|
+
--_bg: var(--green-050);
|
|
20575
|
+
--_btn-focus-bg: var(--green-100);
|
|
20576
|
+
--_btn-active-bg: var(--green-200);
|
|
20577
|
+
}
|
|
20578
|
+
body.theme-highcontrast .s-notice__success:not(.s-notice__important) {
|
|
20579
|
+
--_bg: var(--green-200);
|
|
20580
|
+
}
|
|
20581
|
+
.s-notice__success.s-notice__important {
|
|
20582
|
+
--_bc: var(--_bg);
|
|
20583
|
+
--_bg: var(--green-400);
|
|
20584
|
+
--_fc: var(--black-900);
|
|
20585
|
+
--_btn-focus-bg: var(--green-500);
|
|
20586
|
+
--_btn-active-bg: var(--green-600);
|
|
20587
|
+
}
|
|
20588
|
+
@media (prefers-color-scheme: dark) {
|
|
20589
|
+
body.theme-system .s-notice__success.s-notice__important {
|
|
20590
|
+
--_bg: var(--green-500);
|
|
20591
|
+
--_fc: var(--white);
|
|
20592
|
+
}
|
|
20593
|
+
}
|
|
20594
|
+
body.theme-dark .s-notice__success.s-notice__important,
|
|
20595
|
+
.theme-dark__forced .s-notice__success.s-notice__important,
|
|
20596
|
+
body.theme-system .theme-dark__forced .s-notice__success.s-notice__important {
|
|
20597
|
+
--_bg: var(--green-500);
|
|
20598
|
+
--_fc: var(--white);
|
|
20599
|
+
}
|
|
20600
|
+
body.theme-highcontrast .s-notice__success.s-notice__important {
|
|
20601
|
+
--_bg: var(--green-500);
|
|
20602
|
+
--_fc: var(--white);
|
|
20603
|
+
}
|
|
20604
|
+
.s-notice__warning {
|
|
20605
|
+
--_bc: var(--yellow-300);
|
|
20606
|
+
--_bg: var(--yellow-050);
|
|
20607
|
+
--_btn-focus-bg: var(--yellow-200);
|
|
20608
|
+
--_btn-active-bg: var(--yellow-300);
|
|
20609
|
+
--_code-bg: var(--yellow-200);
|
|
20610
|
+
}
|
|
20611
|
+
body.theme-highcontrast .s-notice__warning:not(.s-notice__important) {
|
|
20612
|
+
--_bg: var(--yellow-200);
|
|
20613
|
+
}
|
|
20614
|
+
.s-notice__warning.s-notice__important {
|
|
20615
|
+
--_bc: var(--_bg);
|
|
20616
|
+
--_bg: var(--yellow-400);
|
|
20617
|
+
--_btn-focus-bg: var(--yellow-500);
|
|
20618
|
+
--_btn-active-bg: var(--yellow-600);
|
|
20619
|
+
--_fc: var(--black-900);
|
|
20620
|
+
}
|
|
20621
|
+
@media (prefers-color-scheme: dark) {
|
|
20622
|
+
body.theme-system .s-notice__warning.s-notice__important {
|
|
20623
|
+
--_bg: var(--yellow-600);
|
|
20624
|
+
--_fc: var(--white);
|
|
20625
|
+
}
|
|
20626
|
+
}
|
|
20627
|
+
body.theme-dark .s-notice__warning.s-notice__important,
|
|
20628
|
+
.theme-dark__forced .s-notice__warning.s-notice__important,
|
|
20629
|
+
body.theme-system .theme-dark__forced .s-notice__warning.s-notice__important {
|
|
20630
|
+
--_bg: var(--yellow-600);
|
|
20631
|
+
--_fc: var(--white);
|
|
20632
|
+
}
|
|
20633
|
+
body.theme-highcontrast .s-notice__warning.s-notice__important {
|
|
20634
|
+
--_bg: var(--yellow-700);
|
|
20635
|
+
--_fc: var(--white);
|
|
20456
20636
|
}
|
|
20457
20637
|
.s-toast {
|
|
20458
20638
|
visibility: hidden;
|
|
@@ -20479,6 +20659,14 @@ body.theme-highcontrast .s-notice__danger {
|
|
|
20479
20659
|
transform: none;
|
|
20480
20660
|
}
|
|
20481
20661
|
}
|
|
20662
|
+
.s-toast .s-notice {
|
|
20663
|
+
max-width: 44rem;
|
|
20664
|
+
width: 100%;
|
|
20665
|
+
padding-top: var(--su8);
|
|
20666
|
+
padding-bottom: var(--su8);
|
|
20667
|
+
box-shadow: var(--bs-sm);
|
|
20668
|
+
pointer-events: all;
|
|
20669
|
+
}
|
|
20482
20670
|
.s-tag {
|
|
20483
20671
|
display: inline-flex;
|
|
20484
20672
|
align-items: center;
|