download.jqueryui.com icon indicating copy to clipboard operation
download.jqueryui.com copied to clipboard

Checkbox checkmark is not a displayed in almost all themes ThemeRoller

Open SinglWolf opened this issue 10 months ago • 1 comments

The Checkbox checkbox does not appear in almost all themes. Image Image 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;
}

Image

I couldn't achieve the same effect in ThemeRoller.

SinglWolf avatar Feb 25 '25 04:02 SinglWolf

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.

mgol avatar Feb 26 '25 11:02 mgol