From 2a082b074f173db1d48ffeb89476627f33330d62 Mon Sep 17 00:00:00 2001 From: Jay Phelps Date: Wed, 6 Sep 2017 14:50:10 -0700 Subject: [PATCH] Fix horizontal scrollbar height, closes #5728 --- src/definitions/globals/site.less | 1 + src/themes/default/globals/site.variables | 1 + 2 files changed, 2 insertions(+) diff --git a/src/definitions/globals/site.less b/src/definitions/globals/site.less index ecb86e6f1..ffe558b4a 100755 --- a/src/definitions/globals/site.less +++ b/src/definitions/globals/site.less @@ -135,6 +135,7 @@ a:hover { body ::-webkit-scrollbar { -webkit-appearance: none; width: @customScrollbarWidth; + height: @customScrollbarHeight; } body ::-webkit-scrollbar-track { background: @trackBackground; diff --git a/src/themes/default/globals/site.variables b/src/themes/default/globals/site.variables index 2d59a7310..52247cb9a 100755 --- a/src/themes/default/globals/site.variables +++ b/src/themes/default/globals/site.variables @@ -146,6 +146,7 @@ @useCustomScrollbars: true; @customScrollbarWidth: 10px; +@customScrollbarHeight: 10px; @trackBackground: rgba(0, 0, 0, 0.1); @trackBorderRadius: 0px;