@stackoverflow/stacks 0.73.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 +371 -92
- package/dist/css/stacks.min.css +1 -1
- package/dist/js/stacks.js +29 -10
- package/dist/js/stacks.min.js +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-typography.less +3 -0
- package/lib/css/atomic/_stacks-width-height.less +8 -2
- package/lib/css/components/_stacks-inputs.less +4 -0
- package/lib/css/components/_stacks-post-summary.less +185 -57
- package/lib/css/components/_stacks-tags.less +37 -1
- package/lib/css/components/_stacks-toggle-switches.less +8 -1
- package/lib/css/components/_stacks-user-cards.less +15 -39
- package/lib/css/exports/_stacks-constants-colors.less +15 -1
- package/package.json +11 -11
package/dist/css/stacks.css
CHANGED
|
@@ -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,43 +2294,52 @@ body.theme-dark .s-popover--arrow,
|
|
|
2216
2294
|
margin: 0 !important;
|
|
2217
2295
|
}
|
|
2218
2296
|
.s-post-summary--stats {
|
|
2219
|
-
|
|
2220
|
-
margin-right:
|
|
2221
|
-
margin-bottom:
|
|
2222
|
-
width:
|
|
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:
|
|
2306
|
+
font-size: 13px;
|
|
2229
2307
|
color: var(--fc-light);
|
|
2230
2308
|
}
|
|
2231
2309
|
.s-post-summary--stats .s-post-summary--stats-item {
|
|
2232
|
-
|
|
2233
|
-
|
|
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
|
}
|
|
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;
|
|
2322
|
+
}
|
|
2237
2323
|
.s-post-summary--stats .s-post-summary--stats-item.has-answers,
|
|
2238
2324
|
.s-post-summary--stats .s-post-summary--stats-item.has-bounty,
|
|
2239
|
-
.s-post-summary--stats .s-post-summary--stats-item.is-watched,
|
|
2240
|
-
.s-post-summary--stats .s-post-summary--stats-item.is-ignored,
|
|
2241
2325
|
.s-post-summary--stats .s-post-summary--stats-item.is-deleted,
|
|
2242
2326
|
.s-post-summary--stats .s-post-summary--stats-item.is-published,
|
|
2243
2327
|
.s-post-summary--stats .s-post-summary--stats-item.is-draft,
|
|
2244
2328
|
.s-post-summary--stats .s-post-summary--stats-item.is-review,
|
|
2245
|
-
.s-post-summary--stats .s-post-summary--stats-item.is-
|
|
2329
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-closed,
|
|
2330
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-archived,
|
|
2331
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-pinned {
|
|
2246
2332
|
border-radius: 3px;
|
|
2247
2333
|
padding: 2px 4px;
|
|
2248
2334
|
}
|
|
2249
2335
|
.s-post-summary--stats .s-post-summary--stats-item.has-answers {
|
|
2250
|
-
color: var(--green-
|
|
2251
|
-
border: 1px solid var(--green-
|
|
2336
|
+
color: var(--green-600);
|
|
2337
|
+
border: 1px solid var(--green-600);
|
|
2252
2338
|
}
|
|
2253
2339
|
.s-post-summary--stats .s-post-summary--stats-item.has-answers.has-accepted-answer {
|
|
2254
2340
|
color: hsl(0, 0%, 100%);
|
|
2255
2341
|
background-color: var(--green-500);
|
|
2342
|
+
border-color: var(--green-500);
|
|
2256
2343
|
}
|
|
2257
2344
|
body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-answers.has-accepted-answer {
|
|
2258
2345
|
color: var(--white);
|
|
@@ -2275,16 +2362,28 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2275
2362
|
background-color: var(--black-050);
|
|
2276
2363
|
}
|
|
2277
2364
|
.s-post-summary--stats .s-post-summary--stats-item.is-draft {
|
|
2278
|
-
color: var(--
|
|
2279
|
-
background-color: var(--blue-
|
|
2365
|
+
color: var(--blue-900);
|
|
2366
|
+
background-color: var(--blue-100);
|
|
2367
|
+
border-color: var(--blue-600);
|
|
2280
2368
|
}
|
|
2281
2369
|
.s-post-summary--stats .s-post-summary--stats-item.is-review {
|
|
2282
|
-
color: var(--
|
|
2283
|
-
background-color: var(--yellow-
|
|
2370
|
+
color: var(--yellow-900);
|
|
2371
|
+
background-color: var(--yellow-100);
|
|
2372
|
+
border-color: var(--yellow-600);
|
|
2284
2373
|
}
|
|
2285
|
-
.s-post-summary--stats .s-post-summary--stats-item.is-
|
|
2374
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-closed {
|
|
2375
|
+
color: var(--red-900);
|
|
2376
|
+
background-color: var(--red-100);
|
|
2377
|
+
border-color: var(--red-600);
|
|
2378
|
+
}
|
|
2379
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-archived {
|
|
2380
|
+
color: var(--black-900);
|
|
2381
|
+
background-color: var(--black-100);
|
|
2382
|
+
border-color: var(--black-600);
|
|
2383
|
+
}
|
|
2384
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-pinned {
|
|
2286
2385
|
color: var(--white);
|
|
2287
|
-
background-color: var(--
|
|
2386
|
+
background-color: var(--black-700);
|
|
2288
2387
|
}
|
|
2289
2388
|
@media (max-width: 980px) {
|
|
2290
2389
|
.s-post-summary--stats {
|
|
@@ -2298,28 +2397,50 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2298
2397
|
max-width: 100%;
|
|
2299
2398
|
}
|
|
2300
2399
|
.s-post-summary--content .s-post-summary--content-title {
|
|
2301
|
-
display:
|
|
2400
|
+
display: block;
|
|
2302
2401
|
font-size: 1.30769231rem;
|
|
2303
|
-
margin-
|
|
2304
|
-
|
|
2305
|
-
word-wrap: break-word;
|
|
2402
|
+
margin-top: -0.15rem;
|
|
2403
|
+
margin-bottom: 0.3846rem;
|
|
2306
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;
|
|
2307
2414
|
}
|
|
2308
2415
|
.s-post-summary--content .s-post-summary--content-title .iconShield {
|
|
2309
|
-
color: var(--
|
|
2310
|
-
|
|
2416
|
+
color: var(--fc-light);
|
|
2417
|
+
}
|
|
2418
|
+
.s-post-summary--content .s-post-summary--content-title .svg-icon {
|
|
2419
|
+
vertical-align: text-bottom;
|
|
2311
2420
|
position: relative;
|
|
2312
|
-
|
|
2421
|
+
top: -1px;
|
|
2313
2422
|
}
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
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);
|
|
2319
2440
|
}
|
|
2320
2441
|
.s-post-summary--content .s-post-summary--content-type {
|
|
2321
2442
|
color: var(--fc-medium);
|
|
2322
|
-
margin-bottom:
|
|
2443
|
+
margin-bottom: 4px;
|
|
2323
2444
|
}
|
|
2324
2445
|
.s-post-summary--content .s-post-summary--content-type .svg-icon {
|
|
2325
2446
|
margin-left: -2px;
|
|
@@ -2328,32 +2449,55 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2328
2449
|
.s-post-summary--content .s-post-summary--content-excerpt {
|
|
2329
2450
|
margin-top: -2px;
|
|
2330
2451
|
margin-bottom: 8px;
|
|
2452
|
+
font-family: var(--theme-post-body-font-family);
|
|
2453
|
+
color: var(--fc-medium);
|
|
2331
2454
|
display: -webkit-box;
|
|
2332
2455
|
-webkit-line-clamp: 2;
|
|
2333
2456
|
-webkit-box-orient: vertical;
|
|
2334
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;
|
|
2335
2483
|
}
|
|
2336
2484
|
.s-post-summary--meta {
|
|
2337
|
-
--s-post-summary-tags-gap: 4px;
|
|
2338
2485
|
display: flex;
|
|
2339
2486
|
align-items: center;
|
|
2340
2487
|
justify-content: space-between;
|
|
2341
2488
|
flex-wrap: wrap;
|
|
2342
|
-
|
|
2489
|
+
column-gap: 6px;
|
|
2490
|
+
row-gap: 8px;
|
|
2343
2491
|
}
|
|
2344
2492
|
.s-post-summary--meta .s-post-summary--meta-tags {
|
|
2345
2493
|
display: flex;
|
|
2346
2494
|
flex-wrap: wrap;
|
|
2347
|
-
|
|
2348
|
-
}
|
|
2349
|
-
.s-post-summary--meta .s-post-summary--meta-tags > * {
|
|
2350
|
-
margin-right: var(--s-post-summary-tags-gap);
|
|
2351
|
-
margin-bottom: var(--s-post-summary-tags-gap);
|
|
2495
|
+
gap: 4px;
|
|
2352
2496
|
}
|
|
2353
2497
|
.s-post-summary--meta .s-user-card {
|
|
2354
2498
|
flex-wrap: wrap;
|
|
2355
|
-
margin-bottom: var(--s-post-summary-tags-gap);
|
|
2356
2499
|
margin-left: auto;
|
|
2500
|
+
justify-content: flex-end;
|
|
2357
2501
|
}
|
|
2358
2502
|
.s-post-summary--answer {
|
|
2359
2503
|
position: relative;
|
|
@@ -2391,13 +2535,11 @@ body.theme-highcontrast .s-post-summary--answer:before {
|
|
|
2391
2535
|
-webkit-box-orient: vertical;
|
|
2392
2536
|
overflow: hidden;
|
|
2393
2537
|
}
|
|
2394
|
-
.s-post-summary__watched
|
|
2395
|
-
color: var(--
|
|
2396
|
-
background-color: var(--yellow-600);
|
|
2538
|
+
.s-post-summary__watched {
|
|
2539
|
+
background-color: var(--yellow-050);
|
|
2397
2540
|
}
|
|
2398
|
-
.s-post-
|
|
2399
|
-
color: var(--
|
|
2400
|
-
background-color: var(--black-600);
|
|
2541
|
+
.s-post-summary__deleted {
|
|
2542
|
+
background-color: var(--red-050);
|
|
2401
2543
|
}
|
|
2402
2544
|
.s-post-summary__deleted .is-deleted {
|
|
2403
2545
|
color: hsl(0, 0%, 100%);
|
|
@@ -2405,23 +2547,25 @@ body.theme-highcontrast .s-post-summary--answer:before {
|
|
|
2405
2547
|
}
|
|
2406
2548
|
.s-post-summary__ignored .s-post-summary--content,
|
|
2407
2549
|
.s-post-summary__deleted .s-post-summary--content {
|
|
2408
|
-
opacity: 0.
|
|
2550
|
+
opacity: 0.6;
|
|
2409
2551
|
}
|
|
2410
|
-
.s-post-summary__ignored .s-post-summary--stats-item:not(.is-
|
|
2411
|
-
.s-post-summary__deleted .s-post-summary--stats-item:not(.is-
|
|
2412
|
-
opacity: 0.
|
|
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;
|
|
2413
2555
|
filter: grayscale(100%);
|
|
2414
2556
|
}
|
|
2415
|
-
.s-post-summary__ignored .s-post-summary--content-title,
|
|
2416
|
-
.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 {
|
|
2417
2559
|
color: var(--black-600);
|
|
2418
2560
|
}
|
|
2419
|
-
.s-post-summary__ignored .s-post-summary--content-title:hover,
|
|
2420
|
-
.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 {
|
|
2421
2565
|
color: var(--black-500);
|
|
2422
2566
|
}
|
|
2423
|
-
.s-post-summary__ignored .s-post-summary--content-title:visited,
|
|
2424
|
-
.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 {
|
|
2425
2569
|
color: var(--black-700);
|
|
2426
2570
|
}
|
|
2427
2571
|
.s-post-summary__ignored .s-post-summary--content-excerpt,
|
|
@@ -3550,6 +3694,12 @@ body.theme-highcontrast .s-toggle-switch.s-toggle-switch__multiple input[type="r
|
|
|
3550
3694
|
body.theme-highcontrast .s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked + label:not(.s-toggle-switch--label-off) {
|
|
3551
3695
|
color: var(--white);
|
|
3552
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
|
+
}
|
|
3553
3703
|
.s-topbar {
|
|
3554
3704
|
min-width: auto;
|
|
3555
3705
|
box-shadow: var(--bs-sm);
|
|
@@ -4080,13 +4230,14 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
|
|
|
4080
4230
|
.s-user-card {
|
|
4081
4231
|
display: grid;
|
|
4082
4232
|
grid-template-columns: auto 1fr;
|
|
4083
|
-
|
|
4233
|
+
column-gap: 8px;
|
|
4234
|
+
row-gap: 4px;
|
|
4084
4235
|
align-items: center;
|
|
4085
4236
|
line-height: 1;
|
|
4086
4237
|
padding: 8px;
|
|
4087
4238
|
}
|
|
4088
4239
|
.s-user-card.s-user-card__highlighted {
|
|
4089
|
-
background-color: var(--theme-secondary-
|
|
4240
|
+
background-color: var(--theme-secondary-050);
|
|
4090
4241
|
border-radius: 5px;
|
|
4091
4242
|
}
|
|
4092
4243
|
.s-user-card.s-user-card__highlighted .s-user-card--type {
|
|
@@ -4095,9 +4246,6 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
|
|
|
4095
4246
|
.s-user-card.s-user-card__full {
|
|
4096
4247
|
align-items: start;
|
|
4097
4248
|
}
|
|
4098
|
-
.s-user-card.s-user-card__full .s-user-card--info {
|
|
4099
|
-
grid-gap: 4px;
|
|
4100
|
-
}
|
|
4101
4249
|
.s-user-card.s-user-card__full .s-user-card--link {
|
|
4102
4250
|
font-size: 1.15384615rem;
|
|
4103
4251
|
}
|
|
@@ -4107,67 +4255,50 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
|
|
|
4107
4255
|
.s-user-card.s-user-card__small {
|
|
4108
4256
|
display: flex;
|
|
4109
4257
|
align-items: center;
|
|
4110
|
-
|
|
4258
|
+
gap: 4px;
|
|
4111
4259
|
padding: 0;
|
|
4112
4260
|
}
|
|
4113
|
-
.s-user-card.s-user-card__small .s-user-card--time {
|
|
4114
|
-
margin-right: 6px;
|
|
4115
|
-
margin-bottom: 0;
|
|
4116
|
-
}
|
|
4117
|
-
.s-user-card.s-user-card__small .s-user-card--link {
|
|
4118
|
-
margin-right: 6px;
|
|
4119
|
-
}
|
|
4120
|
-
.s-user-card.s-user-card__small .s-user-card--avatar {
|
|
4121
|
-
margin-right: 6px;
|
|
4122
|
-
}
|
|
4123
4261
|
.s-user-card.s-user-card__small .s-user-card--info {
|
|
4124
|
-
|
|
4262
|
+
flex-direction: row;
|
|
4125
4263
|
align-items: center;
|
|
4126
|
-
grid-column-gap: unset;
|
|
4127
4264
|
}
|
|
4128
4265
|
.s-user-card.s-user-card__minimal {
|
|
4129
4266
|
display: flex;
|
|
4130
4267
|
align-items: center;
|
|
4131
|
-
|
|
4268
|
+
gap: 4px;
|
|
4132
4269
|
padding: 0;
|
|
4133
4270
|
}
|
|
4134
4271
|
.s-user-card.s-user-card__minimal .s-user-card--time {
|
|
4135
|
-
margin-right: 4px;
|
|
4136
|
-
margin-bottom: 0;
|
|
4137
4272
|
white-space: nowrap;
|
|
4138
4273
|
}
|
|
4139
4274
|
.s-user-card.s-user-card__minimal .s-user-card--link {
|
|
4140
|
-
margin-right: 4px;
|
|
4141
4275
|
white-space: nowrap;
|
|
4142
4276
|
}
|
|
4143
|
-
.s-user-card.s-user-card__minimal .s-user-card--avatar {
|
|
4144
|
-
margin-right: 4px;
|
|
4145
|
-
}
|
|
4146
4277
|
.s-user-card.s-user-card__minimal .s-user-card--rep {
|
|
4147
|
-
padding: 0;
|
|
4148
4278
|
color: var(--black-600);
|
|
4149
4279
|
}
|
|
4150
4280
|
.s-user-card.s-user-card__minimal .s-user-card--info {
|
|
4151
|
-
|
|
4281
|
+
flex-direction: row;
|
|
4152
4282
|
align-items: center;
|
|
4153
|
-
grid-column-gap: unset;
|
|
4154
4283
|
}
|
|
4155
4284
|
.s-user-card .s-user-card--type {
|
|
4156
4285
|
grid-column: 1 / 3;
|
|
4157
|
-
padding-top: 4px;
|
|
4158
4286
|
font-size: 12px;
|
|
4159
4287
|
color: var(--theme-primary-400);
|
|
4160
4288
|
}
|
|
4289
|
+
.s-user-card .s-user-card--type a {
|
|
4290
|
+
color: inherit;
|
|
4291
|
+
}
|
|
4161
4292
|
.s-user-card--time {
|
|
4162
4293
|
grid-column: 1 / 3;
|
|
4163
4294
|
grid-row: 1 / 2;
|
|
4164
4295
|
color: var(--black-500);
|
|
4165
4296
|
font-size: 12px;
|
|
4166
|
-
margin-bottom: 4px;
|
|
4167
4297
|
}
|
|
4168
4298
|
.s-user-card--info {
|
|
4169
|
-
display:
|
|
4170
|
-
|
|
4299
|
+
display: flex;
|
|
4300
|
+
flex-direction: column;
|
|
4301
|
+
gap: 4px;
|
|
4171
4302
|
}
|
|
4172
4303
|
.s-user-card--link {
|
|
4173
4304
|
min-width: 0;
|
|
@@ -4182,9 +4313,9 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
|
|
|
4182
4313
|
padding: 0;
|
|
4183
4314
|
display: flex;
|
|
4184
4315
|
align-items: center;
|
|
4316
|
+
gap: 6px;
|
|
4185
4317
|
}
|
|
4186
4318
|
.s-user-card--awards li {
|
|
4187
|
-
margin-right: 6px;
|
|
4188
4319
|
font-size: 12px;
|
|
4189
4320
|
}
|
|
4190
4321
|
.s-user-card--rep {
|
|
@@ -4196,7 +4327,6 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
|
|
|
4196
4327
|
color: var(--black-500);
|
|
4197
4328
|
}
|
|
4198
4329
|
.s-user-card--tags {
|
|
4199
|
-
padding-top: 1px;
|
|
4200
4330
|
min-width: 0;
|
|
4201
4331
|
align-items: center;
|
|
4202
4332
|
flex-wrap: wrap;
|
|
@@ -4516,6 +4646,11 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
4516
4646
|
--theme-topbar-item-color-current: var(--black);
|
|
4517
4647
|
--theme-topbar-item-border-current: var(--theme-primary-color);
|
|
4518
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);
|
|
4519
4654
|
}
|
|
4520
4655
|
.highcontrast-themed-colors,
|
|
4521
4656
|
body.theme-highcontrast:not(.theme-dark),
|
|
@@ -4680,6 +4815,7 @@ body.theme-system .theme-light__forced {
|
|
|
4680
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);
|
|
4681
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);
|
|
4682
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);
|
|
4683
4819
|
--scrollbar: hsla(0, 0%, 0%, 0.2);
|
|
4684
4820
|
--highlight-bg: hsl(0, 0%, 96.5%);
|
|
4685
4821
|
--highlight-color: var(--black-750);
|
|
@@ -4850,6 +4986,7 @@ body:not(.theme-dark) .theme-dark__forced {
|
|
|
4850
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);
|
|
4851
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);
|
|
4852
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);
|
|
4853
4990
|
--scrollbar: hsla(0, 0%, 100%, 0.2);
|
|
4854
4991
|
--highlight-bg: hsl(0, 2%, 11%);
|
|
4855
4992
|
--highlight-color: var(--black);
|
|
@@ -5018,6 +5155,7 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
5018
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);
|
|
5019
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);
|
|
5020
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);
|
|
5021
5159
|
--scrollbar: hsla(0, 0%, 100%, 0.2);
|
|
5022
5160
|
--highlight-bg: hsl(0, 2%, 11%);
|
|
5023
5161
|
--highlight-color: var(--black);
|
|
@@ -5187,6 +5325,7 @@ body.theme-system.theme-highcontrast .theme-light__forced {
|
|
|
5187
5325
|
--bs-sm: none;
|
|
5188
5326
|
--bs-md: none;
|
|
5189
5327
|
--bs-lg: none;
|
|
5328
|
+
--bs-xl: none;
|
|
5190
5329
|
--scrollbar: var(--black);
|
|
5191
5330
|
--highlight-bg: hsl(0, 0%, 96.5%);
|
|
5192
5331
|
--highlight-color: var(--black-750);
|
|
@@ -5307,6 +5446,7 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
|
|
|
5307
5446
|
--bs-sm: none;
|
|
5308
5447
|
--bs-md: none;
|
|
5309
5448
|
--bs-lg: none;
|
|
5449
|
+
--bs-xl: none;
|
|
5310
5450
|
--scrollbar: var(--black);
|
|
5311
5451
|
--highlight-bg: hsl(0, 0%, 10%);
|
|
5312
5452
|
--highlight-color: hsl(0, 0%, 100%);
|
|
@@ -5427,6 +5567,7 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
|
|
|
5427
5567
|
--bs-sm: none;
|
|
5428
5568
|
--bs-md: none;
|
|
5429
5569
|
--bs-lg: none;
|
|
5570
|
+
--bs-xl: none;
|
|
5430
5571
|
--scrollbar: var(--black);
|
|
5431
5572
|
--highlight-bg: hsl(0, 0%, 10%);
|
|
5432
5573
|
--highlight-color: hsl(0, 0%, 100%);
|
|
@@ -12390,6 +12531,48 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
12390
12531
|
.ln100 {
|
|
12391
12532
|
left: -100% !important;
|
|
12392
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
|
+
}
|
|
12393
12576
|
h1,
|
|
12394
12577
|
h2,
|
|
12395
12578
|
h3,
|
|
@@ -12712,6 +12895,12 @@ ul ol,
|
|
|
12712
12895
|
ol ol {
|
|
12713
12896
|
margin-bottom: 0;
|
|
12714
12897
|
}
|
|
12898
|
+
ul {
|
|
12899
|
+
list-style-type: disc;
|
|
12900
|
+
}
|
|
12901
|
+
ol {
|
|
12902
|
+
list-style-type: decimal;
|
|
12903
|
+
}
|
|
12715
12904
|
.list-reset {
|
|
12716
12905
|
list-style: none;
|
|
12717
12906
|
margin: 0;
|
|
@@ -13334,6 +13523,9 @@ ol ol {
|
|
|
13334
13523
|
.h\:bs-lg:hover {
|
|
13335
13524
|
box-shadow: var(--bs-lg) !important;
|
|
13336
13525
|
}
|
|
13526
|
+
.bs-xl {
|
|
13527
|
+
box-shadow: var(--bs-xl) !important;
|
|
13528
|
+
}
|
|
13337
13529
|
.bs-ring {
|
|
13338
13530
|
box-shadow: 0 0 0 4px var(--focus-ring);
|
|
13339
13531
|
}
|
|
@@ -13446,6 +13638,9 @@ ol ol {
|
|
|
13446
13638
|
.w-auto {
|
|
13447
13639
|
width: auto !important;
|
|
13448
13640
|
}
|
|
13641
|
+
.w-screen {
|
|
13642
|
+
width: 100vw !important;
|
|
13643
|
+
}
|
|
13449
13644
|
.ws0,
|
|
13450
13645
|
.w0 {
|
|
13451
13646
|
width: 0 !important;
|
|
@@ -13576,6 +13771,9 @@ ol ol {
|
|
|
13576
13771
|
.wmx-initial {
|
|
13577
13772
|
max-width: initial !important;
|
|
13578
13773
|
}
|
|
13774
|
+
.wmx-screen {
|
|
13775
|
+
max-width: 100vw !important;
|
|
13776
|
+
}
|
|
13579
13777
|
.wmn0 {
|
|
13580
13778
|
min-width: 0 !important;
|
|
13581
13779
|
}
|
|
@@ -13639,6 +13837,9 @@ ol ol {
|
|
|
13639
13837
|
.h-auto {
|
|
13640
13838
|
height: auto !important;
|
|
13641
13839
|
}
|
|
13840
|
+
.h-screen {
|
|
13841
|
+
height: 100vh !important;
|
|
13842
|
+
}
|
|
13642
13843
|
.hs0,
|
|
13643
13844
|
.h0 {
|
|
13644
13845
|
height: 0 !important;
|
|
@@ -13760,6 +13961,9 @@ ol ol {
|
|
|
13760
13961
|
.hmx-initial {
|
|
13761
13962
|
max-height: initial !important;
|
|
13762
13963
|
}
|
|
13964
|
+
.hmx-screen {
|
|
13965
|
+
max-height: 100vh !important;
|
|
13966
|
+
}
|
|
13763
13967
|
.hmn0 {
|
|
13764
13968
|
min-height: 0 !important;
|
|
13765
13969
|
}
|
|
@@ -13805,6 +14009,9 @@ ol ol {
|
|
|
13805
14009
|
.hmn-initial {
|
|
13806
14010
|
min-height: initial !important;
|
|
13807
14011
|
}
|
|
14012
|
+
.hmx-screen {
|
|
14013
|
+
min-height: 100vh !important;
|
|
14014
|
+
}
|
|
13808
14015
|
/* stylelint-disable */
|
|
13809
14016
|
@media (max-width: 1264px) {
|
|
13810
14017
|
.lg\:ba {
|
|
@@ -14823,12 +15030,18 @@ ol ol {
|
|
|
14823
15030
|
.lg\:w-auto {
|
|
14824
15031
|
width: auto !important;
|
|
14825
15032
|
}
|
|
15033
|
+
.lg\:w-screen {
|
|
15034
|
+
width: 100vw !important;
|
|
15035
|
+
}
|
|
14826
15036
|
.lg\:wmx100 {
|
|
14827
15037
|
max-width: 100% !important;
|
|
14828
15038
|
}
|
|
14829
15039
|
.lg\:wmx-initial {
|
|
14830
15040
|
max-width: initial !important;
|
|
14831
15041
|
}
|
|
15042
|
+
.lg\:wmx-screen {
|
|
15043
|
+
max-width: 100vw !important;
|
|
15044
|
+
}
|
|
14832
15045
|
.lg\:wmn100 {
|
|
14833
15046
|
min-width: 100% !important;
|
|
14834
15047
|
}
|
|
@@ -14841,18 +15054,27 @@ ol ol {
|
|
|
14841
15054
|
.lg\:h-auto {
|
|
14842
15055
|
height: auto !important;
|
|
14843
15056
|
}
|
|
15057
|
+
.lg\:h-screen {
|
|
15058
|
+
height: 100vh !important;
|
|
15059
|
+
}
|
|
14844
15060
|
.lg\:hmx100 {
|
|
14845
15061
|
max-height: 100% !important;
|
|
14846
15062
|
}
|
|
14847
15063
|
.lg\:hmx-initial {
|
|
14848
15064
|
max-height: initial !important;
|
|
14849
15065
|
}
|
|
15066
|
+
.lg\:hmx-screen {
|
|
15067
|
+
max-height: 100vh !important;
|
|
15068
|
+
}
|
|
14850
15069
|
.lg\:hmn100 {
|
|
14851
15070
|
min-height: 100% !important;
|
|
14852
15071
|
}
|
|
14853
15072
|
.lg\:hmn-initial {
|
|
14854
15073
|
min-height: initial !important;
|
|
14855
15074
|
}
|
|
15075
|
+
.lg\:hmx-screen {
|
|
15076
|
+
min-height: 100vh !important;
|
|
15077
|
+
}
|
|
14856
15078
|
}
|
|
14857
15079
|
@media (max-width: 980px) {
|
|
14858
15080
|
.md\:ba {
|
|
@@ -15871,12 +16093,18 @@ ol ol {
|
|
|
15871
16093
|
.md\:w-auto {
|
|
15872
16094
|
width: auto !important;
|
|
15873
16095
|
}
|
|
16096
|
+
.md\:w-screen {
|
|
16097
|
+
width: 100vw !important;
|
|
16098
|
+
}
|
|
15874
16099
|
.md\:wmx100 {
|
|
15875
16100
|
max-width: 100% !important;
|
|
15876
16101
|
}
|
|
15877
16102
|
.md\:wmx-initial {
|
|
15878
16103
|
max-width: initial !important;
|
|
15879
16104
|
}
|
|
16105
|
+
.md\:wmx-screen {
|
|
16106
|
+
max-width: 100vw !important;
|
|
16107
|
+
}
|
|
15880
16108
|
.md\:wmn100 {
|
|
15881
16109
|
min-width: 100% !important;
|
|
15882
16110
|
}
|
|
@@ -15889,18 +16117,27 @@ ol ol {
|
|
|
15889
16117
|
.md\:h-auto {
|
|
15890
16118
|
height: auto !important;
|
|
15891
16119
|
}
|
|
16120
|
+
.md\:h-screen {
|
|
16121
|
+
height: 100vh !important;
|
|
16122
|
+
}
|
|
15892
16123
|
.md\:hmx100 {
|
|
15893
16124
|
max-height: 100% !important;
|
|
15894
16125
|
}
|
|
15895
16126
|
.md\:hmx-initial {
|
|
15896
16127
|
max-height: initial !important;
|
|
15897
16128
|
}
|
|
16129
|
+
.md\:hmx-screen {
|
|
16130
|
+
max-height: 100vh !important;
|
|
16131
|
+
}
|
|
15898
16132
|
.md\:hmn100 {
|
|
15899
16133
|
min-height: 100% !important;
|
|
15900
16134
|
}
|
|
15901
16135
|
.md\:hmn-initial {
|
|
15902
16136
|
min-height: initial !important;
|
|
15903
16137
|
}
|
|
16138
|
+
.md\:hmx-screen {
|
|
16139
|
+
min-height: 100vh !important;
|
|
16140
|
+
}
|
|
15904
16141
|
}
|
|
15905
16142
|
@media (max-width: 640px) {
|
|
15906
16143
|
.sm\:ba {
|
|
@@ -16919,12 +17156,18 @@ ol ol {
|
|
|
16919
17156
|
.sm\:w-auto {
|
|
16920
17157
|
width: auto !important;
|
|
16921
17158
|
}
|
|
17159
|
+
.sm\:w-screen {
|
|
17160
|
+
width: 100vw !important;
|
|
17161
|
+
}
|
|
16922
17162
|
.sm\:wmx100 {
|
|
16923
17163
|
max-width: 100% !important;
|
|
16924
17164
|
}
|
|
16925
17165
|
.sm\:wmx-initial {
|
|
16926
17166
|
max-width: initial !important;
|
|
16927
17167
|
}
|
|
17168
|
+
.sm\:wmx-screen {
|
|
17169
|
+
max-width: 100vw !important;
|
|
17170
|
+
}
|
|
16928
17171
|
.sm\:wmn100 {
|
|
16929
17172
|
min-width: 100% !important;
|
|
16930
17173
|
}
|
|
@@ -16937,18 +17180,27 @@ ol ol {
|
|
|
16937
17180
|
.sm\:h-auto {
|
|
16938
17181
|
height: auto !important;
|
|
16939
17182
|
}
|
|
17183
|
+
.sm\:h-screen {
|
|
17184
|
+
height: 100vh !important;
|
|
17185
|
+
}
|
|
16940
17186
|
.sm\:hmx100 {
|
|
16941
17187
|
max-height: 100% !important;
|
|
16942
17188
|
}
|
|
16943
17189
|
.sm\:hmx-initial {
|
|
16944
17190
|
max-height: initial !important;
|
|
16945
17191
|
}
|
|
17192
|
+
.sm\:hmx-screen {
|
|
17193
|
+
max-height: 100vh !important;
|
|
17194
|
+
}
|
|
16946
17195
|
.sm\:hmn100 {
|
|
16947
17196
|
min-height: 100% !important;
|
|
16948
17197
|
}
|
|
16949
17198
|
.sm\:hmn-initial {
|
|
16950
17199
|
min-height: initial !important;
|
|
16951
17200
|
}
|
|
17201
|
+
.sm\:hmx-screen {
|
|
17202
|
+
min-height: 100vh !important;
|
|
17203
|
+
}
|
|
16952
17204
|
}
|
|
16953
17205
|
@media print {
|
|
16954
17206
|
.print\:d-block {
|
|
@@ -18309,7 +18561,7 @@ body.theme-highcontrast .s-notice__danger {
|
|
|
18309
18561
|
}
|
|
18310
18562
|
.s-tag {
|
|
18311
18563
|
display: inline-flex;
|
|
18312
|
-
align-
|
|
18564
|
+
align-items: center;
|
|
18313
18565
|
justify-content: center;
|
|
18314
18566
|
min-width: 0;
|
|
18315
18567
|
padding-left: 4px;
|
|
@@ -18530,6 +18782,33 @@ body.theme-highcontrast a.s-tag__muted:not(.is-selected):focus,
|
|
|
18530
18782
|
body.theme-highcontrast a.s-tag__muted:not(.is-selected):active {
|
|
18531
18783
|
border-color: currentColor;
|
|
18532
18784
|
}
|
|
18785
|
+
.s-tag__watched,
|
|
18786
|
+
.s-tag__ignored {
|
|
18787
|
+
position: relative;
|
|
18788
|
+
padding-left: 22px;
|
|
18789
|
+
}
|
|
18790
|
+
.s-tag__watched:before,
|
|
18791
|
+
.s-tag__ignored:before {
|
|
18792
|
+
content: "";
|
|
18793
|
+
display: block;
|
|
18794
|
+
width: 14px;
|
|
18795
|
+
height: 14px;
|
|
18796
|
+
margin-right: 2px;
|
|
18797
|
+
background-color: currentColor;
|
|
18798
|
+
position: absolute;
|
|
18799
|
+
left: 4px;
|
|
18800
|
+
top: calc(50% - 7px);
|
|
18801
|
+
-webkit-mask: var(--s-tag-icon) no-repeat center;
|
|
18802
|
+
mask: var(--s-tag-icon) no-repeat center;
|
|
18803
|
+
-webkit-mask-size: contain;
|
|
18804
|
+
mask-size: contain;
|
|
18805
|
+
}
|
|
18806
|
+
.s-tag__watched {
|
|
18807
|
+
--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");
|
|
18808
|
+
}
|
|
18809
|
+
.s-tag__ignored {
|
|
18810
|
+
--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");
|
|
18811
|
+
}
|
|
18533
18812
|
.s-pagination {
|
|
18534
18813
|
display: flex;
|
|
18535
18814
|
flex-wrap: wrap;
|