diff options
author | Vitaly Takmazov | 2020-04-17 09:24:53 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2020-04-17 09:24:53 +0300 |
commit | 29b4a0a7ece6ff8263b7833703d8f1e13be011ef (patch) | |
tree | 9bcde5fbd0fd4befa4a5bbcc50e8147ea28feacb /src/main/assets/style.css | |
parent | 709098c0a6a40a88093128669487cbb459757cfc (diff) |
Drop scrollbar styling
Diffstat (limited to 'src/main/assets/style.css')
-rw-r--r-- | src/main/assets/style.css | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/main/assets/style.css b/src/main/assets/style.css index ff64c1f1..afc52b99 100644 --- a/src/main/assets/style.css +++ b/src/main/assets/style.css @@ -956,21 +956,3 @@ article p { border-right: 2px solid #ff339a; } } -::-webkit-scrollbar { - width: 12px; -} /* this targets the default scrollbar (compulsory) */ -::-webkit-scrollbar-track { - background-color: var(--main-background-color); -} /* the new scrollbar will have a flat appearance with the set background color */ - -::-webkit-scrollbar-thumb { - background-color: #ff339a; -} /* this will style the thumb, ignoring the track */ - -::-webkit-scrollbar-button { - background-color: var(--border-color); -} /* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */ - -::-webkit-scrollbar-corner { - background-color: black; -} |