turbo-themes 0.40.3 → 0.40.5
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 +12 -0
- data/assets/css/home.css +16 -2
- data/assets/js/homepage-showcase.js +2 -2
- data/assets/js/homepage-showcase.js.map +1 -1
- data/assets/js/homepage-showcase.min.js +1 -1
- data/assets/js/theme-selector.min.js +1 -1
- 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: 46b9bdae0cf999daf7188441dd83b0b0b6f344942047708f910467d1a0562455
|
|
4
|
+
data.tar.gz: 434152d251bac20a64d9c30038fffd3fd08cd181351c80100de16a890640dfb1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81ed065064904809e8ec31d664bc94c59e841e9a0a0570fcadbcf42de32b91e48864347c5f5f4b5bd583a57cebc83818555990e24290caad9bb54c89ab249f54
|
|
7
|
+
data.tar.gz: e2d454fb94eaad1c7c7727c075cb3c389511dfa5c78c316d533c8e5249ac39ce7ead6a3c08de4ba836d991ac7f6faf1d3a395e8880a2a977a80344bff86a19d5
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@ The format is based on Keep a Changelog and this project adheres to SemVer.
|
|
|
10
10
|
|
|
11
11
|
- TBD
|
|
12
12
|
|
|
13
|
+
## [0.40.5] - 2026-07-25
|
|
14
|
+
|
|
15
|
+
### 🐛 Fixed
|
|
16
|
+
|
|
17
|
+
- Pin showcase spotlight geometry to the viewport (#784)
|
|
18
|
+
|
|
19
|
+
## [0.40.4] - 2026-07-25
|
|
20
|
+
|
|
21
|
+
### 🔧 Changed
|
|
22
|
+
|
|
23
|
+
- Bump pinned postcss and brace-expansion overrides (#785)
|
|
24
|
+
|
|
13
25
|
## [0.40.3] - 2026-07-23
|
|
14
26
|
|
|
15
27
|
### 🐛 Fixed
|
data/assets/css/home.css
CHANGED
|
@@ -24,18 +24,32 @@
|
|
|
24
24
|
border: 0;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
/* Decorative glow band behind the hero. Height is pinned to the viewport rather
|
|
28
|
+
than stretched over the whole page (`inset: 0`): the glow layers below offset
|
|
29
|
+
themselves from this box, so a page-height-dependent box made them slide
|
|
30
|
+
whenever late content grew the document — the dominant CLS source on the
|
|
31
|
+
homepage (#781). `contain: layout size` keeps the band out of the surrounding
|
|
32
|
+
layout entirely. */
|
|
27
33
|
.showcase-spotlight {
|
|
28
34
|
pointer-events: none;
|
|
29
35
|
position: absolute;
|
|
30
|
-
inset: 0;
|
|
36
|
+
inset: 0 0 auto;
|
|
37
|
+
height: 120vh;
|
|
31
38
|
z-index: 0;
|
|
32
39
|
overflow: hidden;
|
|
40
|
+
contain: layout size;
|
|
33
41
|
}
|
|
34
42
|
|
|
35
43
|
.showcase-spotlight-left,
|
|
36
44
|
.showcase-spotlight-right {
|
|
37
45
|
position: absolute;
|
|
38
|
-
|
|
46
|
+
/* Viewport-relative, never a percentage of the containing block: a percentage
|
|
47
|
+
re-resolves as the document grows during load and moves both layers, which
|
|
48
|
+
registers as layout shift (#781). -32vh keeps the rendered glow within a few
|
|
49
|
+
pixels of the previous offset at the 1280x800 reference viewport. The
|
|
50
|
+
horizontal offsets stay percentage-based because the containing block width
|
|
51
|
+
is fixed by the viewport and does not change while the page loads. */
|
|
52
|
+
top: -32vh;
|
|
39
53
|
width: 55vw;
|
|
40
54
|
height: 120vh;
|
|
41
55
|
will-change: transform;
|
|
@@ -5,8 +5,8 @@ var TurboHomepageShowcase = (function(exports) {
|
|
|
5
5
|
var tokens = {
|
|
6
6
|
$schema: "https://design-tokens.org/schema.json",
|
|
7
7
|
$description: "Turbo Themes - Flat tokens for 43 themes",
|
|
8
|
-
$version: "0.40.
|
|
9
|
-
$generated: "
|
|
8
|
+
$version: "0.40.5",
|
|
9
|
+
$generated: "b4094b7263508411656a97d3e63bf08349b4e913d0a6a2a3900fd28d8e7ec1dc",
|
|
10
10
|
meta: {
|
|
11
11
|
"themeIds": [
|
|
12
12
|
"ayu-dark",
|