diff --git a/scss/ionic/_radio.scss b/scss/ionic/_radio.scss index 6fc335b847..a40bb884f1 100644 --- a/scss/ionic/_radio.scss +++ b/scss/ionic/_radio.scss @@ -3,21 +3,21 @@ // ------------------------------- /* hide a radio button's icon by default */ -.radio-content { +.radio-item { [class^="icon-"], [class*=" icon-"] { display: none; } } -.radio-item input { +.radio-list input[type="radio"] { /* hide any radio button inputs elements (the ugly circles) */ display: none; /* when this radio-item is checked */ - &:checked + .radio-content { + &:checked + .radio-item { - /* show the radio-content icon when checked */ + /* show the radio-item icon when checked */ [class^="icon-"], [class*=" icon-"] { position: absolute; diff --git a/test/input-radio.html b/test/input-radio.html index 3e2565e941..9643537b50 100644 --- a/test/input-radio.html +++ b/test/input-radio.html @@ -22,38 +22,38 @@