Explicitly specify level of inversion to avoid inconsistent defaults with webkit-filter/filter

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2017-03-20 13:31:00 +00:00
parent af122172f1
commit 89447b7bfc

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 {