From b2e8cf07d4a2ccf4f8932e5e7d27d54e47376088 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Tue, 27 Apr 2021 15:30:47 +0900 Subject: [PATCH] Add: @muckSponge MaterialFox's Max Tab size Bigger, tab distance smaller --- userChrome.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/userChrome.css b/userChrome.css index 400f7a8..cf308a0 100644 --- a/userChrome.css +++ b/userChrome.css @@ -4,6 +4,12 @@ --toolbar-bgcolor: rgba(43, 42, 51, 5) !important; } + /* Tab - Max Size */ + .tabbrowser-tab[fadein]:not([pinned]):not([style*="max-width"]) + { + max-width: 240px !important; + } + /* Tab - Connect to window */ .tab-background { border-radius: var(--tab-border-radius) var(--tab-border-radius) 0px 0px !important; @@ -19,10 +25,16 @@ margin-bottom: 0px !important; } + /* neighbouring tabs should "pinch" together */ .tabbrowser-tab { padding-inline: 1px !important; } + .tabbrowser-tab:not([last-visible-tab]) + { + margin-inline-end: -.5px !important; + } + /* Selected Tab - Color like toolbar */ .tab-background[selected="true"] { background: var(--toolbar-bgcolor) !important;