salix/front/core/components/wday-picker/style.scss

27 lines
562 B
SCSS
Raw Normal View History

2019-10-23 15:38:35 +00:00
@import "effects";
.vn-wday-picker {
2019-10-23 15:38:35 +00:00
text-align: center;
&:focus {
outline: solid 1px rgba(0, 0, 0, .1);
}
2019-10-23 15:38:35 +00:00
& > span {
@extend %clickable;
border-radius: 50%;
2020-04-02 12:20:57 +00:00
padding: 6px;
margin: 3px;
2019-10-23 15:38:35 +00:00
display: inline-flex;
width: 1.5em;
height: 1.5em;
justify-content: center;
align-items: center;
outline: none;
background-color: rgba(0, 0, 0, .05);
&.marked {
2019-11-10 10:08:44 +00:00
background: $color-button;
2019-10-23 15:38:35 +00:00
color: $color-font-dark;
}
}
}