Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Theme: Correct border-radius for checkbox-off. Fixes #6238.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspermdegroot committed Jul 30, 2013
1 parent e6eaab6 commit 9c53458
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions css/themes/default/jquery.mobile.theme.css
Expand Up @@ -168,8 +168,8 @@ html .ui-btn.ui-icon-radio-on:after {
filter: Alpha(Opacity=30);
opacity: .3;
}
.ui-btn.ui-icon-checkbox-off:after,
.ui-btn.ui-icon-checkbox-on:after {
html .ui-btn.ui-icon-checkbox-off:after,
html .ui-btn.ui-icon-radio-off:after {
-webkit-border-radius: .1875em;
border-radius: .1875em;
}
Expand Down

1 comment on commit 9c53458

@jaspermdegroot
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That radio-off class was a mistake. Fixed that with this commit 33ae224.

Please sign in to comment.