diff options
author | trwnh <a@trwnh.com> | 2019-01-24 06:32:23 -0600 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-01-25 11:48:27 +0100 |
commit | 8ef0498f1ca4ff4dab7d8255f15577a86907c392 (patch) | |
tree | f94f595aa4347572fe7a62488c8bc90d56f94d2f | |
parent | 77394156dd43bb5a711d3434504a26c8d1e2acf5 (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/flavours/glitch/styles/reset.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/styles/reset.scss b/app/javascript/flavours/glitch/styles/reset.scss index e24ba8c1c..f54ed5bc7 100644 --- a/app/javascript/flavours/glitch/styles/reset.scss +++ b/app/javascript/flavours/glitch/styles/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 { |