diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2016-07-26 15:32:04 -0400 |
---|---|---|
committer | Alexander Schmitz <alexanderschmitz@Kates-MacBook-Pro.local> | 2016-07-27 10:16:04 -0400 |
commit | 57537d09a42ed53d6244d9222d954e107b2b44d0 (patch) | |
tree | ddf50463dbb5df90bdb3a33c45a51d7e5eeebb34 | |
parent | 6c754b4b5b19a2a12eae68058458ef9ff7b72a0a (diff) | |
download | jquery-ui-57537d09a42ed53d6244d9222d954e107b2b44d0.tar.gz jquery-ui-57537d09a42ed53d6244d9222d954e107b2b44d0.zip |
Checkboxradio: Adjust rule order to avoid specificty issues with other icons
Fixes #15003
Closes gh-1725
-rw-r--r-- | themes/base/theme.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/base/theme.css b/themes/base/theme.css index e0ca09acc..bfdf9b7c0 100644 --- a/themes/base/theme.css +++ b/themes/base/theme.css @@ -201,9 +201,6 @@ a.ui-button:active, .ui-widget-header .ui-icon { background-image: url("images/ui-icons_444444_256x240.png")/*{iconsHeader}*/; } -.ui-button .ui-icon { - background-image: url("images/ui-icons_777777_256x240.png")/*{iconsDefault}*/; -} .ui-state-hover .ui-icon, .ui-state-focus .ui-icon, .ui-button:hover .ui-icon, @@ -223,6 +220,9 @@ a.ui-button:active, .ui-state-error-text .ui-icon { background-image: url("images/ui-icons_cc0000_256x240.png")/*{iconsError}*/; } +.ui-button .ui-icon { + background-image: url("images/ui-icons_777777_256x240.png")/*{iconsDefault}*/; +} /* positioning */ .ui-icon-blank { background-position: 16px 16px; } |