livechat 0.6.5 → 0.6.6
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 +6 -0
- data/lib/livechat/version.rb +1 -1
- data/lib/livechat/widget.js +2 -2
- 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: 1a69e5d589f17c732b4c31e2573167f337953219ef85e4cada2b0bb4167e3eab
|
|
4
|
+
data.tar.gz: 574dec08ba995fb9eb316cd8d2746f37cb09183044a835e4865220d57bf73661
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ab3f33529a53f00312ba82d2e6aeef89e7b6f29903ec124e6f931f16871b34a35bd075a723db2eb7cf78e742bb9fec6bfc19dbaf7785dfa2750584e44ab082b
|
|
7
|
+
data.tar.gz: e5c98f7e43ad6d7628e1ad2b78e5cd3fbefdcb09a4bec1b040db901ef594c17446ccfe9c920989730069e745a182bf3bc5d305da8c097e734a037de5b913378c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.6
|
|
4
|
+
|
|
5
|
+
- Expanded the desktop visitor widget into a taller, wider panel with equal
|
|
6
|
+
viewport padding above and below, while preserving the existing full-screen
|
|
7
|
+
mobile chat behavior.
|
|
8
|
+
|
|
3
9
|
## 0.6.5
|
|
4
10
|
|
|
5
11
|
- Added `mount_livechat at: "/livechat"` as the install-time route helper,
|
data/lib/livechat/version.rb
CHANGED
data/lib/livechat/widget.js
CHANGED
|
@@ -1230,8 +1230,8 @@
|
|
|
1230
1230
|
"#lvc-root #lvc-expand:hover{background:rgba(255,255,255,.15);opacity:1}" +
|
|
1231
1231
|
// Desktop only: a roomier panel for long threads and image-heavy chats.
|
|
1232
1232
|
// Guarded by min-width so it can never shrink the full-screen mobile panel.
|
|
1233
|
-
"@media(min-width:481px){#lvc-root.lvc-expanded #lvc-panel{
|
|
1234
|
-
"
|
|
1233
|
+
"@media(min-width:481px){#lvc-root.lvc-expanded #lvc-panel{top:20px;bottom:20px;" +
|
|
1234
|
+
"width:min(520px,calc(100vw - 40px));height:auto;max-height:none}}" +
|
|
1235
1235
|
// min-height:0 lets this flex child actually scroll within the panel
|
|
1236
1236
|
// instead of overflowing it (the classic flexbox scroll gotcha).
|
|
1237
1237
|
"#lvc-list{flex:1;min-height:0;overflow-y:auto;overscroll-behavior:contain;padding:14px;" +
|