From 8ddc4085a68daf13e32de39079f1404ac62bb36b Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Mon, 18 Jan 2016 19:49:23 +0200 Subject: [PATCH] Nicer scrollbar (webkit only) --- client/css/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/client/css/style.css b/client/css/style.css index a81f1adf..143adb11 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -1211,3 +1211,15 @@ button { padding: 0; } } + +::-webkit-scrollbar { + width: 8px; + background-color: rgba(0,0,0,0); +} +::-webkit-scrollbar:hover { + background-color: rgba(0, 0, 0, 0.09); +} +::-webkit-scrollbar-thumb:vertical { + background: rgba(0,0,0,0.5); + border-radius: 100px; +}