mdb-ui-kit/sass/_radios.scss

131 lines
2.7 KiB
SCSS
Raw Normal View History

// This file has been autogenerated by grunt task lessToSass. Any changes will be overwritten.
2014-10-03 15:58:24 +04:00
.form-horizontal .radio {
margin-bottom: 10px;
2014-10-03 15:58:24 +04:00
}
2015-11-18 23:53:05 +03:00
@mixin form-group-radio-variant($placeholder-font-size, $line-height){
.radio {
label {
font-size: $placeholder-font-size;
line-height: $line-height;
font-weight: normal;
}
}
}
.form-group {
// default label size/location
@include form-group-radio-variant($md-input-font-size-base, $md-input-line-height-base);
// sm label size/location
&.form-group-sm {
@include form-group-radio-variant($md-input-font-size-small, $md-input-line-height-small);
}
// lg label size/location
&.form-group-lg {
@include form-group-radio-variant($md-input-font-size-large, $md-input-line-height-large);
}
}
2014-10-03 15:58:24 +04:00
.radio {
label {
cursor: pointer;
padding-left: 45px;
position: relative;
2015-11-18 23:53:05 +03:00
color: $radio-label-color;
span {
display: block;
position: absolute;
left: 10px;
top: 2px;
transition-duration: 0.2s;
2014-10-03 15:58:24 +04:00
}
.circle {
2015-11-18 23:53:05 +03:00
border: 2px solid $radio-border-color;
height: 15px;
width: 15px;
border-radius: 100%;
2014-10-03 15:58:24 +04:00
}
.check {
height: 15px;
width: 15px;
border-radius: 100%;
background-color: $radio-default;
transform: scale3d(0, 0, 0);
}
.check:after {
display: block;
position: absolute;
content: "";
background-color: $lightbg-text;
left: -18px;
top: -18px;
height: 50px;
width: 50px;
border-radius: 100%;
z-index: 1;
opacity: 0;
margin: 0;
transform: scale3d(1.5, 1.5, 1);
2014-10-03 15:58:24 +04:00
}
input[type=radio]:not(:checked) ~ .check:after {
animation: rippleOff 500ms;
2014-10-03 15:58:24 +04:00
}
input[type=radio]:checked ~ .check:after {
animation: rippleOn 500ms;
2014-10-03 15:58:24 +04:00
}
}
@include variations(unquote(" input[type=radio]:checked ~ .check"), background-color, $radio-default);
@include variations(unquote(" input[type=radio]:checked ~ .circle"), border-color, $radio-default);
input[type=radio][disabled] ~ .check,
input[type=radio][disabled] ~ .circle {
opacity: 0.5;
}
input[type=radio] {
opacity: 0;
height: 0;
width: 0;
overflow: hidden;
}
input[type=radio]:checked ~ .check {
transform: scale3d(0.55, 0.55, 1);
}
input[type=radio][disabled] ~ .circle {
border-color: $lightbg-text;
}
input[type=radio][disabled] ~ .check {
background-color: $lightbg-text;
}
2014-10-03 15:58:24 +04:00
}
@keyframes rippleOn {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
2014-10-03 15:58:24 +04:00
}
@keyframes rippleOff {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
2014-10-03 15:58:24 +04:00
}