From b1920e7c822a9c608f2f665e1c7aff2d981b3d08 Mon Sep 17 00:00:00 2001 From: rourien <32525257+rourien@users.noreply.github.com> Date: Wed, 24 Aug 2022 21:14:59 -0600 Subject: [PATCH] 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. --- src/themes/dark/theme.css | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/themes/dark/theme.css b/src/themes/dark/theme.css index 5de1414a9a..ea57c76c9b 100644 --- a/src/themes/dark/theme.css +++ b/src/themes/dark/theme.css @@ -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; +}