From 0fc2c327b887498f243afee0afa9ead58d648122 Mon Sep 17 00:00:00 2001 From: Ross Mountjoy Date: Sun, 9 Feb 2020 17:26:25 -0500 Subject: [PATCH] accent color scrollbars --- dashmachine/static/css/global/dashmachine.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashmachine/static/css/global/dashmachine.css b/dashmachine/static/css/global/dashmachine.css index 710877e..8112c42 100644 --- a/dashmachine/static/css/global/dashmachine.css +++ b/dashmachine/static/css/global/dashmachine.css @@ -53,7 +53,7 @@ body { user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */ - scrollbar-color: var(--theme-secondary); + scrollbar-color: var(--theme-primary) !important; scrollbar-width: thin; } @@ -95,13 +95,13 @@ blockquote { /* Handle */ ::-webkit-scrollbar-thumb { - background: var(--theme-secondary); + background: var(--theme-primary); border-radius: 24px; } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { - background: var(--theme-secondary); + background: var(--theme-primary); border-radius: 24px; }