download.jqueryui.com
download.jqueryui.com copied to clipboard
Checkbox checkmark is not a displayed in almost all themes ThemeRoller
The Checkbox checkbox does not appear in almost all themes.
The problem is that the color parameter is incorrectly specified in
.ui-icon-background,
.ui-state-active .ui-icon-background {
border: #fbd850;
background-color: #eb8f00;
}
If you change the value of background-color to #04eb00 , checkbox will be displayed.
.ui-icon-background,
.ui-state-active .ui-icon-background {
border: #fbd850;
background-color: #04eb00;
}
I couldn't achieve the same effect in ThemeRoller.
Thanks for the report. Since the issue is already in jQuery UI 1.12, given limited team resources it's not likely to be fixed by the UI team; see the project status at https://blog.jqueryui.com/2021/10/jquery-maintainers-update-and-transition-jquery-ui-as-part-of-overall-modernization-efforts/. PRs are welcome if they're not too complex.