Skip to content

Commit

Permalink
fix(NcAppContent): Set normal scrollbar width on resizeable NcAppCont…
Browse files Browse the repository at this point in the history
…entList

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 <jonas@freesources.org>
  • Loading branch information
mejo- committed Nov 2, 2023
1 parent 544f41b commit 6d88d70
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/NcAppContent/NcAppContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,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 {
Expand Down

0 comments on commit 6d88d70

Please sign in to comment.