Improve scrollbar

This commit is contained in:
MMP0
2024-02-21 11:27:52 +09:00
committed by Vladimir Mandic
parent cf7118be4d
commit ee4413d0bc
11 changed files with 18 additions and 7 deletions
+2 -1
View File
@@ -54,7 +54,8 @@ input[type=range]::-webkit-slider-thumb { box-shadow: 2px 2px 3px #111111 !impor
border-radius: var(--radius-lg) !important; background: var(--highlight-color) !important; cursor: pointer !important; appearance: none !important; margin-top: 0px !important; }
input[type=range]::-moz-range-thumb { box-shadow: 2px 2px 3px #111111 !important; border: 0px solid #000000 !important; height: var(--line-sm) !important; width: var(--line-sm) !important;
border-radius: var(--radius-lg) !important; background: var(--highlight-color) !important; cursor: pointer !important; appearance: none !important; margin-top: 0px !important; }
::-webkit-scrollbar { width: 12px; }
:root { scrollbar-color: var(--highlight-color) #333333; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #333333; }
::-webkit-scrollbar-thumb { background-color: var(--highlight-color); border-radius: var(--radius-lg); border-width: 0; box-shadow: 2px 2px 3px #111111; }
div.form { border-width: 0; box-shadow: none; background: transparent; overflow: visible; margin-bottom: 6px; }