-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Fix background color of external devices with errors on dark color theme #37807
Conversation
/backport to stable25 |
apps/files_external/css/external.css
Outdated
@@ -1,3 +1,4 @@ | |||
.files-filestable tbody tr.externalErroredRow { | |||
background-color: #F2DEDE; | |||
/* TODO: As soon as firefox supports it: color-mix(in srgb, var(--color-error) 15%, var(--color-main-background)) */ | |||
background-color: #f002; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how would that look in light mode?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks fine from the screenshots
… should respect color theme Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
/backport to stable26 |
Summary
Currently if a external device has errors the background color of the files entry is hard coded, which will be unreadable on dark color mode.
To fix this I just overlay the background with semi transparent red color.
Screenshots
Checklist