Merge "File pages: Apply background in dark mode to file pages"

This commit is contained in:
jenkins-bot 2024-08-05 16:38:59 +00:00 committed by Gerrit Code Review
commit a08562a577

View file

@ -197,3 +197,19 @@
height: auto;
}
}
@media screen {
html.skin-theme-clientpref-night {
#file img {
background-color: #c8ccd1;
}
}
}
@media screen and ( prefers-color-scheme: dark ) {
html.skin-theme-clientpref-os {
#file img {
background-color: #c8ccd1;
}
}
}