Add basic styles for scrollbar
This commit is contained in:
parent
815e8e66be
commit
473e81566b
|
@ -91,7 +91,7 @@
|
||||||
@layout-trigger-color: @text-color;
|
@layout-trigger-color: @text-color;
|
||||||
|
|
||||||
// Tooltip
|
// Tooltip
|
||||||
@tooltip-bg: rgb(46, 51, 56, 0.8);
|
@tooltip-bg: @main-light;
|
||||||
@zindex-tooltip: 1;
|
@zindex-tooltip: 1;
|
||||||
|
|
||||||
// Modal
|
// Modal
|
||||||
|
@ -100,3 +100,21 @@
|
||||||
|
|
||||||
// Radio buttons
|
// Radio buttons
|
||||||
@radio-solid-checked-color: @white;
|
@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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue