Page 1 of 1

Popup Font colour

Posted: Sun Jun 20, 2021 7:01 am
by stevewrightnz1
Hi guy's

I may have missed something really simple but I can't find a setting to change the font colour in the help popups. It's currently so light that I'm struggling to read them. I'm in Dark mode.

Steve
help.png
help.png (18.31 KiB) Viewed 2695 times

Re: Popup Font colour

Posted: Fri Jul 30, 2021 12:01 pm
by kitkat
I may be a bit late to this but I've just had the same issue and solved it by editing the CSS for the dark skin, and I thought the solution may be of interest to others.

It's not the text colour that's the problem so much as the background.

Open this file in a text editor:

Code: Select all

/usr/share/zoneminder/www/skins/classic/css/dark/skin.css
At the end you'll see:

Code: Select all

modal-content {
  background-color: #222222;
}
Change that to:

Code: Select all

.modal-content {
  background-color: #000000;
}
Note the addition of the '.' before modal-content.

Save and close the file, then reload ZM in the browser.

Re: Popup Font colour

Posted: Sun Aug 01, 2021 3:39 am
by SteveGilvarry
Thanks, I have submitted a Pull Request to fix it and a few others to get rid of light elements.
https://github.com/ZoneMinder/zoneminder/pull/3323