Files
ionic-framework/scss/ionic/_radio.scss
2013-10-18 12:27:41 -05:00

35 lines
802 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 .radio-button-icon {
/* checkmark icon will be hidden by default */
position: absolute;
top: 0;
right: 0;
z-index: 3;
visibility: hidden;
padding: $list-item-padding - 2;
height: 100%;
font-size: 24px;
}
.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 ~ .radio-button-icon {
/* show the checkmark icon when its checked */
visibility: visible;
}
}