bh 6.4.0 → 6.5.1

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: bd421bdc16e2a8fd98831f8a60a6bb6c843dbbd2cdcd65ba80d592b91507443f
4
+ data.tar.gz: d0502550dced94ad024305eef2f4caab1d5f94bcac9cc7b37170385a9ff11559
5
5
  SHA512:
6
- metadata.gz: 84fb271ca162d32df5eb64e4aeb9bff20752391e4c107a51259bcc9995431d5f6c4d0ff0160dfdc4da8deb080aed74197b0c3930f38e08ef2ccdb3984ff877d1
7
- data.tar.gz: b7601d8739cdb4e21cb98d52aad08681a95f2366e19e7196028bfa8a9e30c47812826dee5a5a405f6862475474c8dd7f087f0a887051d9f0526d8acdf5ad6603
6
+ metadata.gz: '0994c9e4afd35e016c658c35cee57ad1daf70e1c3504da49fb9446e136a4285fe7c3c4dd0316a8a42824a87c7843e761ba4dc168a8d5d004e3ffa22076932829'
7
+ data.tar.gz: 89f8d47f3301e599ea34d1c67256c612aa108593afabac40e5582fa8afee5324c3c92ae731e520ae1654512966898862466638b7cde37e49a6f6a04564f83890
data/CHANGELOG.md CHANGED
@@ -8,6 +8,24 @@ For more information about changelogs, check
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## 6.5.1 - 2026-09-18
12
+
13
+ * [FIX] A thread's note is opaque and centred
14
+
15
+ It named a background variable this bundle does not define, so it drew none and the
16
+ message it holds the top over read through it. And it lost its centring when it gained
17
+ its stickiness.
18
+
19
+ ## 6.5.0 - 2026-09-18
20
+
21
+ * [FIX] The shell fills the screen in whole pixels
22
+
23
+ `100dvh` computes to a fraction on a scaled display -- 415.455px against a viewport
24
+ reporting 415 -- and the tenths over are enough for a browser to draw a scrollbar the
25
+ page cannot use, beside the one the content it holds already has. The shell takes a
26
+ percentage of a document given a height instead, which is the same whole number the
27
+ viewport reports.
28
+
11
29
  ## 6.4.0 - 2026-09-18
12
30
 
13
31
  * [FEATURE] A message carries its `photos`, drawn in the bubble under its words
@@ -16,9 +16,10 @@
16
16
  position: sticky;
17
17
  inset-block-start: 0;
18
18
  z-index: 1;
19
- background-color: var(--bs-body-bg);
19
+ background-color: var(--bs-bg-body);
20
20
  font-size: var(--bs-font-size-sm);
21
21
  color: var(--bs-fg-2);
22
+ text-align: center;
22
23
  margin: 0;
23
24
  padding-block: 0.25rem 0.75rem;
24
25
  }
@@ -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.1'
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.1",
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",