From f771a5a7ecedbfae190148d0e74078ca1a19956e Mon Sep 17 00:00:00 2001 From: mini-bomba <55105495+mini-bomba@users.noreply.github.com> Date: Sun, 7 May 2023 14:25:55 +0200 Subject: [PATCH] Set min width of previewbar segments to 1px This fixes short segments on long videos not appearing at all in small embeds --- public/content.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/content.css b/public/content.css index 0db991c9..71ff7f37 100644 --- a/public/content.css +++ b/public/content.css @@ -45,6 +45,7 @@ div:hover > #previewbar.sbNotInvidious { .previewbar { display: inline-block; height: 100%; + min-width: 1px; } .previewbar.requiredSegment { @@ -250,7 +251,7 @@ div:hover > .sponsorBlockChapterBar { } .exportCopiedNotice .sponsorSkipNoticeTableContainer { - background-color: transparent; + background-color: transparent; } .sponsorSkipNotice { @@ -847,4 +848,4 @@ input::-webkit-inner-spin-button { .sponsorThumbnailLabel:hover span { display: inline; -} \ No newline at end of file +}