mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-09 04:31:35 +08:00
120 lines
3.4 KiB
SCSS
120 lines
3.4 KiB
SCSS
@import "./mixins/mixins.scss";
|
|
|
|
@include themes-mixin {
|
|
@include once {
|
|
@include b(time-picker) {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
@include b(time-picker) {
|
|
@include m(invalid) {
|
|
& > {
|
|
@include b(input) {
|
|
@include e(input) {
|
|
@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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@include b(time-picker-selector) {
|
|
@include once {
|
|
outline: none;
|
|
font-size: 12px;
|
|
border-radius: $--n-time-picker-border-radius;
|
|
margin: 4px 0;
|
|
min-width: 104px;
|
|
overflow: hidden;
|
|
@include fade-in-scale-up-transition(time-picker);
|
|
@include b(time-picker-selector-actions) {
|
|
height: 38px;
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
@include e(confirm) {
|
|
@include m(disabled) {
|
|
cursor: not-allowed;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
background-color: $--time-picker-background-color;
|
|
box-shadow: $--time-picker-box-shadow;
|
|
@include b(time-picker-selector-time) {
|
|
@include once {
|
|
height: 224px;
|
|
display: flex;
|
|
position: relative;
|
|
}
|
|
border-bottom: 1px solid $--time-picker-divider-color;
|
|
}
|
|
@include b(time-picker-selector-time-row) {
|
|
@include once {
|
|
flex-grow: 1;
|
|
min-width: 52px;
|
|
height: 224px;
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
@include e(item) {
|
|
@include once {
|
|
cursor: pointer;
|
|
height: 32px;
|
|
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;
|
|
}
|
|
text-decoration-color: transparent;
|
|
color: map-get($--time-picker-text-color, 'default');
|
|
@include not-m(disabled) {
|
|
&:hover {
|
|
background-color: map-get($--time-picker-item-background-color, 'hover');
|
|
}
|
|
}
|
|
@include m(active) {
|
|
background-color: map-get($--time-picker-item-background-color, 'hover');
|
|
color: map-get($--time-picker-text-color, 'active');
|
|
}
|
|
@include m(disabled) {
|
|
opacity: $--time-picker-item-disabled-opacity;
|
|
@include once {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|
|
@include m(invalid) {
|
|
@include e(item) {
|
|
@include m(active) {
|
|
@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');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|