rearrage use of radio classes

This commit is contained in:
Adam Bradley
2013-09-23 17:36:00 -05:00
parent f894d6befa
commit 4125f91daa
2 changed files with 15 additions and 15 deletions

View File

@ -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;