From 916ea2015a213ee75be3365365b6b535ef1609ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 19 May 2022 15:00:37 +0200 Subject: [PATCH] Web: always show scrollbar in notification history Force a visible scroll bar, so that the notification history table always has the same available width. Without this, Tabulator won't properly act on the reduction in width when the scrollbar appears, and will show a horizontal scrollbar as well. --- web/app/src/assets/base.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/app/src/assets/base.css b/web/app/src/assets/base.css index 971dd6b8..54dd0bf5 100644 --- a/web/app/src/assets/base.css +++ b/web/app/src/assets/base.css @@ -406,3 +406,10 @@ section.footer-popup header h3 { section.footer-popup button { float: right; } +section.footer-popup .tabulator-tableholder { + /* Force a visible scroll bar, so that the notification history table always + * has the same available width. Without this, Tabulator won't properly act on + * the reduction in width when the scrollbar appears, and will show a + * horizontal scrollbar as well. */ + overflow-y: scroll; +}