From a0d1da9a36c3ee722db381cc1158d4c313b4f19c Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Sun, 25 Apr 2021 05:57:01 +0300 Subject: [PATCH] use box-ordinal-group instead of reversing box direction --- chrome/curved_tabs.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/chrome/curved_tabs.css b/chrome/curved_tabs.css index a0ba24f..955a488 100644 --- a/chrome/curved_tabs.css +++ b/chrome/curved_tabs.css @@ -56,8 +56,6 @@ See the above repository for updates as well as full license text. */ transform: scaleX(-1); } -.tab-background{ -moz-box-direction: reverse } - .tabbrowser-tab:hover > stack > .tab-background, .tab-background[selected]{ border-radius: var(--uc-tab-curve-size) var(--uc-tab-curve-size) 0 0 !important; @@ -73,6 +71,11 @@ See the above repository for updates as well as full license text. */ #scrollbutton-down{ border-block-width: var(--uc-tabs-scrollbutton-border,0px) !important; } .tab-background[selected]{ border: 1px solid var(--tabs-border-color) !important; border-bottom: none !important } +.tab-context-line{ + -moz-box-ordinal-group: 2; + margin-block: 0 !important; +} + /* 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; }