summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoritada Kobayashi <noritada.kobayashi@gmail.com>2023-01-18 23:51:09 +0900
committerNoritada Kobayashi <noritada.kobayashi@gmail.com>2023-01-18 23:51:09 +0900
commitdcc9efea0abe824eea893cbfe3d5a5827c2d1283 (patch)
tree4aa39612b6866aac325f2e4fbcb76ae1483a8bd1
parent1ba2c063e0d2e96022f00ad3f145b9bfb4d1b130 (diff)
Remove the WebKit-specific scrollbar styling altogether
It is preferable to remove WebKit-specific styling and use the browser and OS default scrollbars. Thanks to comments from @julianfortune, @arniu, and @ehuss. Closes #1483.
-rw-r--r--src/theme/css/chrome.css8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/theme/css/chrome.css b/src/theme/css/chrome.css
index 5937a3ce..53a79ccf 100644
--- a/src/theme/css/chrome.css
+++ b/src/theme/css/chrome.css
@@ -2,14 +2,6 @@
@import 'variables.css';
-::-webkit-scrollbar {
- background: var(--bg);
- width: 8px;
-}
-::-webkit-scrollbar-thumb {
- background: var(--scrollbar);
- border-radius: 4px;
-}
html {
scrollbar-color: var(--scrollbar) var(--bg);
}