mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Highlight links in video description
This commit is contained in:
parent
d82a93fd0b
commit
98faddaf97
1 changed files with 6 additions and 1 deletions
|
@ -158,7 +158,7 @@
|
|||
</span>
|
||||
|
||||
<!-- eslint-disable-next-line vue/no-v-html -->
|
||||
<div v-show="showDesc" class="break-words" v-html="purifyHTML(video.description)" />
|
||||
<div v-show="showDesc" class="break-words description" v-html="purifyHTML(video.description)" />
|
||||
<template v-if="showDesc">
|
||||
<div
|
||||
v-if="sponsors && sponsors.segments"
|
||||
|
@ -666,4 +666,9 @@ export default {
|
|||
opacity: 0;
|
||||
transform: translateX(100%) scale(0.5);
|
||||
}
|
||||
|
||||
.description a {
|
||||
text-decoration: underline;
|
||||
filter: brightness(0.75);
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue