Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dark theme invert inconsistent across browsers #3479

Merged
merged 2 commits into from Mar 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions AUTHORS.rst
Expand Up @@ -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
6 changes: 3 additions & 3 deletions src/skins/vector/css/themes/_dark.scss
Expand Up @@ -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 {
Expand Down