From 4154de9b30dc624b455f3b801dc9ba5948b06f15 Mon Sep 17 00:00:00 2001 From: NenoR96 Date: Thu, 4 Feb 2021 18:20:58 +0100 Subject: [PATCH 1/3] fix: horizontal scroll on list --- src/widget/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/widget/style.css b/src/widget/style.css index dbe0799..2b52d09 100644 --- a/src/widget/style.css +++ b/src/widget/style.css @@ -199,8 +199,10 @@ span.mdc-chip__primary-action:focus { .mdc-list { position: absolute; overflow-y: scroll; + overflow-x: hidden; height: 75vh; - width: 100%; + left: 0; + right: 0; } .mdc-list-item__primary-text { From fb7c0c57deba2c404e4770e85b0ef573a673ecfd Mon Sep 17 00:00:00 2001 From: NenoR96 Date: Mon, 8 Feb 2021 08:35:13 +0100 Subject: [PATCH 2/3] covered case when is user is not found in app data --- src/widget/widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/widget.js b/src/widget/widget.js index 19bbf0b..d37e856 100644 --- a/src/widget/widget.js +++ b/src/widget/widget.js @@ -137,7 +137,7 @@ function render(thread, otherUser, chipText, index,callback) { } actionItem = JSON.stringify(actionItem); navigate(); - } + } else { actionItem = null; navigate(); } }); } else { From 84e3394f985342120ab3f115144b0bb363430db8 Mon Sep 17 00:00:00 2001 From: NenoR96 Date: Thu, 11 Feb 2021 12:28:49 +0100 Subject: [PATCH 3/3] fixed ios gray shadow --- src/widget/index.html | 7 +++++-- src/widget/style.css | 7 ++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/widget/index.html b/src/widget/index.html index e798ea0..6f24426 100755 --- a/src/widget/index.html +++ b/src/widget/index.html @@ -62,8 +62,11 @@ --> -
    -
+
+
    +
+
+
No results found diff --git a/src/widget/style.css b/src/widget/style.css index 2b52d09..ac220f8 100644 --- a/src/widget/style.css +++ b/src/widget/style.css @@ -197,12 +197,9 @@ span.mdc-chip__primary-action:focus { } .mdc-list { - position: absolute; - overflow-y: scroll; + max-height: calc(100vh - 115px); + overflow-y: auto; overflow-x: hidden; - height: 75vh; - left: 0; - right: 0; } .mdc-list-item__primary-text {