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;