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

Profile images appear colour-inverted in some tasks lists #18

Open
fromero98 opened this issue Dec 12, 2022 · 2 comments
Open

Profile images appear colour-inverted in some tasks lists #18

fromero98 opened this issue Dec 12, 2022 · 2 comments

Comments

@fromero98
Copy link

Bug report

Profile images are appearing colour-inverted in some lists. For example, when you open a release, in the release tasks list.

Example:
image

It looks like it's related to this piece of code, as setting filter: none; in the HTML element using Chrome dev tools fixes it.

html {
  filter: invert(86%) hue-rotate(180deg) brightness(105%) contrast(105%);
  background: white;
}
@influential-eliot
Copy link

Yeah, I saw this, just came here to drop my fix which was to remove the 'profile' entries from the main set of filter inverts.

However (and I'm just testing this now) you may be able to more simply RE-invert it using:

  .css-ob4lje {
    filter: revert !important;
  }

This done using userContent.css and an @import url("FILENAME.css"); line, with a cursory :root command in the main CSS so I can just edit it all in FireFox. ;)

@influential-eliot
Copy link

Also, perhaps separate issue, but I'm not wanting to swamp the poor person, but Jira has a dark mode itself now, so I've placed all of my CSS under this:

@-moz-document domain(tempo.io) {
}

Which is the domain that the iframe loads under.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants