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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e56ebe3dc708d2c24faa0ce9419a73432bf56a2a89e30c4e43238c17a3212bfc
4
- data.tar.gz: 787d7c455cded498c4e53ce624eca61981f7cc9a0522d9f743cf748bc95c09b6
3
+ metadata.gz: bcf981e1ac2ccf3453876292551f8c226f128d580df804e5fe639bfa93cd891e
4
+ data.tar.gz: 493f3eed784399be33e0d1a96ac3152dbb44ab6da23539e4f596ec6e26419bd0
5
5
  SHA512:
6
- metadata.gz: 84fb271ca162d32df5eb64e4aeb9bff20752391e4c107a51259bcc9995431d5f6c4d0ff0160dfdc4da8deb080aed74197b0c3930f38e08ef2ccdb3984ff877d1
7
- data.tar.gz: b7601d8739cdb4e21cb98d52aad08681a95f2366e19e7196028bfa8a9e30c47812826dee5a5a405f6862475474c8dd7f087f0a887051d9f0526d8acdf5ad6603
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
- height: 100dvh;
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
@@ -1,4 +1,4 @@
1
1
  module Bh
2
2
  # Version of the gem, read by the gemspec and by hosts checking compatibility.
3
- VERSION = '6.4.0'
3
+ VERSION = '6.5.0'
4
4
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bh6",
3
- "version": "6.4.0",
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",