Browse Source
Merge pull request #5749 from jayphelps/scrollbar
Fix horizontal scrollbar height, closes #5728
pull/5603/merge
Jack Lukic
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
0 deletions
-
src/definitions/globals/site.less
-
src/themes/default/globals/site.variables
|
|
@ -135,6 +135,7 @@ a:hover { |
|
|
|
body ::-webkit-scrollbar { |
|
|
|
-webkit-appearance: none; |
|
|
|
width: @customScrollbarWidth; |
|
|
|
height: @customScrollbarHeight; |
|
|
|
} |
|
|
|
body ::-webkit-scrollbar-track { |
|
|
|
background: @trackBackground; |
|
|
|
|
|
@ -146,6 +146,7 @@ |
|
|
|
@useCustomScrollbars: true; |
|
|
|
|
|
|
|
@customScrollbarWidth: 10px; |
|
|
|
@customScrollbarHeight: 10px; |
|
|
|
|
|
|
|
@trackBackground: rgba(0, 0, 0, 0.1); |
|
|
|
@trackBorderRadius: 0px; |
|
|
|