mdb-ui-kit/less/_radios.less

116 lines
1.9 KiB
Plaintext
Raw Normal View History

2015-11-25 02:14:53 +03:00
.radio-color(@color, @opacity){
& ~ .check,
& ~ .circle {
opacity: @opacity;
}
& ~ .check {
background-color: @color;
}
& ~ .circle {
border-color: @color;
}
}
2014-08-18 18:25:33 +04:00
.radio {
2015-03-09 20:01:22 +03:00
label {
cursor: pointer;
padding-left: 45px;
position: relative;
color: @mdb-radio-label-color;
2015-03-09 20:01:22 +03:00
span {
display: block;
position: absolute;
left: 10px;
top: 2px;
transition-duration: 0.2s;
2014-08-18 18:25:33 +04:00
}
2015-03-09 20:01:22 +03:00
.circle {
2015-11-25 02:14:53 +03:00
border: 2px solid @mdb-radio-color-off;
2015-03-09 20:01:22 +03:00
height: 15px;
width: 15px;
border-radius: 100%;
2014-08-18 18:25:33 +04:00
}
2015-03-09 20:01:22 +03:00
.check {
height: 15px;
width: 15px;
border-radius: 100%;
2015-11-25 02:14:53 +03:00
background-color: @mdb-radio-color-on;
transform: scale3d(0, 0, 0);
2015-03-09 20:01:22 +03:00
}
.check:after {
display: block;
position: absolute;
content: "";
background-color: @mdb-text-color-primary;
2015-03-09 20:01:22 +03:00
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);
}
2015-03-09 20:01:22 +03:00
input[type=radio]:not(:checked) ~ .check:after {
animation: rippleOff 500ms;
2014-08-18 18:25:33 +04:00
}
2015-03-09 20:01:22 +03:00
input[type=radio]:checked ~ .check:after {
animation: rippleOn 500ms;
2014-08-18 18:25:33 +04:00
}
2015-03-09 20:01:22 +03:00
}
input[type=radio] {
opacity: 0;
height: 0;
width: 0;
overflow: hidden;
2015-11-25 02:14:53 +03:00
&:checked {
.radio-color(@mdb-radio-color-on, 1);
}
&:checked ~ .check {
transform: scale3d(0.55, 0.55, 1);
}
2015-03-09 22:56:57 +03:00
}
2015-11-25 02:14:53 +03:00
input[type=radio][disabled] {
// light theme spec: Disabled: #000000, Opacity 26%
.radio-color(@black, 0.26);
// dark theme spec: Disabled: #FFFFFF, Opacity 30%
.theme-dark & {
.radio-color(@white, 0.30);
}
2015-03-09 22:56:57 +03:00
}
2014-08-18 18:25:33 +04:00
}
2014-09-23 11:56:56 +04:00
2014-10-02 13:36:05 +04:00
@keyframes rippleOn {
2015-03-09 20:01:22 +03:00
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
2014-09-23 11:56:56 +04:00
}
2014-10-02 13:36:05 +04:00
@keyframes rippleOff {
2015-03-09 20:01:22 +03:00
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
2014-10-02 13:36:05 +04:00
}