From 25b2fd4aed6ee61d1131c09eb57e75e4fdf209aa Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Tue, 1 Feb 2022 09:53:55 +0000 Subject: [PATCH] Fixed forced-scrollbar on members and members-activity tables no issue - some browser/OS setting combinations will always show a fixed scrollbar when `overflow: scroll` is used instead of `overflow: auto` --- ghost/admin/app/styles/components/lists.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/admin/app/styles/components/lists.css b/ghost/admin/app/styles/components/lists.css index e6ac391d92..7ee3a50bf5 100644 --- a/ghost/admin/app/styles/components/lists.css +++ b/ghost/admin/app/styles/components/lists.css @@ -315,7 +315,7 @@ ul.nostyle li { /* Horizontally scrolling list */ .gh-list-scrolling { position: relative; - overflow: scroll; + overflow: auto; max-width: calc(100% + 96px); height: calc(100vh - 129px); margin: 0 -48px -81px;