bh 6.4.0 → 6.5.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/app/stylesheets/bh/shell.css +7 -1
- data/lib/bh/version.rb +1 -1
- data/package.json +1 -1
- data/public/bh/css/bh.css +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: bcf981e1ac2ccf3453876292551f8c226f128d580df804e5fe639bfa93cd891e
|
|
4
|
+
data.tar.gz: 493f3eed784399be33e0d1a96ac3152dbb44ab6da23539e4f596ec6e26419bd0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dee9ed53e3555c3643795bbbd2d6edf0079fb018fb72eb070bfa94f6eefe1bccb177db45dcb94bbbfa3a9702b04217222203a5757aa7877b443a4efc229f84c5
|
|
7
|
+
data.tar.gz: 4d12abc38791cff92dc944a0626333fa269bfc6e2b012b7787329ee31445b445c7fb7b6a79f658e119cc28037ea82de71914155cbba0f6c085a35edfd0ebf9da
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,16 @@ For more information about changelogs, check
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## 6.5.0 - 2026-09-18
|
|
12
|
+
|
|
13
|
+
* [FIX] The shell fills the screen in whole pixels
|
|
14
|
+
|
|
15
|
+
`100dvh` computes to a fraction on a scaled display -- 415.455px against a viewport
|
|
16
|
+
reporting 415 -- and the tenths over are enough for a browser to draw a scrollbar the
|
|
17
|
+
page cannot use, beside the one the content it holds already has. The shell takes a
|
|
18
|
+
percentage of a document given a height instead, which is the same whole number the
|
|
19
|
+
viewport reports.
|
|
20
|
+
|
|
11
21
|
## 6.4.0 - 2026-09-18
|
|
12
22
|
|
|
13
23
|
* [FEATURE] A message carries its `photos`, drawn in the bubble under its words
|
|
@@ -21,6 +21,9 @@ span.breadcrumb-link.active {
|
|
|
21
21
|
page whose table had no rows to be taller than the menu. `clip` leaves the
|
|
22
22
|
other axis alone. */
|
|
23
23
|
html { overflow-x: hidden; }
|
|
24
|
+
/* And a height for the shell below to take a percentage of, so the one screen it
|
|
25
|
+
fills is measured in whole pixels rather than in a unit that carries a fraction. */
|
|
26
|
+
html, body { height: 100%; }
|
|
24
27
|
.recourse-shell { overflow-x: clip; }
|
|
25
28
|
|
|
26
29
|
/* A finger does not hover. The tint a pointer leaves on the row under it, or on
|
|
@@ -65,7 +68,10 @@ html { overflow-x: hidden; }
|
|
|
65
68
|
grid-template-columns: auto minmax(0, 1fr);
|
|
66
69
|
grid-template-rows: auto minmax(0, 1fr);
|
|
67
70
|
grid-template-areas: 'nav nav' 'aside main';
|
|
68
|
-
|
|
71
|
+
/* A percentage of the block a viewport unit would have measured: `100dvh` carries
|
|
72
|
+
the fraction a scaled display computes it to -- 415.455px against a viewport
|
|
73
|
+
reporting 415 -- and the tenths over are a scrollbar the page cannot use. */
|
|
74
|
+
height: 100%;
|
|
69
75
|
}
|
|
70
76
|
.recourse-shell > nav { grid-area: nav; }
|
|
71
77
|
.recourse-sidebar { grid-area: aside; }
|
data/lib/bh/version.rb
CHANGED
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bh6",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.5.0",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Bootstrap 6 in a Rails app: the form builder that dresses every field, the components Bootstrap ships behavior for and no markup, and the Stimulus controllers behind them.",
|
|
6
6
|
"license": "MIT",
|