From 32851b985843a0a82e0b974035d11e7921d4173c Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 17 Feb 2020 10:49:52 -0500 Subject: [PATCH] Style the scrollbar a bit --- macrovision.css | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/macrovision.css b/macrovision.css index aea51b7c..9760074d 100644 --- a/macrovision.css +++ b/macrovision.css @@ -80,6 +80,43 @@ body.toggle-entity-name .entity-name { flex-direction: column; background: #444; overflow-y: scroll; + scrollbar-color: #e1e1e1 #888; + scrollbar-width: thin; +} + + +#options::-webkit-scrollbar { + width: 3px; + height: 2px; + } +#options::-webkit-scrollbar-button { + width: 0px; + height: 0px; +} +#options::-webkit-scrollbar-thumb { + background: #e1e1e1; + border: 0px none #ffffff; + border-radius: 50px; +} +#options::-webkit-scrollbar-thumb:hover { + background: #ffffff; +} +#options::-webkit-scrollbar-thumb:active { + background: #000000; +} +#options::-webkit-scrollbar-track { + background: #00000000; + border: 0px none #ffffff; + border-radius: 50px; +} +#options::-webkit-scrollbar-track:hover { + background: #666666; +} +#options::-webkit-scrollbar-track:active { + background: #333333; +} +#options::-webkit-scrollbar-corner { + background: transparent; } .options-row {