turbo-themes 0.23.9 → 0.23.10
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/assets/css/site.css +75 -0
- data/lib/turbo-themes/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b01ff2adb0f3ca4b9cf90772fb0aab0c11326320a8d2edbf56a9cdb4152bcbab
|
|
4
|
+
data.tar.gz: 128018b61741f47eb7e5b0fd9a994ec52dd184ffc16ff1201ca471657bd6bc16
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f668c379760d0b6e1214400b1d5a4db638970772336197dd2499ece6031bc2787e962e208bb55fe175c60a82871af0c15b646a211e6663db51dd1e84ee0afe68
|
|
7
|
+
data.tar.gz: 76c5dab0d23dd513e4f02f93a94a6934da2fe9116cd8bf60dde656ea3da5eecd9119735077dc71835a21152af2321b43b3f3650bd86e0f356663f654fce952fd
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@ The format is based on Keep a Changelog and this project adheres to SemVer.
|
|
|
10
10
|
|
|
11
11
|
- TBD
|
|
12
12
|
|
|
13
|
+
## [0.23.10] - 2026-07-18
|
|
14
|
+
|
|
15
|
+
### 🐛 Fixed
|
|
16
|
+
|
|
17
|
+
- wire DocsLayout headings/showToc and render on-page TOC (#555)
|
|
18
|
+
|
|
13
19
|
## [0.23.9] - 2026-07-18
|
|
14
20
|
|
|
15
21
|
### 🐛 Fixed
|
data/assets/css/site.css
CHANGED
|
@@ -2385,6 +2385,81 @@ html:root .footer-links a:hover {
|
|
|
2385
2385
|
}
|
|
2386
2386
|
}
|
|
2387
2387
|
|
|
2388
|
+
/* ==========================================================================
|
|
2389
|
+
Docs TOC (On this page)
|
|
2390
|
+
========================================================================== */
|
|
2391
|
+
|
|
2392
|
+
.docs-main-inner {
|
|
2393
|
+
display: flex;
|
|
2394
|
+
gap: var(--space-2xl);
|
|
2395
|
+
align-items: flex-start;
|
|
2396
|
+
max-width: 1100px;
|
|
2397
|
+
margin: 0 auto;
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
.docs-main-inner .docs-content {
|
|
2401
|
+
flex: 1;
|
|
2402
|
+
min-width: 0;
|
|
2403
|
+
max-width: 800px;
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
.docs-toc {
|
|
2407
|
+
flex-shrink: 0;
|
|
2408
|
+
width: 220px;
|
|
2409
|
+
position: sticky;
|
|
2410
|
+
top: calc(64px + var(--space-xl));
|
|
2411
|
+
max-height: calc(100vh - 64px - var(--space-xl) * 2);
|
|
2412
|
+
overflow-y: auto;
|
|
2413
|
+
padding-left: var(--space-md);
|
|
2414
|
+
border-left: 2px solid var(--turbo-border-default);
|
|
2415
|
+
display: none;
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
.docs-toc-title {
|
|
2419
|
+
font-size: 0.75rem;
|
|
2420
|
+
font-weight: 700;
|
|
2421
|
+
text-transform: uppercase;
|
|
2422
|
+
letter-spacing: 0.08em;
|
|
2423
|
+
color: var(--turbo-text-tertiary);
|
|
2424
|
+
margin: 0 0 var(--space-sm);
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
.docs-toc-list {
|
|
2428
|
+
list-style: none;
|
|
2429
|
+
margin: 0;
|
|
2430
|
+
padding: 0;
|
|
2431
|
+
display: flex;
|
|
2432
|
+
flex-direction: column;
|
|
2433
|
+
gap: 2px;
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
.docs-toc-item {
|
|
2437
|
+
line-height: 1.4;
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
.docs-toc-depth-3 {
|
|
2441
|
+
padding-left: var(--space-md);
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
.docs-toc-link {
|
|
2445
|
+
display: block;
|
|
2446
|
+
font-size: 0.8125rem;
|
|
2447
|
+
color: var(--turbo-text-secondary);
|
|
2448
|
+
text-decoration: none;
|
|
2449
|
+
padding: 3px 0;
|
|
2450
|
+
transition: color var(--transition-fast);
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
.docs-toc-link:hover {
|
|
2454
|
+
color: var(--turbo-brand-primary);
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
@media (min-width: 1280px) {
|
|
2458
|
+
.docs-toc {
|
|
2459
|
+
display: block;
|
|
2460
|
+
}
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2388
2463
|
/* ==========================================================================
|
|
2389
2464
|
Breadcrumbs
|
|
2390
2465
|
========================================================================== */
|
data/lib/turbo-themes/version.rb
CHANGED