From 576b7d2bd53b946bacb30b8dc9950b896c21f6e1 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Mon, 30 Oct 2023 06:47:44 +0200 Subject: [PATCH] curved tabs: Use :last-of-type instead of [last-visible-tab] The attribute hasn't existed for some time --- chrome/curved_tabs.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/curved_tabs.css b/chrome/curved_tabs.css index ce3e8b9..c6ea625 100644 --- a/chrome/curved_tabs.css +++ b/chrome/curved_tabs.css @@ -101,7 +101,7 @@ See the above repository for updates as well as full license text. */ } /* Annoying fix to prevent hovering of last tab to trigger tab overflow, better solution wanted */ -.tabbrowser-tab[last-visible-tab]{ margin-inline-end: var(--uc-tab-curve-size) !important; } +.tabbrowser-tab:last-of-type{ margin-inline-end: var(--uc-tab-curve-size) !important; } /* Move tabs a bit away from the window edge, otherwise the left-most pinned tab might be partially outside of window */ #tabbrowser-tabs[positionpinnedtabs]{ margin-left: var(--uc-tab-curve-size) }