Files
ionic-framework/scss/ionic/_radio.scss
2013-10-17 09:30:30 -05:00

28 lines
668 B
SCSS

// Radio Buttons
// -------------------------------
.radio-buttton-list .list-item-content {
/* give some room to the right for the checkmark icon */
padding-right: $list-item-padding * 4;
}
.radio-buttton-list .list-item-icon {
/* checkmark icon will be hidden by default */
visibility: hidden;
}
.radio-buttton-list input[type="radio"] {
/* hide any radio button inputs elements (the ugly circles) */
display: none;
&:checked ~ .list-item-content {
/* style the list item content when its checked */
background: #f7f7f7;
}
&:checked ~ .list-item-icon {
/* show the checkmark icon when its checked */
visibility: visible;
}
}