mirror of https://github.com/vector-im/riot-web
Explicitly specify level of inversion to avoid inconsistent defaults with webkit-filter/filter
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/3479/head
parent
af122172f1
commit
89447b7bfc
|
@ -115,17 +115,17 @@ $progressbar-color: #000;
|
||||||
// better match the theme. Typically applied to dark grey 'off' buttons or
|
// better match the theme. Typically applied to dark grey 'off' buttons or
|
||||||
// light grey 'on' buttons.
|
// light grey 'on' buttons.
|
||||||
.mx_filterFlipColor {
|
.mx_filterFlipColor {
|
||||||
filter: invert();
|
filter: invert(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gm-scrollbar .thumb {
|
.gm-scrollbar .thumb {
|
||||||
filter: invert();
|
filter: invert(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// markdown overrides:
|
// markdown overrides:
|
||||||
.mx_EventTile_content .markdown-body {
|
.mx_EventTile_content .markdown-body {
|
||||||
pre, code {
|
pre, code {
|
||||||
filter: invert();
|
filter: invert(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
pre code {
|
pre code {
|
||||||
|
|
Loading…
Reference in New Issue