Better style for disabled checked radio button

old
Javi Velasco 2015-10-06 20:03:46 +02:00
parent fedb8f1a02
commit b36230c9fb
1 changed files with 5 additions and 2 deletions

View File

@ -102,7 +102,10 @@ $radio-disabled-color: unquote("rgba(#{$color-black}, 0.26)") !default;
.radio-checked {
cursor: auto;
background-color: $radio-disabled-color;
border-color: transparent;
border-color: $radio-disabled-color;
&:before {
background-color: $radio-disabled-color;
}
}
}