From 48b0c373ce64afbf4638bdb9b3c28637b2f52791 Mon Sep 17 00:00:00 2001 From: Jonas Date: Sun, 29 Oct 2023 00:11:08 +0200 Subject: [PATCH] fix(NcAppContent): Set normal scrollbar width on resizeable NcAppContentList When `NcAppContentList` is resizeable, a thin scrollbar is hard to catch with the mouse. Set scrollbar width to auto in this case. Fixes: #4706 Signed-off-by: Jonas --- src/components/NcAppContent/NcAppContent.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/NcAppContent/NcAppContent.vue b/src/components/NcAppContent/NcAppContent.vue index 725886192f..a232b536b2 100644 --- a/src/components/NcAppContent/NcAppContent.vue +++ b/src/components/NcAppContent/NcAppContent.vue @@ -388,6 +388,8 @@ export default { :deep(.splitpanes.default-theme) { .app-content-list { max-width: none; + /* Thin scrollbar is hard to catch on resizable columns */ + scrollbar-width: auto; } .splitpanes__pane {