From 693d8b0bbd71ecdeb07dbf4de9aa4f004667451c Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Thu, 22 Apr 2021 13:00:49 +0300 Subject: [PATCH] use -inline-end instead of inline-start to add the border --- chrome/tab_separator_lines.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/chrome/tab_separator_lines.css b/chrome/tab_separator_lines.css index df4bfcc..5ff2b8c 100644 --- a/chrome/tab_separator_lines.css +++ b/chrome/tab_separator_lines.css @@ -4,8 +4,9 @@ See the above repository for updates as well as full license text. */ /* Bring back tab separator lines that were removed in Proton */ .tabbrowser-tab{ - border-inline-start: 1px solid !important; + border-inline-end: 1px solid transparent !important; border-image: 0 1 linear-gradient(transparent 20%,var(--toolbarseparator-color) 20%,var(--toolbarseparator-color) 80%,transparent 80%); } -.tabbrowser-tab[first-visible-tab], -.tabbrowser-tab[first-visible-unpinned-tab]{ border: none !important; } \ No newline at end of file +.tabbrowser-tab[selected], +.tabbrowser-tab[last-visible-tab], +.tabbrowser-tab[beforeselected-visible]{ border-image: none !important; } \ No newline at end of file