Merge pull request #3479 from t3chguy/t3chguy/dark-theme-invert-inconsistency-fix

dark theme invert inconsistent across browsers
pull/3530/head
Matthew Hodgson 2017-03-25 14:06:01 +00:00 committed by GitHub
commit f4134167a0
2 changed files with 6 additions and 3 deletions

View File

@ -10,3 +10,6 @@ include:
* Florent VIOLLEAU (https://github.com/floviolleau) <floviolleau at gmail dot com>
Improve README.md for a better understanding of installation instructions
* Michael Telatynski (https://github.com/t3chguy)
Improved consistency of inverted elements in dark theme across browsers

View File

@ -115,17 +115,17 @@ $progressbar-color: #000;
// better match the theme. Typically applied to dark grey 'off' buttons or
// light grey 'on' buttons.
.mx_filterFlipColor {
filter: invert();
filter: invert(1);
}
.gm-scrollbar .thumb {
filter: invert();
filter: invert(1);
}
// markdown overrides:
.mx_EventTile_content .markdown-body {
pre, code {
filter: invert();
filter: invert(1);
}
pre code {