mirror of
https://github.com/gotson/komga.git
synced 2026-05-09 05:10:19 +02:00
fix(webui): read button link underline on hover
This commit is contained in:
parent
e04ad3c844
commit
863258d8be
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue