fix(scrollbars): use standard CSS for scrollbars (#697)

Also use correct SCSS escaping everywhere, and fix a missing semicolon. Fixes #691
This commit is contained in:
Nolan Lawson 2018-11-26 13:15:33 -08:00 committed by GitHub
parent 7f1ec6036d
commit 58f9c09bb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 7 deletions

View File

@ -1,6 +1,10 @@
html {
scrollbar-face-color: $scrollbar-face;
scrollbar-track-color: $scrollbar-track;
// Firefox with scrollbar config changes as of 2018-11
scrollbar-face-color: #{$scrollbar-face};
scrollbar-track-color: #{$scrollbar-track};
// Firefox nightly as of 2018-11, new standard version
// https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-color
scrollbar-color: #{$scrollbar-face $scrollbar-track};
}
::-webkit-scrollbar {
@ -9,22 +13,22 @@ html {
}
::-webkit-scrollbar-thumb {
background: $scrollbar-face;
background: #{$scrollbar-face};
border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
background: $scrollbar-face-hover;
background: #{$scrollbar-face-hover};
}
::-webkit-scrollbar-thumb:active {
background: $scrollbar-face-active;
background: #{$scrollbar-face-active};
}
::-webkit-scrollbar-track, ::-webkit-scrollbar-track:hover, ::-webkit-scrollbar-track:active {
background: $scrollbar-track
background: #{$scrollbar-track};
}
::-webkit-scrollbar-corner {
background: transparent;
}
}