diff options
author | trwnh <a@trwnh.com> | 2019-01-24 06:32:23 -0600 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-01-24 13:32:23 +0100 |
commit | c87863bdd18213a7181914b76752959b0617ade1 (patch) | |
tree | c048272a02225565b1f0f3193b3e8790b46a261b | |
parent | 306e1572e89b1991be204f7b468bb37fff210c0e (diff) |
Fix Firefox scrollbar color regression in #9210 (#9908)
In #9210 the track color was changed to transparent for no apparent reason. This PR restores the previous color selections implemented in #8653 while keeping the updated property name. Per https://github.com/tootsuite/mastodon/pull/9210#issuecomment-441788776 there is no particular reason for the color change in #9210.
-rw-r--r-- | app/javascript/styles/mastodon/reset.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/styles/mastodon/reset.scss b/app/javascript/styles/mastodon/reset.scss index e24ba8c1c..f54ed5bc7 100644 --- a/app/javascript/styles/mastodon/reset.scss +++ b/app/javascript/styles/mastodon/reset.scss @@ -54,7 +54,7 @@ table { } html { - scrollbar-color: lighten($ui-base-color, 4%) transparent; + scrollbar-color: lighten($ui-base-color, 4%) rgba($base-overlay-background, 0.1); } ::-webkit-scrollbar { |