jquery / jquery/download.jqueryui.com
Checkbox checkmark is not a displayed in almost all themes ThemeRoller
Nobody has claimed this yet.
- Dominant language
- JavaScript
- Stars
- 89
- Forks
- 73
- PR merge metrics
- No merged PRs in 30d
Description
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.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the ThemeRoller-generated CSS for .ui-icon-background and .ui-state-active .ui-icon-background, then inspect how the checkbox theme values are produced. Done means the generated themes display checkbox checkmarks correctly without manual CSS edits, including the themes shown in the issue.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, jquery
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100