Bug #10499
closedDark theme Auto-complete popup field has dark text on dark background
100%
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
Updated by Jim Pingle over 4 years ago
- Target version set to 2.5.0
- Affected Version set to All
Can you submit that change as a pull request on Github?
https://docs.netgate.com/pfsense/en/latest/development/submitting-a-pull-request-via-github.html
Updated by Jim Pingle over 4 years ago
- Status changed from New to Pull Request Review
Updated by Renato Botelho over 4 years ago
- Status changed from Pull Request Review to Feedback
- Assignee set to Renato Botelho
- % Done changed from 0 to 100
PR has been merged. Thanks!
Updated by Jim Pingle over 4 years ago
- Target version changed from 2.5.0 to 2.4.5-p1
Updated by Jim Pingle over 4 years ago
- Status changed from Feedback to Resolved
When using the dark theme, the autocomplete drop-down now has a light background and text is easy to read.