style:去除按钮hover的背景色

This commit is contained in:
zhangyu
2021-03-31 17:25:27 +08:00
parent 52f825c87f
commit a5febe4bcf
2 changed files with 3 additions and 4 deletions

View File

@@ -75,10 +75,10 @@
padding: 6px 8px; padding: 6px 8px;
} }
.multiple-time-datepicker-enter-active { .multiple-time-datepicker-enter-active {
animation: bounce-in .6s; animation: bounce-in .5s;
} }
.multiple-time-datepicker-leave-active { .multiple-time-datepicker-leave-active {
animation: bounce-in .6s reverse; animation: bounce-in .5s reverse;
} }
@keyframes bounce-in { @keyframes bounce-in {
0% { 0% {
@@ -437,7 +437,7 @@ export default {
id: 12, id: 12,
text: this.$t('dashboard.panel.noDate') text: this.$t('dashboard.panel.noDate')
} }
}, 600) }, 500)
this.$emit('change', this.searchTime) this.$emit('change', this.searchTime)
} else { } else {
this.searchTime = [] this.searchTime = []

View File

@@ -907,7 +907,6 @@ export default {
} }
button:hover { button:hover {
background: $btn-light-background-color-hover;
} }
} }