@stackoverflow/stacks 0.73.1 → 0.76.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.
Files changed (87) hide show
  1. package/LICENSE.MD +9 -9
  2. package/README.md +47 -47
  3. package/dist/controllers/index.d.ts +7 -0
  4. package/dist/controllers/s-expandable-control.d.ts +17 -0
  5. package/dist/controllers/s-modal.d.ts +97 -0
  6. package/dist/controllers/s-navigation-tablist.d.ts +36 -0
  7. package/dist/controllers/s-popover.d.ts +155 -0
  8. package/dist/controllers/s-table.d.ts +8 -0
  9. package/dist/controllers/s-tooltip.d.ts +82 -0
  10. package/dist/controllers/s-uploader.d.ts +48 -0
  11. package/dist/css/stacks.css +441 -141
  12. package/dist/css/stacks.min.css +1 -1
  13. package/dist/index.d.ts +3 -0
  14. package/dist/js/stacks.js +6130 -5488
  15. package/dist/js/stacks.min.js +1 -1
  16. package/dist/stacks.d.ts +21 -0
  17. package/lib/css/atomic/_stacks-borders.less +378 -378
  18. package/lib/css/atomic/_stacks-colors.less +209 -209
  19. package/lib/css/atomic/_stacks-flex.less +374 -374
  20. package/lib/css/atomic/_stacks-grid.less +174 -173
  21. package/lib/css/atomic/_stacks-misc.less +343 -342
  22. package/lib/css/atomic/_stacks-spacing.less +168 -162
  23. package/lib/css/atomic/_stacks-typography.less +273 -270
  24. package/lib/css/atomic/_stacks-width-height.less +195 -189
  25. package/lib/css/base/_stacks-body.less +44 -46
  26. package/lib/css/base/_stacks-configuration-static.less +59 -59
  27. package/lib/css/base/_stacks-icons.less +20 -20
  28. package/lib/css/base/_stacks-internals.less +220 -230
  29. package/lib/css/base/_stacks-reset-meyer.less +64 -64
  30. package/lib/css/base/_stacks-reset-normalize.less +449 -449
  31. package/lib/css/base/_stacks-reset.less +20 -20
  32. package/lib/css/components/_stacks-activity-indicator.less +45 -45
  33. package/lib/css/components/_stacks-avatars.less +189 -189
  34. package/lib/css/components/_stacks-badges.less +209 -209
  35. package/lib/css/components/_stacks-banners.less +80 -81
  36. package/lib/css/components/_stacks-blank-states.less +26 -26
  37. package/lib/css/components/_stacks-breadcrumbs.less +44 -44
  38. package/lib/css/components/_stacks-button-groups.less +104 -104
  39. package/lib/css/components/_stacks-buttons.less +658 -660
  40. package/lib/css/components/_stacks-cards.less +44 -44
  41. package/lib/css/components/_stacks-code-blocks.less +130 -130
  42. package/lib/css/components/_stacks-collapsible.less +104 -104
  43. package/lib/css/components/_stacks-inputs.less +728 -724
  44. package/lib/css/components/_stacks-link-previews.less +136 -136
  45. package/lib/css/components/_stacks-links.less +218 -218
  46. package/lib/css/components/_stacks-menu.less +47 -47
  47. package/lib/css/components/_stacks-modals.less +133 -133
  48. package/lib/css/components/_stacks-navigation.less +146 -146
  49. package/lib/css/components/_stacks-notices.less +233 -233
  50. package/lib/css/components/_stacks-page-titles.less +60 -60
  51. package/lib/css/components/_stacks-pagination.less +55 -55
  52. package/lib/css/components/_stacks-popovers.less +197 -197
  53. package/lib/css/components/_stacks-post-summary.less +425 -311
  54. package/lib/css/components/_stacks-progress-bars.less +331 -331
  55. package/lib/css/components/_stacks-prose.less +503 -503
  56. package/lib/css/components/_stacks-spinner.less +107 -107
  57. package/lib/css/components/_stacks-tables.less +341 -341
  58. package/lib/css/components/_stacks-tags.less +237 -209
  59. package/lib/css/components/_stacks-toggle-switches.less +144 -137
  60. package/lib/css/components/_stacks-topbar.less +425 -440
  61. package/lib/css/components/_stacks-uploader.less +210 -210
  62. package/lib/css/components/_stacks-user-cards.less +169 -193
  63. package/lib/css/components/_stacks-widget-dynamic.less +33 -33
  64. package/lib/css/components/_stacks-widget-static.less +272 -272
  65. package/lib/css/exports/_stacks-constants-colors.less +1112 -1098
  66. package/lib/css/exports/_stacks-constants-helpers.less +139 -139
  67. package/lib/css/exports/_stacks-constants-type.less +152 -91
  68. package/lib/css/exports/_stacks-exports.less +15 -15
  69. package/lib/css/exports/_stacks-mixins.less +220 -220
  70. package/lib/css/stacks-dynamic.less +35 -36
  71. package/lib/css/stacks-static.less +86 -86
  72. package/lib/ts/controllers/index.ts +8 -0
  73. package/lib/ts/controllers/s-expandable-control.ts +189 -190
  74. package/lib/ts/controllers/s-modal.ts +321 -323
  75. package/lib/ts/controllers/s-navigation-tablist.ts +118 -119
  76. package/lib/ts/controllers/s-popover.ts +547 -549
  77. package/lib/ts/controllers/s-table.ts +220 -220
  78. package/lib/ts/controllers/s-tooltip.ts +246 -247
  79. package/lib/ts/controllers/s-uploader.ts +172 -174
  80. package/lib/ts/index.ts +20 -0
  81. package/lib/ts/stacks.ts +88 -83
  82. package/lib/tsconfig.json +13 -11
  83. package/package.json +87 -71
  84. package/dist/css/stacks-flexgrid-shim.min.css +0 -1
  85. package/lib/css/base/_stacks-configuration-dynamic.less +0 -106
  86. package/lib/ts/finalize.ts +0 -1
  87. package/lib/ts/stimulus.d.ts +0 -4
@@ -1225,6 +1225,15 @@ body.theme-highcontrast .s-label--status {
1225
1225
  background-color: var(--red-100);
1226
1226
  color: var(--red-600);
1227
1227
  }
