@stackoverflow/stacks 0.74.0 → 0.75.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/stacks.css +251 -40
- package/dist/css/stacks.min.css +1 -1
- package/lib/css/atomic/_stacks-misc.less +1 -0
- package/lib/css/atomic/_stacks-spacing.less +6 -0
- package/lib/css/atomic/_stacks-width-height.less +8 -2
- package/lib/css/components/_stacks-post-summary.less +134 -39
- package/lib/css/exports/_stacks-constants-colors.less +13 -1
- package/package.json +8 -8
package/dist/css/stacks.css
CHANGED
|
@@ -2213,6 +2213,77 @@ body.theme-dark .s-popover--arrow,
|
|
|
2213
2213
|
.s-post-summary.s-post-summary__minimal .s-post-summary--content {
|
|
2214
2214
|
width: 100%;
|
|
2215
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
|
+
}
|
|
2216
2287
|
.s-post-summary--content-menu-button {
|
|
2217
2288
|
position: absolute !important;
|
|
2218
2289
|
top: 8px;
|
|
@@ -2223,9 +2294,9 @@ body.theme-dark .s-popover--arrow,
|
|
|
2223
2294
|
margin: 0 !important;
|
|
2224
2295
|
}
|
|
2225
2296
|
.s-post-summary--stats {
|
|
2226
|
-
|
|
2227
|
-
margin-right:
|
|
2228
|
-
margin-bottom:
|
|
2297
|
+
gap: 6px;
|
|
2298
|
+
margin-right: 16px;
|
|
2299
|
+
margin-bottom: 4px;
|
|
2229
2300
|
width: 108px;
|
|
2230
2301
|
display: flex;
|
|
2231
2302
|
flex-direction: column;
|
|
@@ -2237,19 +2308,18 @@ body.theme-dark .s-popover--arrow,
|
|
|
2237
2308
|
}
|
|
2238
2309
|
.s-post-summary--stats .s-post-summary--stats-item {
|
|
2239
2310
|
display: inline-flex;
|
|
2311
|
+
gap: 0.3em;
|
|
2240
2312
|
align-items: center;
|
|
2241
2313
|
justify-content: center;
|
|
2242
|
-
margin-right: var(--s-post-summary-stats-gap);
|
|
2243
|
-
margin-bottom: var(--s-post-summary-stats-gap);
|
|
2244
2314
|
white-space: nowrap;
|
|
2245
2315
|
border: 1px solid transparent;
|
|
2246
2316
|
}
|
|
2247
|
-
.s-post-summary--stats .s-post-summary--stats-item .svg-icon {
|
|
2248
|
-
margin-right: 4px;
|
|
2249
|
-
}
|
|
2250
2317
|
.s-post-summary--stats .s-post-summary--stats-item.s-post-summary--stats-item__emphasized {
|
|
2251
2318
|
color: var(--fc-dark);
|
|
2252
2319
|
}
|
|
2320
|
+
.s-post-summary--stats .s-post-summary--stats-item .s-post-summary--stats-item-number {
|
|
2321
|
+
font-weight: 500;
|
|
2322
|
+
}
|
|
2253
2323
|
.s-post-summary--stats .s-post-summary--stats-item.has-answers,
|
|
2254
2324
|
.s-post-summary--stats .s-post-summary--stats-item.has-bounty,
|
|
2255
2325
|
.s-post-summary--stats .s-post-summary--stats-item.is-deleted,
|
|
@@ -2257,7 +2327,8 @@ body.theme-dark .s-popover--arrow,
|
|
|
2257
2327
|
.s-post-summary--stats .s-post-summary--stats-item.is-draft,
|
|
2258
2328
|
.s-post-summary--stats .s-post-summary--stats-item.is-review,
|
|
2259
2329
|
.s-post-summary--stats .s-post-summary--stats-item.is-closed,
|
|
2260
|
-
.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 {
|
|
2261
2332
|
border-radius: 3px;
|
|
2262
2333
|
padding: 2px 4px;
|
|
2263
2334
|
}
|
|
@@ -2310,6 +2381,10 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2310
2381
|
background-color: var(--black-100);
|
|
2311
2382
|
border-color: var(--black-600);
|
|
2312
2383
|
}
|
|
2384
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-pinned {
|
|
2385
|
+
color: var(--white);
|
|
2386
|
+
background-color: var(--black-700);
|
|
2387
|
+
}
|
|
2313
2388
|
@media (max-width: 980px) {
|
|
2314
2389
|
.s-post-summary--stats {
|
|
2315
2390
|
flex-direction: row;
|
|
@@ -2325,22 +2400,43 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2325
2400
|
display: block;
|
|
2326
2401
|
font-size: 1.30769231rem;
|
|
2327
2402
|
margin-top: -0.15rem;
|
|
2328
|
-
margin-bottom:
|
|
2329
|
-
overflow-wrap: break-word;
|
|
2330
|
-
word-wrap: break-word;
|
|
2403
|
+
margin-bottom: 0.3846rem;
|
|
2331
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;
|
|
2332
2414
|
}
|
|
2333
2415
|
.s-post-summary--content .s-post-summary--content-title .iconShield {
|
|
2334
|
-
color: var(--
|
|
2335
|
-
|
|
2416
|
+
color: var(--fc-light);
|
|
2417
|
+
}
|
|
2418
|
+
.s-post-summary--content .s-post-summary--content-title .svg-icon {
|
|
2419
|
+
vertical-align: text-bottom;
|
|
2336
2420
|
position: relative;
|
|
2337
|
-
|
|
2421
|
+
top: -1px;
|
|
2338
2422
|
}
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
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);
|
|
2344
2440
|
}
|
|
2345
2441
|
.s-post-summary--content .s-post-summary--content-type {
|
|
2346
2442
|
color: var(--fc-medium);
|
|
@@ -2353,11 +2449,19 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2353
2449
|
.s-post-summary--content .s-post-summary--content-excerpt {
|
|
2354
2450
|
margin-top: -2px;
|
|
2355
2451
|
margin-bottom: 8px;
|
|
2452
|
+
font-family: var(--theme-post-body-font-family);
|
|
2356
2453
|
color: var(--fc-medium);
|
|
2357
2454
|
display: -webkit-box;
|
|
2358
2455
|
-webkit-line-clamp: 2;
|
|
2359
2456
|
-webkit-box-orient: vertical;
|
|
2360
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;
|
|
2361
2465
|
}
|
|
2362
2466
|
.s-post-summary--content .s-post-summary--content-excerpt.s-post-summary--content-excerpt__sm {
|
|
2363
2467
|
display: -webkit-box;
|
|
@@ -2378,25 +2482,20 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2378
2482
|
overflow: hidden;
|
|
2379
2483
|
}
|
|
2380
2484
|
.s-post-summary--meta {
|
|
2381
|
-
--s-post-summary-tags-gap: 4px;
|
|
2382
2485
|
display: flex;
|
|
2383
2486
|
align-items: center;
|
|
2384
2487
|
justify-content: space-between;
|
|
2385
2488
|
flex-wrap: wrap;
|
|
2386
|
-
|
|
2489
|
+
column-gap: 6px;
|
|
2490
|
+
row-gap: 8px;
|
|
2387
2491
|
}
|
|
2388
2492
|
.s-post-summary--meta .s-post-summary--meta-tags {
|
|
2389
2493
|
display: flex;
|
|
2390
2494
|
flex-wrap: wrap;
|
|
2391
|
-
|
|
2392
|
-
}
|
|
2393
|
-
.s-post-summary--meta .s-post-summary--meta-tags > * {
|
|
2394
|
-
margin-right: var(--s-post-summary-tags-gap);
|
|
2395
|
-
margin-bottom: var(--s-post-summary-tags-gap);
|
|
2495
|
+
gap: 4px;
|
|
2396
2496
|
}
|
|
2397
2497
|
.s-post-summary--meta .s-user-card {
|
|
2398
2498
|
flex-wrap: wrap;
|
|
2399
|
-
margin-bottom: var(--s-post-summary-tags-gap);
|
|
2400
2499
|
margin-left: auto;
|
|
2401
2500
|
justify-content: flex-end;
|
|
2402
2501
|
}
|
|
@@ -2455,22 +2554,18 @@ body.theme-highcontrast .s-post-summary--answer:before {
|
|
|
2455
2554
|
opacity: 0.6;
|
|
2456
2555
|
filter: grayscale(100%);
|
|
2457
2556
|
}
|
|
2458
|
-
.s-post-summary__ignored .s-post-summary--content-title,
|
|
2459
|
-
.s-post-summary__deleted .s-post-summary--content-title
|
|
2460
|
-
.s-post-summary__ignored .s-post-summary--content-title .s-link,
|
|
2461
|
-
.s-post-summary__deleted .s-post-summary--content-title .s-link {
|
|
2557
|
+
.s-post-summary__ignored .s-post-summary--content-title a,
|
|
2558
|
+
.s-post-summary__deleted .s-post-summary--content-title a {
|
|
2462
2559
|
color: var(--black-600);
|
|
2463
2560
|
}
|
|
2464
|
-
.s-post-summary__ignored .s-post-summary--content-title:hover,
|
|
2465
|
-
.s-post-summary__deleted .s-post-summary--content-title:hover,
|
|
2466
|
-
.s-post-summary__ignored .s-post-summary--content-title
|
|
2467
|
-
.s-post-summary__deleted .s-post-summary--content-title
|
|
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 {
|
|
2468
2565
|
color: var(--black-500);
|
|
2469
2566
|
}
|
|
2470
|
-
.s-post-summary__ignored .s-post-summary--content-title:visited,
|
|
2471
|
-
.s-post-summary__deleted .s-post-summary--content-title:visited
|
|
2472
|
-
.s-post-summary__ignored .s-post-summary--content-title .s-link:visited,
|
|
2473
|
-
.s-post-summary__deleted .s-post-summary--content-title .s-link: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 {
|
|
2474
2569
|
color: var(--black-700);
|
|
2475
2570
|
}
|
|
2476
2571
|
.s-post-summary__ignored .s-post-summary--content-excerpt,
|
|
@@ -4551,6 +4646,11 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
4551
4646
|
--theme-topbar-item-color-current: var(--black);
|
|
4552
4647
|
--theme-topbar-item-border-current: var(--theme-primary-color);
|
|
4553
4648
|
--theme-topbar-accent-border: 3px solid var(--theme-primary-color);
|
|
4649
|
+
--theme-post-title-color: var(--theme-link-color);
|
|
4650
|
+
--theme-post-title-color-hover: var(--theme-link-color-hover);
|
|
4651
|
+
--theme-post-title-color-visited: var(--theme-link-color-visited);
|
|
4652
|
+
--theme-post-title-font-family: var(--theme-body-font-family);
|
|
4653
|
+
--theme-post-body-font-family: var(--theme-body-font-family);
|
|
4554
4654
|
}
|
|
4555
4655
|
.highcontrast-themed-colors,
|
|
4556
4656
|
body.theme-highcontrast:not(.theme-dark),
|
|
@@ -4715,6 +4815,7 @@ body.theme-system .theme-light__forced {
|
|
|
4715
4815
|
--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);
|
|
4716
4816
|
--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);
|
|
4717
4817
|
--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);
|
|
4818
|
+
--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);
|
|
4718
4819
|
--scrollbar: hsla(0, 0%, 0%, 0.2);
|
|
4719
4820
|
--highlight-bg: hsl(0, 0%, 96.5%);
|
|
4720
4821
|
--highlight-color: var(--black-750);
|
|
@@ -4885,6 +4986,7 @@ body:not(.theme-dark) .theme-dark__forced {
|
|
|
4885
4986
|
--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);
|
|
4886
4987
|
--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);
|
|
4887
4988
|
--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);
|
|
4989
|
+
--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);
|
|
4888
4990
|
--scrollbar: hsla(0, 0%, 100%, 0.2);
|
|
4889
4991
|
--highlight-bg: hsl(0, 2%, 11%);
|
|
4890
4992
|
--highlight-color: var(--black);
|
|
@@ -5053,6 +5155,7 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
5053
5155
|
--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);
|
|
5054
5156
|
--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);
|
|
5055
5157
|
--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);
|
|
5158
|
+
--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);
|
|
5056
5159
|
--scrollbar: hsla(0, 0%, 100%, 0.2);
|
|
5057
5160
|
--highlight-bg: hsl(0, 2%, 11%);
|
|
5058
5161
|
--highlight-color: var(--black);
|
|
@@ -5222,6 +5325,7 @@ body.theme-system.theme-highcontrast .theme-light__forced {
|
|
|
5222
5325
|
--bs-sm: none;
|
|
5223
5326
|
--bs-md: none;
|
|
5224
5327
|
--bs-lg: none;
|
|
5328
|
+
--bs-xl: none;
|
|
5225
5329
|
--scrollbar: var(--black);
|
|
5226
5330
|
--highlight-bg: hsl(0, 0%, 96.5%);
|
|
5227
5331
|
--highlight-color: var(--black-750);
|
|
@@ -5342,6 +5446,7 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
|
|
|
5342
5446
|
--bs-sm: none;
|
|
5343
5447
|
--bs-md: none;
|
|
5344
5448
|
--bs-lg: none;
|
|
5449
|
+
--bs-xl: none;
|
|
5345
5450
|
--scrollbar: var(--black);
|
|
5346
5451
|
--highlight-bg: hsl(0, 0%, 10%);
|
|
5347
5452
|
--highlight-color: hsl(0, 0%, 100%);
|
|
@@ -5462,6 +5567,7 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
|
|
|
5462
5567
|
--bs-sm: none;
|
|
5463
5568
|
--bs-md: none;
|
|
5464
5569
|
--bs-lg: none;
|
|
5570
|
+
--bs-xl: none;
|
|
5465
5571
|
--scrollbar: var(--black);
|
|
5466
5572
|
--highlight-bg: hsl(0, 0%, 10%);
|
|
5467
5573
|
--highlight-color: hsl(0, 0%, 100%);
|
|
@@ -12425,6 +12531,48 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
12425
12531
|
.ln100 {
|
|
12426
12532
|
left: -100% !important;
|
|
12427
12533
|
}
|
|
12534
|
+
.i0 {
|
|
12535
|
+
inset: 0 !important;
|
|
12536
|
+
}
|
|
12537
|
+
.i1 {
|
|
12538
|
+
inset: 1px !important;
|
|
12539
|
+
}
|
|
12540
|
+
.i2 {
|
|
12541
|
+
inset: 2px !important;
|
|
12542
|
+
}
|
|
12543
|
+
.i4 {
|
|
12544
|
+
inset: 4px !important;
|
|
12545
|
+
}
|
|
12546
|
+
.i6 {
|
|
12547
|
+
inset: 6px !important;
|
|
12548
|
+
}
|
|
12549
|
+
.i8 {
|
|
12550
|
+
inset: 8px !important;
|
|
12551
|
+
}
|
|
12552
|
+
.i12 {
|
|
12553
|
+
inset: 12px !important;
|
|
12554
|
+
}
|
|
12555
|
+
.i16 {
|
|
12556
|
+
inset: 16px !important;
|
|
12557
|
+
}
|
|
12558
|
+
.i24 {
|
|
12559
|
+
inset: 24px !important;
|
|
12560
|
+
}
|
|
12561
|
+
.i32 {
|
|
12562
|
+
inset: 32px !important;
|
|
12563
|
+
}
|
|
12564
|
+
.i48 {
|
|
12565
|
+
inset: 48px !important;
|
|
12566
|
+
}
|
|
12567
|
+
.i64 {
|
|
12568
|
+
inset: 64px !important;
|
|
12569
|
+
}
|
|
12570
|
+
.i96 {
|
|
12571
|
+
inset: 96px !important;
|
|
12572
|
+
}
|
|
12573
|
+
.i128 {
|
|
12574
|
+
inset: 128px !important;
|
|
12575
|
+
}
|
|
12428
12576
|
h1,
|
|
12429
12577
|
h2,
|
|
12430
12578
|
h3,
|
|
@@ -13375,6 +13523,9 @@ ol {
|
|
|
13375
13523
|
.h\:bs-lg:hover {
|
|
13376
13524
|
box-shadow: var(--bs-lg) !important;
|
|
13377
13525
|
}
|
|
13526
|
+
.bs-xl {
|
|
13527
|
+
box-shadow: var(--bs-xl) !important;
|
|
13528
|
+
}
|
|
13378
13529
|
.bs-ring {
|
|
13379
13530
|
box-shadow: 0 0 0 4px var(--focus-ring);
|
|
13380
13531
|
}
|
|
@@ -13487,6 +13638,9 @@ ol {
|
|
|
13487
13638
|
.w-auto {
|
|
13488
13639
|
width: auto !important;
|
|
13489
13640
|
}
|
|
13641
|
+
.w-screen {
|
|
13642
|
+
width: 100vw !important;
|
|
13643
|
+
}
|
|
13490
13644
|
.ws0,
|
|
13491
13645
|
.w0 {
|
|
13492
13646
|
width: 0 !important;
|
|
@@ -13617,6 +13771,9 @@ ol {
|
|
|
13617
13771
|
.wmx-initial {
|
|
13618
13772
|
max-width: initial !important;
|
|
13619
13773
|
}
|
|
13774
|
+
.wmx-screen {
|
|
13775
|
+
max-width: 100vw !important;
|
|
13776
|
+
}
|
|
13620
13777
|
.wmn0 {
|
|
13621
13778
|
min-width: 0 !important;
|
|
13622
13779
|
}
|
|
@@ -13680,6 +13837,9 @@ ol {
|
|
|
13680
13837
|
.h-auto {
|
|
13681
13838
|
height: auto !important;
|
|
13682
13839
|
}
|
|
13840
|
+
.h-screen {
|
|
13841
|
+
height: 100vh !important;
|
|
13842
|
+
}
|
|
13683
13843
|
.hs0,
|
|
13684
13844
|
.h0 {
|
|
13685
13845
|
height: 0 !important;
|
|
@@ -13801,6 +13961,9 @@ ol {
|
|
|
13801
13961
|
.hmx-initial {
|
|
13802
13962
|
max-height: initial !important;
|
|
13803
13963
|
}
|
|
13964
|
+
.hmx-screen {
|
|
13965
|
+
max-height: 100vh !important;
|
|
13966
|
+
}
|
|
13804
13967
|
.hmn0 {
|
|
13805
13968
|
min-height: 0 !important;
|
|
13806
13969
|
}
|
|
@@ -13846,6 +14009,9 @@ ol {
|
|
|
13846
14009
|
.hmn-initial {
|
|
13847
14010
|
min-height: initial !important;
|
|
13848
14011
|
}
|
|
14012
|
+
.hmx-screen {
|
|
14013
|
+
min-height: 100vh !important;
|
|
14014
|
+
}
|
|
13849
14015
|
/* stylelint-disable */
|
|
13850
14016
|
@media (max-width: 1264px) {
|
|
13851
14017
|
.lg\:ba {
|
|
@@ -14864,12 +15030,18 @@ ol {
|
|
|
14864
15030
|
.lg\:w-auto {
|
|
14865
15031
|
width: auto !important;
|
|
14866
15032
|
}
|
|
15033
|
+
.lg\:w-screen {
|
|
15034
|
+
width: 100vw !important;
|
|
15035
|
+
}
|
|
14867
15036
|
.lg\:wmx100 {
|
|
14868
15037
|
max-width: 100% !important;
|
|
14869
15038
|
}
|
|
14870
15039
|
.lg\:wmx-initial {
|
|
14871
15040
|
max-width: initial !important;
|
|
14872
15041
|
}
|
|
15042
|
+
.lg\:wmx-screen {
|
|
15043
|
+
max-width: 100vw !important;
|
|
15044
|
+
}
|
|
14873
15045
|
.lg\:wmn100 {
|
|
14874
15046
|
min-width: 100% !important;
|
|
14875
15047
|
}
|
|
@@ -14882,18 +15054,27 @@ ol {
|
|
|
14882
15054
|
.lg\:h-auto {
|
|
14883
15055
|
height: auto !important;
|
|
14884
15056
|
}
|
|
15057
|
+
.lg\:h-screen {
|
|
15058
|
+
height: 100vh !important;
|
|
15059
|
+
}
|
|
14885
15060
|
.lg\:hmx100 {
|
|
14886
15061
|
max-height: 100% !important;
|
|
14887
15062
|
}
|
|
14888
15063
|
.lg\:hmx-initial {
|
|
14889
15064
|
max-height: initial !important;
|
|
14890
15065
|
}
|
|
15066
|
+
.lg\:hmx-screen {
|
|
15067
|
+
max-height: 100vh !important;
|
|
15068
|
+
}
|
|
14891
15069
|
.lg\:hmn100 {
|
|
14892
15070
|
min-height: 100% !important;
|
|
14893
15071
|
}
|
|
14894
15072
|
.lg\:hmn-initial {
|
|
14895
15073
|
min-height: initial !important;
|
|
14896
15074
|
}
|
|
15075
|
+
.lg\:hmx-screen {
|
|
15076
|
+
min-height: 100vh !important;
|
|
15077
|
+
}
|
|
14897
15078
|
}
|
|
14898
15079
|
@media (max-width: 980px) {
|
|
14899
15080
|
.md\:ba {
|
|
@@ -15912,12 +16093,18 @@ ol {
|
|
|
15912
16093
|
.md\:w-auto {
|
|
15913
16094
|
width: auto !important;
|
|
15914
16095
|
}
|
|
16096
|
+
.md\:w-screen {
|
|
16097
|
+
width: 100vw !important;
|
|
16098
|
+
}
|
|
15915
16099
|
.md\:wmx100 {
|
|
15916
16100
|
max-width: 100% !important;
|
|
15917
16101
|
}
|
|
15918
16102
|
.md\:wmx-initial {
|
|
15919
16103
|
max-width: initial !important;
|
|
15920
16104
|
}
|
|
16105
|
+
.md\:wmx-screen {
|
|
16106
|
+
max-width: 100vw !important;
|
|
16107
|
+
}
|
|
15921
16108
|
.md\:wmn100 {
|
|
15922
16109
|
min-width: 100% !important;
|
|
15923
16110
|
}
|
|
@@ -15930,18 +16117,27 @@ ol {
|
|
|
15930
16117
|
.md\:h-auto {
|
|
15931
16118
|
height: auto !important;
|
|
15932
16119
|
}
|
|
16120
|
+
.md\:h-screen {
|
|
16121
|
+
height: 100vh !important;
|
|
16122
|
+
}
|
|
15933
16123
|
.md\:hmx100 {
|
|
15934
16124
|
max-height: 100% !important;
|
|
15935
16125
|
}
|
|
15936
16126
|
.md\:hmx-initial {
|
|
15937
16127
|
max-height: initial !important;
|
|
15938
16128
|
}
|
|
16129
|
+
.md\:hmx-screen {
|
|
16130
|
+
max-height: 100vh !important;
|
|
16131
|
+
}
|
|
15939
16132
|
.md\:hmn100 {
|
|
15940
16133
|
min-height: 100% !important;
|
|
15941
16134
|
}
|
|
15942
16135
|
.md\:hmn-initial {
|
|
15943
16136
|
min-height: initial !important;
|
|
15944
16137
|
}
|
|
16138
|
+
.md\:hmx-screen {
|
|
16139
|
+
min-height: 100vh !important;
|
|
16140
|
+
}
|
|
15945
16141
|
}
|
|
15946
16142
|
@media (max-width: 640px) {
|
|
15947
16143
|
.sm\:ba {
|
|
@@ -16960,12 +17156,18 @@ ol {
|
|
|
16960
17156
|
.sm\:w-auto {
|
|
16961
17157
|
width: auto !important;
|
|
16962
17158
|
}
|
|
17159
|
+
.sm\:w-screen {
|
|
17160
|
+
width: 100vw !important;
|
|
17161
|
+
}
|
|
16963
17162
|
.sm\:wmx100 {
|
|
16964
17163
|
max-width: 100% !important;
|
|
16965
17164
|
}
|
|
16966
17165
|
.sm\:wmx-initial {
|
|
16967
17166
|
max-width: initial !important;
|
|
16968
17167
|
}
|
|
17168
|
+
.sm\:wmx-screen {
|
|
17169
|
+
max-width: 100vw !important;
|
|
17170
|
+
}
|
|
16969
17171
|
.sm\:wmn100 {
|
|
16970
17172
|
min-width: 100% !important;
|
|
16971
17173
|
}
|
|
@@ -16978,18 +17180,27 @@ ol {
|
|
|
16978
17180
|
.sm\:h-auto {
|
|
16979
17181
|
height: auto !important;
|
|
16980
17182
|
}
|
|
17183
|
+
.sm\:h-screen {
|
|
17184
|
+
height: 100vh !important;
|
|
17185
|
+
}
|
|
16981
17186
|
.sm\:hmx100 {
|
|
16982
17187
|
max-height: 100% !important;
|
|
16983
17188
|
}
|
|
16984
17189
|
.sm\:hmx-initial {
|
|
16985
17190
|
max-height: initial !important;
|
|
16986
17191
|
}
|
|
17192
|
+
.sm\:hmx-screen {
|
|
17193
|
+
max-height: 100vh !important;
|
|
17194
|
+
}
|
|
16987
17195
|
.sm\:hmn100 {
|
|
16988
17196
|
min-height: 100% !important;
|
|
16989
17197
|
}
|
|
16990
17198
|
.sm\:hmn-initial {
|
|
16991
17199
|
min-height: initial !important;
|
|
16992
17200
|
}
|
|
17201
|
+
.sm\:hmx-screen {
|
|
17202
|
+
min-height: 100vh !important;
|
|
17203
|
+
}
|
|
16993
17204
|
}
|
|
16994
17205
|
@media print {
|
|
16995
17206
|
.print\:d-block {
|