Skip to content

Commit

Permalink
Remove hovercard transition; Release v2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BowenYin committed Oct 10, 2020
1 parent 9b5be5f commit de38ffb
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ export default {
}
.hovercard {
height: 24px;
display: block;
display: none;
position: fixed;
overflow: hidden;
padding: 2px 6px 2px 7px;
Expand All @@ -392,25 +392,19 @@ export default {
line-height: 20px !important;
background-color: var(--v-accent-base);
color: #FFFFFF;
transition: visibility 75ms, opacity 75ms linear;
opacity: 0;
visibility: hidden;
}
div.regular-period .hovercard {
display: none;
}
a.regular-period:hover .hovercard, .lunch:hover .hovercard {
opacity: 0.8;
visibility: visible;
}
.hovercard-icon {
vertical-align: sub;
display: block;
}
@media (hover: none) {
.hovercard {
display: none;
display: none !important;
}
}
.hovercard-icon {
vertical-align: sub;
}
</style>
<style>
.v-timeline-item__dot {
Expand Down

0 comments on commit de38ffb

Please sign in to comment.