1228
+ @media (prefers-color-scheme: dark) {
1229
+ body.theme-system .s-label--status.s-label--status__required {
1230
+ color: var(--red-800);
1231
+ }
1232
+ }
1233
+ body.theme-dark .s-label--status.s-label--status__required,
1234
+ .theme-dark__forced .s-label--status.s-label--status__required {
1235
+ color: var(--red-800);
1236
+ }
1228
1237
  .s-label--status.s-label--status__new {
1229
1238
  background-color: var(--green-100);
1230
1239
  color: var(--green-700);
@@ -2191,12 +2200,10 @@ body.theme-dark .s-popover--arrow,
2191
2200
  @media (max-width: 980px) {
2192
2201
  .s-post-summary {
2193
2202
  flex-direction: column;
2194
- align-items: flex-start;
2195
2203
  }
2196
2204
  }
2197
2205
  .s-post-summary.s-post-summary__minimal {
2198
2206
  flex-direction: column;
2199
- align-items: flex-start;
2200
2207
  }
2201
2208
  .s-post-summary.s-post-summary__minimal .s-post-summary--stats {
2202
2209
  width: auto;
@@ -2206,6 +2213,77 @@ body.theme-dark .s-popover--arrow,
2206
2213
  .s-post-summary.s-post-summary__minimal .s-post-summary--content {
2207
2214
  width: 100%;
2208
2215
  }
2216
+ .s-post-summary.s-post-summary__legacy {
2217
+ padding-left: 0;
2218
+ }
2219
+ @media (max-width: 980px) {
2220
+ .s-post-summary.s-post-summary__legacy {
2221
+ padding-left: 16px;
2222
+ }
2223
+ }
2224
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats {
2225
+ width: auto;
2226
+ flex-direction: row;
2227
+ align-items: center;
2228
+ gap: 2px;
2229
+ }
2230
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item {
2231
+ min-width: 64px;
2232
+ height: 48px;
2233
+ flex-direction: column;
2234
+ gap: 0;
2235
+ font-size: 12px;
2236
+ }
2237
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.s-post-summary--stats-item__emphasized {
2238
+ color: inherit;
2239
+ }
2240
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.has-accepted-answer .svg-icon {
2241
+ display: none;
2242
+ }
2243
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item .s-post-summary--stats-item-number {
2244
+ font-weight: normal;
2245
+ font-size: 1.30769231rem;
2246
+ }
2247
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-deleted,
2248
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-published,
2249
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-draft,
2250
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-review,
2251
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-closed,
2252
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-archived,
2253
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-pinned {
2254
+ display: none;
2255
+ }
2256
+ @media (max-width: 980px) {
2257
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats {
2258
+ flex-direction: row;
2259
+ align-items: center;
2260
+ gap: 8px;
2261
+ }
2262
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item {
2263
+ min-width: auto;
2264
+ height: auto;
2265
+ flex-direction: row;
2266
+ gap: 3px;
2267
+ }
2268
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item .s-post-summary--stats-item-number {
2269
+ font-size: inherit;
2270
+ }
2271
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.s-post-summary--stats-item__emphasized {
2272
+ color: var(--fc-dark);
2273
+ }
2274
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.has-accepted-answer .svg-icon {
2275
+ display: block;
2276
+ }
2277
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-deleted,
2278
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-published,
2279
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-draft,
2280
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-review,
2281
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-closed,
2282
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-archived,
2283
+ .s-post-summary.s-post-summary__legacy .s-post-summary--stats .s-post-summary--stats-item.is-pinned {
2284
+ display: block;
2285
+ }
2286
+ }
2209
2287
  .s-post-summary--content-menu-button {
2210
2288
  position: absolute !important;
2211
2289
  top: 8px;
@@ -2216,47 +2294,52 @@ body.theme-dark .s-popover--arrow,
2216
2294
  margin: 0 !important;
2217
2295
  }
2218
2296
  .s-post-summary--stats {
2219
- --s-post-summary-stats-gap: 6px;
2220
- margin-right: 8px;
2221
- margin-bottom: -2px;
2222
- width: 96px;
2297
+ gap: 6px;
2298
+ margin-right: 16px;
2299
+ margin-bottom: 4px;
2300
+ width: 108px;
2223
2301
  display: flex;
2224
2302
  flex-direction: column;
2225
2303
  flex-shrink: 0;
2226
2304
  flex-wrap: wrap;
2227
2305
  align-items: flex-end;
2228
- font-size: 12px;
2306
+ font-size: 13px;
2229
2307
  color: var(--fc-light);
2230
2308
  }
2231
2309
  .s-post-summary--stats .s-post-summary--stats-item {
2232
- margin-right: var(--s-post-summary-stats-gap);
2233
- margin-bottom: var(--s-post-summary-stats-gap);
2310
+ display: inline-flex;
2311
+ gap: 0.3em;
2312
+ align-items: center;
2313
+ justify-content: center;
2234
2314
  white-space: nowrap;
2235
2315
  border: 1px solid transparent;
2236
2316
  }
2237
- .s-post-summary--stats .s-post-summary--stats-item .svg-icon {
2238
- vertical-align: text-bottom;
2317
+ .s-post-summary--stats .s-post-summary--stats-item.s-post-summary--stats-item__emphasized {
2318
+ color: var(--fc-dark);
2319
+ }
2320
+ .s-post-summary--stats .s-post-summary--stats-item .s-post-summary--stats-item-number {
2321
+ font-weight: 500;
2239
2322
  }
2240
2323
  .s-post-summary--stats .s-post-summary--stats-item.has-answers,
2241
2324
  .s-post-summary--stats .s-post-summary--stats-item.has-bounty,
2242
- .s-post-summary--stats .s-post-summary--stats-item.is-watched,
2243
- .s-post-summary--stats .s-post-summary--stats-item.is-ignored,
2244
2325
  .s-post-summary--stats .s-post-summary--stats-item.is-deleted,
2245
2326
  .s-post-summary--stats .s-post-summary--stats-item.is-published,
2246
2327
  .s-post-summary--stats .s-post-summary--stats-item.is-draft,
2247
2328
  .s-post-summary--stats .s-post-summary--stats-item.is-review,
2248
2329
  .s-post-summary--stats .s-post-summary--stats-item.is-closed,
2249
- .s-post-summary--stats .s-post-summary--stats-item.is-archived {
2330
+ .s-post-summary--stats .s-post-summary--stats-item.is-archived,
2331
+ .s-post-summary--stats .s-post-summary--stats-item.is-pinned {
2250
2332
  border-radius: 3px;
2251
2333
  padding: 2px 4px;
2252
2334
  }
2253
2335
  .s-post-summary--stats .s-post-summary--stats-item.has-answers {
2254
- color: var(--green-500);
2255
- border: 1px solid var(--green-500);
2336
+ color: var(--green-600);
2337
+ border: 1px solid var(--green-600);
2256
2338
  }
2257
2339
  .s-post-summary--stats .s-post-summary--stats-item.has-answers.has-accepted-answer {
2258
2340
  color: hsl(0, 0%, 100%);
2259
2341
  background-color: var(--green-500);
2342
+ border-color: var(--green-500);
2260
2343
  }
2261
2344
  body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-answers.has-accepted-answer {
2262
2345
  color: var(--white);
@@ -2298,6 +2381,10 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
2298
2381
  background-color: var(--black-100);
2299
2382
  border-color: var(--black-600);
2300
2383
  }
2384
+ .s-post-summary--stats .s-post-summary--stats-item.is-pinned {
2385
+ color: var(--white);
2386
+ background-color: var(--black-700);
2387
+ }
2301
2388
  @media (max-width: 980px) {
2302
2389
  .s-post-summary--stats {
2303
2390
  flex-direction: row;
@@ -2310,28 +2397,50 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
2310
2397
  max-width: 100%;
2311
2398
  }
2312
2399
  .s-post-summary--content .s-post-summary--content-title {
2313
- display: inline-block;
2400
+ display: block;
2314
2401
  font-size: 1.30769231rem;
2315
- margin-bottom: 6px;
2316
- overflow-wrap: break-word;
2317
- word-wrap: break-word;
2402
+ margin-top: -0.15rem;
2403
+ margin-bottom: 0.3846rem;
2318
2404
  padding-right: 24px;
2405
+ line-height: 1.30769231;
2406
+ font-weight: normal;
2407
+ word-break: break-word !important;
2408
+ word-wrap: break-word !important;
2409
+ overflow-wrap: break-word !important;
2410
+ -webkit-hyphens: auto !important;
2411
+ -moz-hyphens: auto !important;
2412
+ -ms-hyphens: auto !important;
2413
+ hyphens: auto !important;
2319
2414
  }
2320
2415
  .s-post-summary--content .s-post-summary--content-title .iconShield {
2321
- color: var(--black-600);
2322
- vertical-align: baseline;
2416
+ color: var(--fc-light);
2417
+ }
2418
+ .s-post-summary--content .s-post-summary--content-title .svg-icon {
2419
+ vertical-align: text-bottom;
2323
2420
  position: relative;
2324
- bottom: -2px;
2421
+ top: -1px;
2325
2422
  }
2326
- @media (max-width: 640px) {
2327
- .s-post-summary--content .s-post-summary--content-title .iconShield {
2328
- vertical-align: text-bottom;
2329
- bottom: 0;
2330
- }
2423
+ .s-post-summary--content .s-post-summary--content-title a {
2424
+ word-break: break-word !important;
2425
+ word-wrap: break-word !important;
2426
+ overflow-wrap: break-word !important;
2427
+ -webkit-hyphens: auto !important;
2428
+ -moz-hyphens: auto !important;
2429
+ -ms-hyphens: auto !important;
2430
+ hyphens: auto !important;
2431
+ color: var(--theme-post-title-color);
2432
+ font-family: var(--theme-post-title-font-family);
2433
+ }
2434
+ .s-post-summary--content .s-post-summary--content-title a:visited {
2435
+ color: var(--theme-post-title-color-visited);
2436
+ }
2437
+ .s-post-summary--content .s-post-summary--content-title a:hover,
2438
+ .s-post-summary--content .s-post-summary--content-title a:active {
2439
+ color: var(--theme-post-title-color-hover);
2331
2440
  }
2332
2441
  .s-post-summary--content .s-post-summary--content-type {
2333
2442
  color: var(--fc-medium);
2334
- margin-bottom: 2px;
2443
+ margin-bottom: 4px;
2335
2444
  }
2336
2445
  .s-post-summary--content .s-post-summary--content-type .svg-icon {
2337
2446
  margin-left: -2px;
@@ -2340,32 +2449,55 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
2340
2449
  .s-post-summary--content .s-post-summary--content-excerpt {
2341
2450
  margin-top: -2px;
2342
2451
  margin-bottom: 8px;
2452
+ font-family: var(--theme-post-body-font-family);
2453
+ color: var(--fc-medium);
2343
2454
  display: -webkit-box;
2344
2455
  -webkit-line-clamp: 2;
2345
2456
  -webkit-box-orient: vertical;
2346
2457
  overflow: hidden;
2458
+ word-break: break-word !important;
2459
+ word-wrap: break-word !important;
2460
+ overflow-wrap: break-word !important;
2461
+ -webkit-hyphens: auto !important;
2462
+ -moz-hyphens: auto !important;
2463
+ -ms-hyphens: auto !important;
2464
+ hyphens: auto !important;
2465
+ }
2466
+ .s-post-summary--content .s-post-summary--content-excerpt.s-post-summary--content-excerpt__sm {
2467
+ display: -webkit-box;
2468
+ -webkit-line-clamp: 1;
2469
+ -webkit-box-orient: vertical;
2470
+ overflow: hidden;
2471
+ }
2472
+ .s-post-summary--content .s-post-summary--content-excerpt.s-post-summary--content-excerpt__md {
2473
+ display: -webkit-box;
2474
+ -webkit-line-clamp: 3;
2475
+ -webkit-box-orient: vertical;
2476
+ overflow: hidden;
2477
+ }
2478
+ .s-post-summary--content .s-post-summary--content-excerpt.s-post-summary--content-excerpt__lg {
2479
+ display: -webkit-box;
2480
+ -webkit-line-clamp: 4;
2481
+ -webkit-box-orient: vertical;
2482
+ overflow: hidden;
2347
2483
  }
2348
2484
  .s-post-summary--meta {
2349
- --s-post-summary-tags-gap: 4px;
2350
2485
  display: flex;
2351
2486
  align-items: center;
2352
2487
  justify-content: space-between;
2353
2488
  flex-wrap: wrap;
2354
- margin-bottom: calc(-1 * var(--s-post-summary-tags-gap));
2489
+ column-gap: 6px;
2490
+ row-gap: 8px;
2355
2491
  }
2356
2492
  .s-post-summary--meta .s-post-summary--meta-tags {
2357
2493
  display: flex;
2358
2494
  flex-wrap: wrap;
2359
- margin-right: var(--s-post-summary-tags-gap);
2360
- }
2361
- .s-post-summary--meta .s-post-summary--meta-tags > * {
2362
- margin-right: var(--s-post-summary-tags-gap);
2363
- margin-bottom: var(--s-post-summary-tags-gap);
2495
+ gap: 4px;
2364
2496
  }
2365
2497
  .s-post-summary--meta .s-user-card {
2366
2498
  flex-wrap: wrap;
2367
- margin-bottom: var(--s-post-summary-tags-gap);
2368
2499
  margin-left: auto;
2500
+ justify-content: flex-end;
2369
2501
  }
2370
2502
  .s-post-summary--answer {
2371
2503
  position: relative;
@@ -2403,13 +2535,11 @@ body.theme-highcontrast .s-post-summary--answer:before {
2403
2535
  -webkit-box-orient: vertical;
2404
2536
  overflow: hidden;
2405
2537
  }
2406
- .s-post-summary__watched .is-watched {
2407
- color: var(--white);
2408
- background-color: var(--yellow-600);
2538
+ .s-post-summary__watched {
2539
+ background-color: var(--yellow-050);
2409
2540
  }
2410
- .s-post-summary__ignored .is-ignored {
2411
- color: var(--white);
2412
- background-color: var(--black-600);
2541
+ .s-post-summary__deleted {
2542
+ background-color: var(--red-050);
2413
2543
  }
2414
2544
  .s-post-summary__deleted .is-deleted {
2415
2545
  color: hsl(0, 0%, 100%);
@@ -2417,23 +2547,25 @@ body.theme-highcontrast .s-post-summary--answer:before {
2417
2547
  }
2418
2548
  .s-post-summary__ignored .s-post-summary--content,
2419
2549
  .s-post-summary__deleted .s-post-summary--content {
2420
- opacity: 0.7;
2550
+ opacity: 0.6;
2421
2551
  }
2422
- .s-post-summary__ignored .s-post-summary--stats-item:not(.is-ignored):not(.is-deleted),
2423
- .s-post-summary__deleted .s-post-summary--stats-item:not(.is-ignored):not(.is-deleted) {
2424
- opacity: 0.7;
2552
+ .s-post-summary__ignored .s-post-summary--stats-item:not(.is-deleted),
2553
+ .s-post-summary__deleted .s-post-summary--stats-item:not(.is-deleted) {
2554
+ opacity: 0.6;
2425
2555
  filter: grayscale(100%);
2426
2556
  }
2427
- .s-post-summary__ignored .s-post-summary--content-title,
2428
- .s-post-summary__deleted .s-post-summary--content-title {
2557
+ .s-post-summary__ignored .s-post-summary--content-title a,
2558
+ .s-post-summary__deleted .s-post-summary--content-title a {
2429
2559
  color: var(--black-600);
2430
2560
  }
2431
- .s-post-summary__ignored .s-post-summary--content-title:hover,
2432
- .s-post-summary__deleted .s-post-summary--content-title:hover {
2561
+ .s-post-summary__ignored .s-post-summary--content-title a:hover,
2562
+ .s-post-summary__deleted .s-post-summary--content-title a:hover,
2563
+ .s-post-summary__ignored .s-post-summary--content-title a:active,
2564
+ .s-post-summary__deleted .s-post-summary--content-title a:active {
2433
2565
  color: var(--black-500);
2434
2566
  }
2435
- .s-post-summary__ignored .s-post-summary--content-title:visited,
2436
- .s-post-summary__deleted .s-post-summary--content-title:visited {
2567
+ .s-post-summary__ignored .s-post-summary--content-title a:visited,
2568
+ .s-post-summary__deleted .s-post-summary--content-title a:visited {
2437
2569
  color: var(--black-700);
2438
2570
  }
2439
2571
  .s-post-summary__ignored .s-post-summary--content-excerpt,
@@ -3562,6 +3694,12 @@ body.theme-highcontrast .s-toggle-switch.s-toggle-switch__multiple input[type="r
3562
3694
  body.theme-highcontrast .s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked + label:not(.s-toggle-switch--label-off) {
3563
3695
  color: var(--white);
3564
3696
  }
3697
+ .s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked:focus + label.s-toggle-switch--label-off {
3698
+ box-shadow: 0 0 0 4px var(--focus-ring-muted);
3699
+ }
3700
+ .s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked:focus + label:not(.s-toggle-switch--label-off) {
3701
+ box-shadow: 0 0 0 4px var(--focus-ring-success);
3702
+ }
3565
3703
  .s-topbar {
3566
3704
  min-width: auto;
3567
3705
  box-shadow: var(--bs-sm);
@@ -3699,7 +3837,7 @@ body.theme-highcontrast .s-topbar__light {
3699
3837
  --theme-topbar-search-shadow-focus: 0 0 0 4px hsla(0, 0%, 100%, 0.3);
3700
3838
  --theme-topbar-select-color: hsl(210, 8%, 85%);
3701
3839
  --theme-topbar-select-background: hsl(210, 8%, 35%);
3702
- --theme-topbar-item-color: hsl(210, 8%, 97.5%);
3840
+ --theme-topbar-item-color: hsl(210, 8%, 85%);
3703
3841
  --theme-topbar-item-color-hover: hsl(0, 0%, 100%);
3704
3842
  --theme-topbar-item-background-hover: hsl(210, 8%, 25%);
3705
3843
  --theme-topbar-item-color-current: hsl(0, 0%, 100%);
@@ -3716,23 +3854,19 @@ body.theme-highcontrast .s-topbar__dark {
3716
3854
  body.theme-highcontrast .s-topbar__dark .s-badge {
3717
3855
  border-color: currentColor;
3718
3856
  }
3719
- .s-topbar .s-topbar--content,
3720
- .s-topbar .s-topbar--ctas {
3857
+ .s-topbar .s-topbar--content {
3721
3858
  display: flex;
3722
3859
  height: 100%;
3723
3860
  list-style: none;
3724
3861
  margin: 0;
3725
3862
  padding: 0;
3726
- }
3727
- .s-topbar .s-topbar--content > li,
3728
- .s-topbar .s-topbar--ctas > li {
3729
- display: inline-flex;
3730
- }
3731
- .s-topbar .s-topbar--content {
3732
3863
  overflow-x: auto;
3733
3864
  scrollbar-color: var(--scrollbar) transparent;
3734
3865
  margin-left: auto;
3735
3866
  }
3867
+ .s-topbar .s-topbar--content > li {
3868
+ display: inline-flex;
3869
+ }
3736
3870
  .s-topbar .s-topbar--content::-webkit-scrollbar {
3737
3871
  width: 10px;
3738
3872
  height: 10px;
@@ -3750,7 +3884,7 @@ body.theme-highcontrast .s-topbar__dark .s-badge {
3750
3884
  background-color: transparent;
3751
3885
  border-color: transparent;
3752
3886
  }
3753
- .s-topbar .s-topbar--content .s-topbar--item {
3887
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset) {
3754
3888
  color: var(--theme-topbar-item-color);
3755
3889
  display: inline-flex;
3756
3890
  align-items: center;
@@ -3759,60 +3893,33 @@ body.theme-highcontrast .s-topbar__dark .s-badge {
3759
3893
  white-space: nowrap;
3760
3894
  position: relative;
3761
3895
  }
3762
- .s-topbar .s-topbar--content .s-topbar--item:hover,
3763
- .s-topbar .s-topbar--content .s-topbar--item:focus,
3764
- .s-topbar .s-topbar--content .s-topbar--item.is-selected,
3765
- .s-topbar .s-topbar--content .s-topbar--item.is-selected:hover,
3766
- .s-topbar .s-topbar--content .s-topbar--item.is-selected:focus {
3896
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset):hover,
3897
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset):focus,
3898
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset).is-selected,
3899
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset).is-selected:hover,
3900
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset).is-selected:focus {
3767
3901
  color: var(--theme-topbar-item-color-hover);
3768
3902
  background-color: var(--theme-topbar-item-background-hover);
3769
3903
  text-decoration: none;
3770
3904
  outline: none;
3771
3905
  }
3772
- .s-topbar .s-topbar--content .s-topbar--item:hover .s-activity-indicator,
3773
- .s-topbar .s-topbar--content .s-topbar--item:focus .s-activity-indicator,
3774
- .s-topbar .s-topbar--content .s-topbar--item.is-selected .s-activity-indicator,
3775
- .s-topbar .s-topbar--content .s-topbar--item.is-selected:hover .s-activity-indicator,
3776
- .s-topbar .s-topbar--content .s-topbar--item.is-selected:focus .s-activity-indicator {
3906
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset):hover .s-activity-indicator,
3907
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset):focus .s-activity-indicator,
3908
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset).is-selected .s-activity-indicator,
3909
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset).is-selected:hover .s-activity-indicator,
3910
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset).is-selected:focus .s-activity-indicator {
3777
3911
  top: calc(50% - 18px);
3778
3912
  }
3779
- .s-topbar .s-topbar--content .s-topbar--item .svg-icon {
3913
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset) .svg-icon {
3780
3914
  vertical-align: text-top;
3781
3915
  }
3782
- .s-topbar .s-topbar--content .s-topbar--item .s-activity-indicator {
3916
+ .s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset) .s-activity-indicator {
3783
3917
  position: absolute;
3784
3918
  top: calc(50% - 14px);
3785
3919
  right: 2px;
3786
3920
  transition: top cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
3787
3921
  }
3788
- .s-topbar .s-topbar--ctas {
3789
- padding-left: 4px;
3790
- padding-right: 8px;
3791
- overflow-x: auto;
3792
- scrollbar-color: var(--scrollbar) transparent;
3793
- margin-left: auto;
3794
- }
3795
- .s-topbar .s-topbar--ctas::-webkit-scrollbar {
3796
- width: 10px;
3797
- height: 10px;
3798
- background-color: transparent;
3799
- }
3800
- .s-topbar .s-topbar--ctas::-webkit-scrollbar-track {
3801
- border-radius: 10px;
3802
- background-color: transparent;
3803
- }
3804
- .s-topbar .s-topbar--ctas::-webkit-scrollbar-thumb {
3805
- border-radius: 10px;
3806
- background-color: var(--scrollbar);
3807
- }
3808
- .s-topbar .s-topbar--ctas::-webkit-scrollbar-corner {
3809
- background-color: transparent;
3810
- border-color: transparent;
3811
- }
3812
- .s-topbar .s-topbar--ctas li + li {
3813
- margin-left: 4px;
3814
- }
3815
- .s-topbar .s-topbar--ctas .s-topbar--item {
3922
+ .s-topbar .s-topbar--content .s-topbar--item__unset {
3816
3923
  align-self: center;
3817
3924
  padding-top: 8px;
3818
3925
  padding-bottom: 8px;
@@ -4092,13 +4199,14 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
4092
4199
  .s-user-card {
4093
4200
  display: grid;
4094
4201
  grid-template-columns: auto 1fr;
4095
- grid-column-gap: 8px;
4202
+ column-gap: 8px;
4203
+ row-gap: 4px;
4096
4204
  align-items: center;
4097
4205
  line-height: 1;
4098
4206
  padding: 8px;
4099
4207
  }
4100
4208
  .s-user-card.s-user-card__highlighted {
4101
- background-color: var(--theme-secondary-025);
4209
+ background-color: var(--theme-secondary-050);
4102
4210
  border-radius: 5px;
4103
4211
  }
4104
4212
  .s-user-card.s-user-card__highlighted .s-user-card--type {
@@ -4107,9 +4215,6 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
4107
4215
  .s-user-card.s-user-card__full {
4108
4216
  align-items: start;
4109
4217
  }
4110
- .s-user-card.s-user-card__full .s-user-card--info {
4111
- grid-gap: 4px;
4112
- }
4113
4218
  .s-user-card.s-user-card__full .s-user-card--link {
4114
4219
  font-size: 1.15384615rem;
4115
4220
  }
@@ -4119,67 +4224,50 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
4119
4224
  .s-user-card.s-user-card__small {
4120
4225
  display: flex;
4121
4226
  align-items: center;
4122
- grid-column-gap: unset;
4227
+ gap: 4px;
4123
4228
  padding: 0;
4124
4229
  }
4125
- .s-user-card.s-user-card__small .s-user-card--time {
4126
- margin-right: 6px;
4127
- margin-bottom: 0;
4128
- }
4129
- .s-user-card.s-user-card__small .s-user-card--link {
4130
- margin-right: 6px;
4131
- }
4132
- .s-user-card.s-user-card__small .s-user-card--avatar {
4133
- margin-right: 6px;
4134
- }
4135
4230
  .s-user-card.s-user-card__small .s-user-card--info {
4136
- display: flex;
4231
+ flex-direction: row;
4137
4232
  align-items: center;
4138
- grid-column-gap: unset;
4139
4233
  }
4140
4234
  .s-user-card.s-user-card__minimal {
4141
4235
  display: flex;
4142
4236
  align-items: center;
4143
- grid-column-gap: unset;
4237
+ gap: 4px;
4144
4238
  padding: 0;
4145
4239
  }
4146
4240
  .s-user-card.s-user-card__minimal .s-user-card--time {
4147
- margin-right: 4px;
4148
- margin-bottom: 0;
4149
4241
  white-space: nowrap;
4150
4242
  }
4151
4243
  .s-user-card.s-user-card__minimal .s-user-card--link {
4152
- margin-right: 4px;
4153
4244
  white-space: nowrap;
4154
4245
  }
4155
- .s-user-card.s-user-card__minimal .s-user-card--avatar {
4156
- margin-right: 4px;
4157
- }
4158
4246
  .s-user-card.s-user-card__minimal .s-user-card--rep {
4159
- padding: 0;
4160
4247
  color: var(--black-600);
4161
4248
  }
4162
4249
  .s-user-card.s-user-card__minimal .s-user-card--info {
4163
- display: flex;
4250
+ flex-direction: row;
4164
4251
  align-items: center;
4165
- grid-column-gap: unset;
4166
4252
  }
4167
4253
  .s-user-card .s-user-card--type {
4168
4254
  grid-column: 1 / 3;
4169
- padding-top: 4px;
4170
4255
  font-size: 12px;
4171
4256
  color: var(--theme-primary-400);
4172
4257
  }
4258
+ .s-user-card .s-user-card--type a {
4259
+ color: inherit;
4260
+ }
4173
4261
  .s-user-card--time {
4174
4262
  grid-column: 1 / 3;
4175
4263
  grid-row: 1 / 2;
4176
4264
  color: var(--black-500);
4177
4265
  font-size: 12px;
4178
- margin-bottom: 4px;
4179
4266
  }
4180
4267
  .s-user-card--info {
4181
- display: grid;
4182
- grid-gap: 2px;
4268
+ display: flex;
4269
+ flex-direction: column;
4270
+ gap: 4px;
4183
4271
  }
4184
4272
  .s-user-card--link {
4185
4273
  min-width: 0;
@@ -4194,9 +4282,9 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
4194
4282
  padding: 0;
4195
4283
  display: flex;
4196
4284
  align-items: center;
4285
+ gap: 6px;
4197
4286
  }
4198
4287
  .s-user-card--awards li {
4199
- margin-right: 6px;
4200
4288
  font-size: 12px;
4201
4289
  }
4202
4290
  .s-user-card--rep {
@@ -4208,7 +4296,6 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
4208
4296
  color: var(--black-500);
4209
4297
  }
4210
4298
  .s-user-card--tags {
4211
- padding-top: 1px;
4212
4299
  min-width: 0;
4213
4300
  align-items: center;
4214
4301
  flex-wrap: wrap;
@@ -4462,8 +4549,58 @@ body.theme-highcontrast .s-sidebarwidget__green .s-sidebarwidget--content {
4462
4549
  body.theme-highcontrast .s-sidebarwidget__green:after {
4463
4550
  border-color: var(--green-700);
4464
4551
  }
4552
+ @font-face {
4553
+ font-family: "Segoe UI Adjusted";
4554
+ src: local(Segoe UI);
4555
+ ascent-override: 95%;
4556
+ }
4557
+ @font-face {
4558
+ font-family: "Segoe UI Adjusted";
4559
+ src: local(Segoe UI Italic);
4560
+ ascent-override: 95%;
4561
+ font-style: italic;
4562
+ }
4563
+ @font-face {
4564
+ font-family: "Segoe UI Adjusted";
4565
+ src: local(Segoe UI Semibold);
4566
+ ascent-override: 95%;
4567
+ font-weight: 600;
4568
+ }
4569
+ @font-face {
4570
+ font-family: "Segoe UI Adjusted";
4571
+ src: local(Segoe UI Semibold Italic);
4572
+ ascent-override: 95%;
4573
+ font-style: italic;
4574
+ font-weight: 600;
4575
+ }
4576
+ @font-face {
4577
+ font-family: "Segoe UI Adjusted";
4578
+ src: local(Segoe UI Bold);
4579
+ ascent-override: 90%;
4580
+ font-weight: 700;
4581
+ }
4582
+ @font-face {
4583
+ font-family: "Segoe UI Adjusted";
4584
+ src: local(Segoe UI Bold Italic);
4585
+ ascent-override: 95%;
4586
+ font-style: italic;
4587
+ font-weight: 700;
4588
+ }
4589
+ @font-face {
4590
+ font-family: "Segoe UI Adjusted";
4591
+ src: local(Segoe UI Black);
4592
+ ascent-override: 95%;
4593
+ font-weight: 800;
4594
+ }
4595
+ @font-face {
4596
+ font-family: "Segoe UI Adjusted";
4597
+ src: local(Segoe UI Black Italic);
4598
+ ascent-override: 95%;
4599
+ font-style: italic;
4600
+ font-weight: 800;
4601
+ }
4465
4602
  body {
4466
- --ff-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Liberation Sans", sans-serif;
4603
+ --ff-sans: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
4467
4604
  --ff-serif: Georgia, Cambria, "Times New Roman", Times, serif;
4468
4605
  --ff-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", "Liberation Mono", Menlo, Monaco, Consolas, monospace;
4469
4606
  --theme-body-font-family: var(--ff-sans);
@@ -4476,6 +4613,7 @@ body.theme-system .theme-light__forced .themed,
4476
4613
  body.theme-dark .themed,
4477
4614
  body:not(.theme-dark) .theme-dark__forced .themed {
4478
4615
  --theme-body-font-color: var(--black-800);
4616
+ --theme-background-color: var(--white);
4479
4617
  --theme-link-color: var(--theme-secondary-400);
4480
4618
  --theme-link-color-hover: var(--theme-secondary-350);
4481
4619
  --theme-link-color-visited: var(--theme-secondary-500);
@@ -4528,6 +4666,11 @@ body:not(.theme-dark) .theme-dark__forced .themed {
4528
4666
  --theme-topbar-item-color-current: var(--black);
4529
4667
  --theme-topbar-item-border-current: var(--theme-primary-color);
4530
4668
  --theme-topbar-accent-border: 3px solid var(--theme-primary-color);
4669
+ --theme-post-title-color: var(--theme-link-color);
4670
+ --theme-post-title-color-hover: var(--theme-link-color-hover);
4671
+ --theme-post-title-color-visited: var(--theme-link-color-visited);
4672
+ --theme-post-title-font-family: var(--theme-body-font-family);
4673
+ --theme-post-body-font-family: var(--theme-body-font-family);
4531
4674
  }
4532
4675
  .highcontrast-themed-colors,
4533
4676
  body.theme-highcontrast:not(.theme-dark),
@@ -4692,6 +4835,7 @@ body.theme-system .theme-light__forced {
4692
4835
  --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);
4693
4836
  --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);
4694
4837
  --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);
4838
+ --bs-xl: 0 10px 24px hsla(0, 0%, 0%, 0.05), 0 20px 48px hsla(0, 0%, 0%, 0.05), 0 1px 4px hsla(0, 0%, 0%, 0.1);
4695
4839
  --scrollbar: hsla(0, 0%, 0%, 0.2);
4696
4840
  --highlight-bg: hsl(0, 0%, 96.5%);
4697
4841
  --highlight-color: var(--black-750);
@@ -4862,6 +5006,7 @@ body:not(.theme-dark) .theme-dark__forced {
4862
5006
  --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);
4863
5007
  --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);
4864
5008
  --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);
5009
+ --bs-xl: 0 10px 24px hsla(0, 0%, 0%, 0.1), 0 20px 48px hsla(0, 0%, 0%, 0.1), 0 1px 4px hsla(0, 0%, 0%, 0.15);
4865
5010
  --scrollbar: hsla(0, 0%, 100%, 0.2);
4866
5011
  --highlight-bg: hsl(0, 2%, 11%);
4867
5012
  --highlight-color: var(--black);
@@ -5030,6 +5175,7 @@ body:not(.theme-dark) .theme-dark__forced .themed {
5030
5175
  --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);
5031
5176
  --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);
5032
5177
  --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);
5178
+ --bs-xl: 0 10px 24px hsla(0, 0%, 0%, 0.1), 0 20px 48px hsla(0, 0%, 0%, 0.1), 0 1px 4px hsla(0, 0%, 0%, 0.15);
5033
5179
  --scrollbar: hsla(0, 0%, 100%, 0.2);
5034
5180
  --highlight-bg: hsl(0, 2%, 11%);
5035
5181
  --highlight-color: var(--black);
@@ -5199,6 +5345,7 @@ body.theme-system.theme-highcontrast .theme-light__forced {
5199
5345
  --bs-sm: none;
5200
5346
  --bs-md: none;
5201
5347
  --bs-lg: none;
5348
+ --bs-xl: none;
5202
5349
  --scrollbar: var(--black);
5203
5350
  --highlight-bg: hsl(0, 0%, 96.5%);
5204
5351
  --highlight-color: var(--black-750);
@@ -5319,6 +5466,7 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
5319
5466
  --bs-sm: none;
5320
5467
  --bs-md: none;
5321
5468
  --bs-lg: none;
5469
+ --bs-xl: none;
5322
5470
  --scrollbar: var(--black);
5323
5471
  --highlight-bg: hsl(0, 0%, 10%);
5324
5472
  --highlight-color: hsl(0, 0%, 100%);
@@ -5439,6 +5587,7 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
5439
5587
  --bs-sm: none;
5440
5588
  --bs-md: none;
5441
5589
  --bs-lg: none;
5590
+ --bs-xl: none;
5442
5591
  --scrollbar: var(--black);
5443
5592
  --highlight-bg: hsl(0, 0%, 10%);
5444
5593
  --highlight-color: hsl(0, 0%, 100%);
@@ -10817,6 +10966,9 @@ body.theme-dark .d\:bg-theme-secondary-025,
10817
10966
  .grid__12 {
10818
10967
  grid-template-columns: repeat(12, minmax(0, 1fr));
10819
10968
  }
10969
+ .grid__auto {
10970
+ grid-template-columns: auto 1fr;
10971
+ }
10820
10972
  .grid--col-all {
10821
10973
  grid-column: 1 / -1;
10822
10974
  }
@@ -12402,6 +12554,48 @@ body.theme-dark .d\:bg-theme-secondary-025,
12402
12554
  .ln100 {
12403
12555
  left: -100% !important;
12404
12556
  }
12557
+ .i0 {
12558
+ inset: 0 !important;
12559
+ }
12560
+ .i1 {
12561
+ inset: 1px !important;
12562
+ }
12563
+ .i2 {
12564
+ inset: 2px !important;
12565
+ }
12566
+ .i4 {
12567
+ inset: 4px !important;
12568
+ }
12569
+ .i6 {
12570
+ inset: 6px !important;
12571
+ }
12572
+ .i8 {
12573
+ inset: 8px !important;
12574
+ }
12575
+ .i12 {
12576
+ inset: 12px !important;
12577
+ }
12578
+ .i16 {
12579
+ inset: 16px !important;
12580
+ }
12581
+ .i24 {
12582
+ inset: 24px !important;
12583
+ }
12584
+ .i32 {
12585
+ inset: 32px !important;
12586
+ }
12587
+ .i48 {
12588
+ inset: 48px !important;
12589
+ }
12590
+ .i64 {
12591
+ inset: 64px !important;
12592
+ }
12593
+ .i96 {
12594
+ inset: 96px !important;
12595
+ }
12596
+ .i128 {
12597
+ inset: 128px !important;
12598
+ }
12405
12599
  h1,
12406
12600
  h2,
12407
12601
  h3,
@@ -12724,6 +12918,12 @@ ul ol,
12724
12918
  ol ol {
12725
12919
  margin-bottom: 0;
12726
12920
  }
12921
+ ul {
12922
+ list-style-type: disc;
12923
+ }
12924
+ ol {
12925
+ list-style-type: decimal;
12926
+ }
12727
12927
  .list-reset {
12728
12928
  list-style: none;
12729
12929
  margin: 0;
@@ -13346,6 +13546,9 @@ ol ol {
13346
13546
  .h\:bs-lg:hover {
13347
13547
  box-shadow: var(--bs-lg) !important;
13348
13548
  }
13549
+ .bs-xl {
13550
+ box-shadow: var(--bs-xl) !important;
13551
+ }
13349
13552
  .bs-ring {
13350
13553
  box-shadow: 0 0 0 4px var(--focus-ring);
13351
13554
  }
@@ -13458,6 +13661,9 @@ ol ol {
13458
13661
  .w-auto {
13459
13662
  width: auto !important;
13460
13663
  }
13664
+ .w-screen {
13665
+ width: 100vw !important;
13666
+ }
13461
13667
  .ws0,
13462
13668
  .w0 {
13463
13669
  width: 0 !important;
@@ -13588,6 +13794,9 @@ ol ol {
13588
13794
  .wmx-initial {
13589
13795
  max-width: initial !important;
13590
13796
  }
13797
+ .wmx-screen {
13798
+ max-width: 100vw !important;
13799
+ }
13591
13800
  .wmn0 {
13592
13801
  min-width: 0 !important;
13593
13802
  }
@@ -13651,6 +13860,9 @@ ol ol {
13651
13860
  .h-auto {
13652
13861
  height: auto !important;
13653
13862
  }
13863
+ .h-screen {
13864
+ height: 100vh !important;
13865
+ }
13654
13866
  .hs0,
13655
13867
  .h0 {
13656
13868
  height: 0 !important;
@@ -13772,6 +13984,9 @@ ol ol {
13772
13984
  .hmx-initial {
13773
13985
  max-height: initial !important;
13774
13986
  }
13987
+ .hmx-screen {
13988
+ max-height: 100vh !important;
13989
+ }
13775
13990
  .hmn0 {
13776
13991
  min-height: 0 !important;
13777
13992
  }
@@ -13817,6 +14032,9 @@ ol ol {
13817
14032
  .hmn-initial {
13818
14033
  min-height: initial !important;
13819
14034
  }
14035
+ .hmx-screen {
14036
+ min-height: 100vh !important;
14037
+ }
13820
14038
  /* stylelint-disable */
13821
14039
  @media (max-width: 1264px) {
13822
14040
  .lg\:ba {
@@ -14046,6 +14264,9 @@ ol ol {
14046
14264
  .lg\:grid__12 {
14047
14265
  grid-template-columns: repeat(12, minmax(0, 1fr));
14048
14266
  }
14267
+ .lg\:grid__auto {
14268
+ grid-template-columns: auto 1fr;
14269
+ }
14049
14270
  .lg\:grid--col-all {
14050
14271
  grid-column: 1 / -1;
14051
14272
  }
@@ -14835,12 +15056,18 @@ ol ol {
14835
15056
  .lg\:w-auto {
14836
15057
  width: auto !important;
14837
15058
  }
15059
+ .lg\:w-screen {
15060
+ width: 100vw !important;
15061
+ }
14838
15062
  .lg\:wmx100 {
14839
15063
  max-width: 100% !important;
14840
15064
  }
14841
15065
  .lg\:wmx-initial {
14842
15066
  max-width: initial !important;
14843
15067
  }
15068
+ .lg\:wmx-screen {
15069
+ max-width: 100vw !important;
15070
+ }
14844
15071
  .lg\:wmn100 {
14845
15072
  min-width: 100% !important;
14846
15073
  }
@@ -14853,18 +15080,27 @@ ol ol {
14853
15080
  .lg\:h-auto {
14854
15081
  height: auto !important;
14855
15082
  }
15083
+ .lg\:h-screen {
15084
+ height: 100vh !important;
15085
+ }
14856
15086
  .lg\:hmx100 {
14857
15087
  max-height: 100% !important;
14858
15088
  }
14859
15089
  .lg\:hmx-initial {
14860
15090
  max-height: initial !important;
14861
15091
  }
15092
+ .lg\:hmx-screen {
15093
+ max-height: 100vh !important;
15094
+ }
14862
15095
  .lg\:hmn100 {
14863
15096
  min-height: 100% !important;
14864
15097
  }
14865
15098
  .lg\:hmn-initial {
14866
15099
  min-height: initial !important;
14867
15100
  }
15101
+ .lg\:hmx-screen {
15102
+ min-height: 100vh !important;
15103
+ }
14868
15104
  }
14869
15105
  @media (max-width: 980px) {
14870
15106
  .md\:ba {
@@ -15094,6 +15330,9 @@ ol ol {
15094
15330
  .md\:grid__12 {
15095
15331
  grid-template-columns: repeat(12, minmax(0, 1fr));
15096
15332
  }
15333
+ .md\:grid__auto {
15334
+ grid-template-columns: auto 1fr;
15335
+ }
15097
15336
  .md\:grid--col-all {
15098
15337
  grid-column: 1 / -1;
15099
15338
  }
@@ -15883,12 +16122,18 @@ ol ol {
15883
16122
  .md\:w-auto {
15884
16123
  width: auto !important;
15885
16124
  }
16125
+ .md\:w-screen {
16126
+ width: 100vw !important;
16127
+ }
15886
16128
  .md\:wmx100 {
15887
16129
  max-width: 100% !important;
15888
16130
  }
15889
16131
  .md\:wmx-initial {
15890
16132
  max-width: initial !important;
15891
16133
  }
16134
+ .md\:wmx-screen {
16135
+ max-width: 100vw !important;
16136
+ }
15892
16137
  .md\:wmn100 {
15893
16138
  min-width: 100% !important;
15894
16139
  }
@@ -15901,18 +16146,27 @@ ol ol {
15901
16146
  .md\:h-auto {
15902
16147
  height: auto !important;
15903
16148
  }
16149
+ .md\:h-screen {
16150
+ height: 100vh !important;
16151
+ }
15904
16152
  .md\:hmx100 {
15905
16153
  max-height: 100% !important;
15906
16154
  }
15907
16155
  .md\:hmx-initial {
15908
16156
  max-height: initial !important;
15909
16157
  }
16158
+ .md\:hmx-screen {
16159
+ max-height: 100vh !important;
16160
+ }
15910
16161
  .md\:hmn100 {
15911
16162
  min-height: 100% !important;
15912
16163
  }
15913
16164
  .md\:hmn-initial {
15914
16165
  min-height: initial !important;
15915
16166
  }
16167
+ .md\:hmx-screen {
16168
+ min-height: 100vh !important;
16169
+ }
15916
16170
  }
15917
16171
  @media (max-width: 640px) {
15918
16172
  .sm\:ba {
@@ -16142,6 +16396,9 @@ ol ol {
16142
16396
  .sm\:grid__12 {
16143
16397
  grid-template-columns: repeat(12, minmax(0, 1fr));
16144
16398
  }
16399
+ .sm\:grid__auto {
16400
+ grid-template-columns: auto 1fr;
16401
+ }
16145
16402
  .sm\:grid--col-all {
16146
16403
  grid-column: 1 / -1;
16147
16404
  }
@@ -16931,12 +17188,18 @@ ol ol {
16931
17188
  .sm\:w-auto {
16932
17189
  width: auto !important;
16933
17190
  }
17191
+ .sm\:w-screen {
17192
+ width: 100vw !important;
17193
+ }
16934
17194
  .sm\:wmx100 {
16935
17195
  max-width: 100% !important;
16936
17196
  }
16937
17197
  .sm\:wmx-initial {
16938
17198
  max-width: initial !important;
16939
17199
  }
17200
+ .sm\:wmx-screen {
17201
+ max-width: 100vw !important;
17202
+ }
16940
17203
  .sm\:wmn100 {
16941
17204
  min-width: 100% !important;
16942
17205
  }
@@ -16949,18 +17212,27 @@ ol ol {
16949
17212
  .sm\:h-auto {
16950
17213
  height: auto !important;
16951
17214
  }
17215
+ .sm\:h-screen {
17216
+ height: 100vh !important;
17217
+ }
16952
17218
  .sm\:hmx100 {
16953
17219
  max-height: 100% !important;
16954
17220
  }
16955
17221
  .sm\:hmx-initial {
16956
17222
  max-height: initial !important;
16957
17223
  }
17224
+ .sm\:hmx-screen {
17225
+ max-height: 100vh !important;
17226
+ }
16958
17227
  .sm\:hmn100 {
16959
17228
  min-height: 100% !important;
16960
17229
  }
16961
17230
  .sm\:hmn-initial {
16962
17231
  min-height: initial !important;
16963
17232
  }
17233
+ .sm\:hmx-screen {
17234
+ min-height: 100vh !important;
17235
+ }
16964
17236
  }
16965
17237
  @media print {
16966
17238
  .print\:d-block {
@@ -16990,7 +17262,7 @@ body {
16990
17262
  body {
16991
17263
  box-sizing: border-box;
16992
17264
  min-height: 100%;
16993
- background-color: var(--white);
17265
+ background-color: var(--theme-background-color);
16994
17266
  }
16995
17267
  body *,
16996
17268
  body *:before,
@@ -17039,7 +17311,7 @@ body *:after {
17039
17311
  .s-banner--container {
17040
17312
  position: relative;
17041
17313
  width: 100%;
17042
- max-width: 1060px;
17314
+ max-width: 81.025641rem;
17043
17315
  margin: 0 auto;
17044
17316
  }
17045
17317
  .s-btn {
@@ -18321,7 +18593,7 @@ body.theme-highcontrast .s-notice__danger {
18321
18593
  }
18322
18594
  .s-tag {
18323
18595
  display: inline-flex;
18324
- align-content: center;
18596
+ align-items: center;
18325
18597
  justify-content: center;
18326
18598
  min-width: 0;
18327
18599
  padding-left: 4px;
@@ -18542,6 +18814,33 @@ body.theme-highcontrast a.s-tag__muted:not(.is-selected):focus,
18542
18814
  body.theme-highcontrast a.s-tag__muted:not(.is-selected):active {
18543
18815
  border-color: currentColor;
18544
18816
  }
18817
+ .s-tag__watched,
18818
+ .s-tag__ignored {
18819
+ position: relative;
18820
+ padding-left: 22px;
18821
+ }
18822
+ .s-tag__watched:before,
18823
+ .s-tag__ignored:before {
18824
+ content: "";
18825
+ display: block;
18826
+ width: 14px;
18827
+ height: 14px;
18828
+ margin-right: 2px;
18829
+ background-color: currentColor;
18830
+ position: absolute;
18831
+ left: 4px;
18832
+ top: calc(50% - 7px);
18833
+ -webkit-mask: var(--s-tag-icon) no-repeat center;
18834
+ mask: var(--s-tag-icon) no-repeat center;
18835
+ -webkit-mask-size: contain;
18836
+ mask-size: contain;
18837
+ }
18838
+ .s-tag__watched {
18839
+ --s-tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7.05 1C2.63 1 0 6.5 0 6.5S2.63 12 7.05 12C11.38 12 14 6.5 14 6.5S11.37 1 7.05 1ZM7 10.17A3.59 3.59 0 0 1 3.5 6.5 3.6 3.6 0 0 1 7 2.83c1.94 0 3.5 1.65 3.5 3.67A3.57 3.57 0 0 1 7 10.17Zm0-1.84c.97 0 1.75-.81 1.75-1.83S7.97 4.67 7 4.67s-1.75.81-1.75 1.83S6.03 8.33 7 8.33Z'/%3E%3C/svg%3E");
18840
+ }
18841
+ .s-tag__ignored {
18842
+ --s-tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3.52 7.38 1.58 9.26A12.38 12.38 0 0 1 0 7s2.63-5.14 7.05-5.14c.66 0 1.28.12 1.86.32L7.44 3.6a3.48 3.48 0 0 0-3.92 3.78ZM5.3 9.99c.5.28 1.1.44 1.71.44 1.94 0 3.5-1.53 3.5-3.43 0-.62-.17-1.21-.47-1.72L8.7 6.6a1.73 1.73 0 0 1-2.08 2.07L5.29 10Zm6.23-6.19A12.7 12.7 0 0 1 14 7s-2.63 5.14-6.95 5.14A6.1 6.1 0 0 1 4 11.3L2.27 13l-1.4-1.36L11.9 1l1.23 1.2-1.6 1.6Z'/%3E%3C/svg%3E");
18843
+ }
18545
18844
  .s-pagination {
18546
18845
  display: flex;
18547
18846
  flex-wrap: wrap;
@@ -18588,3 +18887,4 @@ body.theme-highcontrast .s-pagination--item {
18588
18887
  .s-sidebarwidget--subnav li[aria-current="page"] {
18589
18888
  background-image: url("data:image/svg+xml,%3C?xml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22?%3E%3Csvg%20version%3D%221.1%22%20viewBox%3D%220%200%207%2010%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22m0.72153%200.68446%204.1336%204.3077-4.1336%204.3077%22%20fill%3D%22none%22%20stroke%3D%22var%28--theme-primary-color%29%22%20stroke-width%3D%222%22/%3E%3C/svg%3E");
18590
18889
  }
18890
+