salix/front/core/components/toggle/style.scss

56 lines
1.2 KiB
SCSS
Raw Normal View History

@import "variables";
.vn-toggle {
position: relative;
cursor: pointer;
2019-10-09 22:47:29 +00:00
display: inline-flex;
align-items: center;
outline: none;
&.disabled {
cursor: inherit;
}
& > span {
2019-10-18 20:28:08 +00:00
font-size: $font-size;
2019-10-18 19:36:30 +00:00
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
& > .btn {
position: relative;
box-sizing: border-box;
display: inline-block;
vertical-align: middle;
width: 20px;
height: 20px;
2019-10-09 22:47:29 +00:00
min-width: 20px;
margin: 6px 0;
2019-10-09 22:47:29 +00:00
margin-right: .6em;
border: 2px solid #666;
}
&.checked > .btn {
border-color: $color-main;
& > .focus-mark {
background-color: rgba($color-main, .15);
}
}
& > .btn > .focus-mark {
position: absolute;
top: 50%;
left: 50%;
height: 38px;
width: 38px;
margin-top: -19px;
margin-left: -19px;
border-radius: 50%;
transform: scale3d(0, 0, 0);
transition: background 250ms;
transition: transform 250ms;
background-color: rgba(0, 0, 0, .1);
}
&:focus:not(.disabled) > .btn > .focus-mark {
transform: scale3d(1, 1, 1);
}
}