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:
parent
0b85560658
commit
b1920e7c82
1 changed files with 34 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue