From c8bf643c4ed261962bc319ee7985ac6f53f888e3 Mon Sep 17 00:00:00 2001 From: Sebastian Castro Date: Tue, 12 May 2020 16:08:20 +0200 Subject: [PATCH] colibris: adds minimum height for scrollbar Otherwise when there is a lot of content, the scrollbar thumb is too small --- src/static/skins/colibris/src/components/scrollbars.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/static/skins/colibris/src/components/scrollbars.css b/src/static/skins/colibris/src/components/scrollbars.css index cd4ea08b5..85f942b21 100644 --- a/src/static/skins/colibris/src/components/scrollbars.css +++ b/src/static/skins/colibris/src/components/scrollbars.css @@ -12,6 +12,7 @@ } ::-webkit-scrollbar-thumb { + min-height: 40px; border-radius: 10px; background-color: #576273; background-color: var(--scrollbar-thumb); @@ -33,6 +34,7 @@ .thin-scrollbar::-webkit-scrollbar-thumb { border-radius: 0px; + min-height: 40px; background-color: #d2d2d2; background-color: var(--middle-color); border: none;