bh 6.5.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/app/stylesheets/bh/chat.css +2 -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: bd421bdc16e2a8fd98831f8a60a6bb6c843dbbd2cdcd65ba80d592b91507443f
|
|
4
|
+
data.tar.gz: d0502550dced94ad024305eef2f4caab1d5f94bcac9cc7b37170385a9ff11559
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0994c9e4afd35e016c658c35cee57ad1daf70e1c3504da49fb9446e136a4285fe7c3c4dd0316a8a42824a87c7843e761ba4dc168a8d5d004e3ffa22076932829'
|
|
7
|
+
data.tar.gz: 89f8d47f3301e599ea34d1c67256c612aa108593afabac40e5582fa8afee5324c3c92ae731e520ae1654512966898862466638b7cde37e49a6f6a04564f83890
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,14 @@ 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
|
+
|
|
11
19
|
## 6.5.0 - 2026-09-18
|
|
12
20
|
|
|
13
21
|
* [FIX] The shell fills the screen in whole pixels
|
data/app/stylesheets/bh/chat.css
CHANGED
|
@@ -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
|
|
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
|
}
|
data/lib/bh/version.rb
CHANGED
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bh6",
|
|
3
|
-
"version": "6.5.
|
|
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",
|