Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Theme: Fix blank icons having a background
A fix from 4325446 introduced a rule setting `background-image` of a blank icon to none. However, the selector used for that rule had lower specificity than another one: `.ui-button .ui-icon` which caused dashes being shown over the icons. We needed to increase the specificity of the `.ui-icon-blank` rule past the above selector and past `.ui-button:hover .ui-icon`. We're doing it by repeating the class name three times. Closes gh-1987
- Loading branch information