From f8a6985b204322e1eb983e3430752ac0eac4522b Mon Sep 17 00:00:00 2001 From: Airradda <3744856+Airradda@users.noreply.github.com> Date: Sun, 21 Jun 2020 02:25:07 -0500 Subject: [PATCH] Added colored scrollbar --- src/renderer/themes.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/renderer/themes.css b/src/renderer/themes.css index 226e468f..3eba037b 100644 --- a/src/renderer/themes.css +++ b/src/renderer/themes.css @@ -432,3 +432,14 @@ a:link { a:visited { color: var(--link-visited-color); } +::-webkit-scrollbar { + width: 10px; +} +::-webkit-scrollbar-thumb { + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); + background: var(--primary-color); + border-radius: 10px; +} +::-webkit-scrollbar-thumb:hover { + background: var(--primary-color-active); +}