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

63 lines
1.4 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;
& > span {
font-size: 1rem;
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;
2020-04-02 12:20:57 +00:00
margin-right: 9px;
border: 2px solid #666;
}
& > .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);
}
&.checked > .btn {
2019-11-10 10:08:44 +00:00
border-color: $color-button;
& > .focus-mark {
2019-11-10 10:08:44 +00:00
background-color: rgba($color-button, .15);
}
}
&.disabled {
cursor: inherit;
&.checked > .btn {
border-color: $color-font-secondary;
}
}
&.readonly {
cursor: inherit;
}
&:focus:not(.disabled) > .btn > .focus-mark {
transform: scale3d(1, 1, 1);
}
}