1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add comic and book viewer to dark theme

The changes adds the comic viewer, book viewer and the book table of contents pop up to the dark theme. It includes dark background for all, light buttons, and light links to each chapter in the table of contents. The only thing I couldn't figure out is how to get the "X" close buttons to turn blue for the comic book viewer and the book table of contents pop up.
This commit is contained in:
rourien 2022-08-24 21:14:59 -06:00 committed by GitHub
parent 0b85560658
commit b1920e7c82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -481,3 +481,37 @@ html {
background-color: #f2f2f2;
color: #00a4dc;
}
#comicsPlayer,
#bookPlayer {
background: #101010;
}
#bookPlayer .topButtons {
color: #fff;
}
.actionButtonIcon {
color: #fff;
}
#dialogToc {
background-color: #101010;
}
#dialogToc .bookplayerButtonIcon {
color: #ccc;
}
#dialogToc .bookplayerButtonIcon:hover {
color: #00a4dc;
}
.toc li a:link {
color: #ccc;
}
.toc li a:active,
.toc li a:hover {
color: #00a4dc;
}