naive-ui/styles/TimePicker.scss

120 lines
3.4 KiB
SCSS
Raw Normal View History

2019-07-24 16:32:21 +08:00
@import "./mixins/mixins.scss";
2020-02-11 14:44:29 +08:00
2019-10-17 23:16:38 +08:00
@include themes-mixin {
@include once {
@include b(time-picker) {
position: relative;
2019-10-17 23:16:38 +08:00
display: inline-block;
}
}
@include b(time-picker) {
@include m(invalid) {
& > {
@include b(input) {
@include e(input) {
2020-02-21 14:59:17 +08:00
@include once {
text-decoration: line-through;
}
text-decoration-color: map-get($--time-picker-text-decoration-color, 'default');
}
}
}
}
@include m(transition-disabled) {
& > {
@include b(input) {
input {
transition: none;
}
}
}
}
}
2019-10-17 23:16:38 +08:00
@include b(time-picker-selector) {
@include once {
outline: none;
2019-10-17 23:16:38 +08:00
font-size: 12px;
2020-02-28 22:57:10 +08:00
border-radius: $--n-time-picker-border-radius;
2019-10-17 23:16:38 +08:00
margin: 4px 0;
min-width: 104px;
2019-10-17 23:16:38 +08:00
overflow: hidden;
@include fade-in-scale-up-transition(time-picker);
@include b(time-picker-selector-actions) {
height: 38px;
align-items: center;
2019-10-17 23:16:38 +08:00
display: flex;
2020-02-26 16:05:13 +08:00
justify-content: space-evenly;
@include e(confirm) {
@include m(disabled) {
cursor: not-allowed;
opacity: 0.5;
}
}
}
2019-10-17 23:16:38 +08:00
}
background-color: $--time-picker-background-color;
box-shadow: $--time-picker-box-shadow;
2019-10-17 23:16:38 +08:00
@include b(time-picker-selector-time) {
@include once {
height: 224px;
2019-10-17 23:16:38 +08:00
display: flex;
position: relative;
}
2019-10-17 23:16:38 +08:00
border-bottom: 1px solid $--time-picker-divider-color;
}
2019-10-17 23:16:38 +08:00
@include b(time-picker-selector-time-row) {
@include once {
2020-02-26 16:05:13 +08:00
flex-grow: 1;
min-width: 52px;
height: 224px;
2019-10-17 23:16:38 +08:00
flex-direction: column;
transition: box-shadow .3s $--n-ease-in-out-cubic-bezier;
@include m(transition-disabled) {
@include e(item) {
transition: background-color .3s $--n-ease-in-out-cubic-bezier, opacity .3s $--n-ease-in-out-cubic-bezier;
}
}
2019-10-17 23:16:38 +08:00
}
@include e(item) {
@include once {
cursor: pointer;
height: 32px;
2019-10-17 23:16:38 +08:00
display: flex;
align-items: center;
justify-content: center;
transition: color .3s $--n-ease-in-out-cubic-bezier, background-color .3s $--n-ease-in-out-cubic-bezier, opacity .3s $--n-ease-in-out-cubic-bezier, text-decoration-color .3s $--n-ease-in-out-cubic-bezier;
background: transparent;
2019-10-17 23:16:38 +08:00
}
text-decoration-color: transparent;
2019-10-17 23:16:38 +08:00
color: map-get($--time-picker-text-color, 'default');
@include not-m(disabled) {
&:hover {
background-color: map-get($--time-picker-item-background-color, 'hover');
}
2019-10-17 23:16:38 +08:00
}
@include m(active) {
background-color: map-get($--time-picker-item-background-color, 'hover');
2019-10-17 23:16:38 +08:00
color: map-get($--time-picker-text-color, 'active');
}
@include m(disabled) {
2020-02-21 14:59:17 +08:00
opacity: $--time-picker-item-disabled-opacity;
@include once {
cursor: not-allowed;
}
}
2019-10-17 23:16:38 +08:00
}
@include m(invalid) {
@include e(item) {
@include m(active) {
2020-02-21 14:59:17 +08:00
@include once {
text-decoration: line-through;
}
background-color: map-get($--time-picker-item-background-color, 'invalid');
text-decoration-color: map-get($--time-picker-text-decoration-color, 'active');
}
}
}
}
}
2019-10-17 23:16:38 +08:00
}