fix(webui): read button link underline on hover

This commit is contained in:
Gauthier Roebroeck 2020-07-05 12:57:36 +08:00
parent e04ad3c844
commit 863258d8be

View file

@ -94,7 +94,7 @@
<!-- Description--> <!-- Description-->
<template v-if="!thumbnailOnly"> <template v-if="!thumbnailOnly">
<router-link :to="to"> <router-link :to="to" class="link-underline">
<v-card-subtitle <v-card-subtitle
v-line-clamp="2" v-line-clamp="2"
v-bind="subtitleProps" v-bind="subtitleProps"
@ -286,11 +286,11 @@ export default Vue.extend({
z-index: 2; z-index: 2;
} }
.item-card a { .link-underline {
text-decoration: none; text-decoration: none;
} }
.item-card a:hover { .link-underline:hover {
text-decoration: underline; text-decoration: underline;
text-decoration-color: black; text-decoration-color: black;
} }