From 0cbf7e530593e6f3a818c129d843bcc973f981c7 Mon Sep 17 00:00:00 2001 From: Jordan Scales Date: Sat, 18 Apr 2020 11:19:13 -0400 Subject: [PATCH] fix horizontal scrollbar styles --- style.css | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index b8c0182..69a209c 100644 --- a/style.css +++ b/style.css @@ -352,12 +352,19 @@ a:focus { #panel { width: 168px; height: 120px; - overflow-y: scroll; + overflow: scroll; } ::-webkit-scrollbar { width: 16px; } +::-webkit-scrollbar:horizontal { + height: 17px; +} + +::-webkit-scrollbar-corner { + background: var(--button-face); +} ::-webkit-scrollbar-track { background-image: url("./scrollbar-background.svg"); @@ -377,11 +384,11 @@ a:focus { background-image: url("./button-down.svg"); } ::-webkit-scrollbar-button:horizontal:start { - height: 17px; + width: 16px; background-image: url("./button-left.svg"); } ::-webkit-scrollbar-button:horizontal:end { - height: 17px; + width: 16px; background-image: url("./button-right.svg"); }