Add basic styles for scrollbar

This commit is contained in:
Piotr Rogowski 2021-04-02 17:58:49 +02:00
parent 815e8e66be
commit 473e81566b
No known key found for this signature in database
GPG Key ID: F40F61D5587F5673
1 changed files with 19 additions and 1 deletions

View File

@ -91,7 +91,7 @@
@layout-trigger-color: @text-color;
// Tooltip
@tooltip-bg: rgb(46, 51, 56, 0.8);
@tooltip-bg: @main-light;
@zindex-tooltip: 1;
// Modal
@ -100,3 +100,21 @@
// Radio buttons
@radio-solid-checked-color: @white;
// Scrollbar
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: @main;
}
::-webkit-scrollbar-thumb {
background: lighten(@main-light, 15%);
border-radius: @border-radius-base;
&:hover {
background: @text-disabled;
}
}