Merge pull request #2677 from Bnyro/master

Highlight links in video description
This commit is contained in:
Bnyro 2023-07-17 10:51:02 +02:00 committed by GitHub
commit 7317fc9a75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>