2015-11-05 17:25:02 +03:00
|
|
|
// This file has been autogenerated by grunt task lessToSass. Any changes will be overwritten.
|
2015-11-05 01:54:57 +03:00
|
|
|
|
2014-10-03 15:58:24 +04:00
|
|
|
.radio {
|
2015-11-02 23:39:13 +03:00
|
|
|
label {
|
|
|
|
cursor: pointer;
|
|
|
|
padding-left: 45px;
|
|
|
|
position: relative;
|
2015-11-21 19:37:35 +03:00
|
|
|
color: $mdb-radio-label-color;
|
2015-11-18 23:53:05 +03:00
|
|
|
|
2015-11-02 23:39:13 +03:00
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 10px;
|
|
|
|
top: 2px;
|
|
|
|
transition-duration: 0.2s;
|
2014-10-03 15:58:24 +04:00
|
|
|
}
|
2015-11-02 23:39:13 +03:00
|
|
|
.circle {
|
2015-11-21 19:37:35 +03:00
|
|
|
border: 2px solid $mdb-radio-border-color;
|
2015-11-02 23:39:13 +03:00
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
border-radius: 100%;
|
2014-10-03 15:58:24 +04:00
|
|
|
}
|
2015-11-02 23:39:13 +03:00
|
|
|
.check {
|
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
border-radius: 100%;
|
2015-11-21 19:37:35 +03:00
|
|
|
background-color: $mdb-radio-default;
|
2015-11-02 23:39:13 +03:00
|
|
|
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
|
|
|
}
|
2015-11-02 23:39:13 +03:00
|
|
|
input[type=radio]:not(:checked) ~ .check:after {
|
|
|
|
animation: rippleOff 500ms;
|
2014-10-03 15:58:24 +04:00
|
|
|
}
|
2015-11-02 23:39:13 +03:00
|
|
|
input[type=radio]:checked ~ .check:after {
|
|
|
|
animation: rippleOn 500ms;
|
2014-10-03 15:58:24 +04:00
|
|
|
}
|
|
|
|
|
2015-11-02 23:39:13 +03:00
|
|
|
}
|
2015-11-21 19:37:35 +03:00
|
|
|
@include variations(unquote(" input[type=radio]:checked ~ .check"), background-color, $mdb-radio-default);
|
|
|
|
@include variations(unquote(" input[type=radio]:checked ~ .circle"), border-color, $mdb-radio-default);
|
2015-11-02 23:39:13 +03:00
|
|
|
|
|
|
|
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 {
|
2015-11-02 23:39:13 +03:00
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
opacity: 0.2;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2014-10-03 15:58:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rippleOff {
|
2015-11-02 23:39:13 +03:00
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
opacity: 0.2;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2014-10-03 15:58:24 +04:00
|
|
|
}
|