Actions
Bug #10499
closedDark theme Auto-complete popup field has dark text on dark background
Start date:
04/25/2020
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
All
Affected Architecture:
Description
Using pfSense-dark.css, the auto-complete pop-up currently does not specify a background image. This leads to theme.css applying a dark background image. Given the font color is also a dark color, this makes the text hard to read.
This can be fixed by setting background-image to none for ".ui-autocomplete". E.g.:
/** Styling for jQuery autocomplete widget */
.ui-autocomplete {
color: #212121;
background-color: #e0e0e0;
background-image: none;
}
See attached for example screenshots.
Files
Actions