diff options
Diffstat (limited to 'config/qutebrowser/styles/scrollbar.css')
| -rw-r--r-- | config/qutebrowser/styles/scrollbar.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/config/qutebrowser/styles/scrollbar.css b/config/qutebrowser/styles/scrollbar.css new file mode 100644 index 0000000..2e58110 --- /dev/null +++ b/config/qutebrowser/styles/scrollbar.css @@ -0,0 +1,33 @@ +:root { + --scroll-bar-color: #aabaca; +} + +::-webkit-scrollbar { + width: 4px; + height: 8px; +} + +::-webkit-scrollbar-track:vertical { + background: black; + border-left: 1px solid black; +} + +::-webkit-scrollbar-thumb:vertical { + background: var(--scroll-bar-color); + border-left: 1px solid black; +} + +::-webkit-scrollbar-track:horizontal { + background: var(--scroll-bar-color); + border-radius: 4px; +} + +::-webkit-scrollbar-thumb:horizontal { + background: var(--scroll-bar-color); + border-radius: 4px; + box-shadow: inset 0 0 8px black; +} + +::-webkit-scrollbar-corner { + background: silver; +} |
