From 3d1f189293678abcb3f4a52b8ab52c2667767567 Mon Sep 17 00:00:00 2001 From: Ching L Date: Thu, 4 Dec 2025 01:17:49 +0800 Subject: [PATCH] fix: directly resize image instead of using transform, override positioning --- sortbylikecount.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/sortbylikecount.js b/sortbylikecount.js index 3b7ada7..d263610 100644 --- a/sortbylikecount.js +++ b/sortbylikecount.js @@ -97,9 +97,16 @@ height: 50px !important; overflow: hidden; } - .plyr__preview-thumb__image-container img { - transform: scale(0.35) !important; - transform-origin: top left !important; + .plyr__preview-thumb__image-container img, + div.plyr__preview-thumb__image-container img { + width: 89px !important; + height: 50px !important; + object-fit: cover !important; + min-width: unset !important; + min-height: unset !important; + transform: none !important; + left: 0 !important; + top: 0 !important; } `; document.head.appendChild(style);