From 1be54352e1ef2bac1afa54711dba68e774ce2b7c Mon Sep 17 00:00:00 2001 From: Bill Stumbo Date: Tue, 11 Nov 2025 23:13:19 -0500 Subject: [PATCH 1/2] Remove `webkit-scrollbar`, `webkit-scrollbar-track` and `webkit-scrollbar-thumb' These values were set to non-default in `custom.css` and are interferring with the bibliography page (and all other pages in Chrome). It appears they were set this way with some carousel work that never came to fruition. --- static/css/custom.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/css/custom.css b/static/css/custom.css index cd5cbb7e3..6342e59f2 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -58,6 +58,7 @@ scrollbar-width: 0px; }*/ +/* Remove scrollbar css interfering with bibliography pages *::-webkit-scrollbar { width: 0; } @@ -70,6 +71,7 @@ background: transparent; border: none; } + */ * { -ms-overflow-style: none; From 6d6e136e1a28d47f6ef1392839dcdd3222480112 Mon Sep 17 00:00:00 2001 From: Bill Stumbo Date: Wed, 12 Nov 2025 07:30:07 -0500 Subject: [PATCH 2/2] Remove `-ms-overflow-style` from custom.css. This was disabling subwindow scrollbars on overflow. --- static/css/custom.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/custom.css b/static/css/custom.css index 6342e59f2..8eab724a5 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -71,11 +71,11 @@ background: transparent; border: none; } - */ * { -ms-overflow-style: none; } + */ .carousel ol, .carousel li { list-style: none;