mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-15 15:20:33 -08:00
Fix: Tab Bar - Overflow left button
This commit is contained in:
parent
017bc24aa6
commit
4cc3dcc449
3 changed files with 14 additions and 3 deletions
5
css/leptonChrome.css
generated
5
css/leptonChrome.css
generated
|
|
@ -4032,9 +4032,12 @@
|
|||
.tabbrowser-tab[pinned] {
|
||||
padding-inline: 1px !important;
|
||||
}
|
||||
.tabbrowser-tab:not([pinned]) {
|
||||
.tabbrowser-tab:not([pinned]):not(:first-of-type) {
|
||||
margin-inline: -1px !important;
|
||||
}
|
||||
.tabbrowser-tab:not([pinned]):first-of-type {
|
||||
margin-inline-end: -1px !important;
|
||||
}
|
||||
}
|
||||
@supports not -moz-bool-pref("userChrome.tabbar.multi_row") {
|
||||
#TabsToolbar:not([multibar]) .tabbrowser-tab:not(:last-of-type) {
|
||||
|
|
|
|||
5
css/leptonChromeESR.css
generated
5
css/leptonChromeESR.css
generated
|
|
@ -4355,9 +4355,12 @@
|
|||
.tabbrowser-tab[pinned] {
|
||||
padding-inline: 1px !important;
|
||||
}
|
||||
.tabbrowser-tab:not([pinned]) {
|
||||
.tabbrowser-tab:not([pinned]):not(:first-of-type) {
|
||||
margin-inline: -1px !important;
|
||||
}
|
||||
.tabbrowser-tab:not([pinned]):first-of-type {
|
||||
margin-inline-end: -1px !important;
|
||||
}
|
||||
}
|
||||
@supports not -moz-bool-pref("userChrome.tabbar.multi_row") {
|
||||
#TabsToolbar:not([multibar]) .tabbrowser-tab:not(:last-of-type) {
|
||||
|
|
|
|||
|
|
@ -107,7 +107,12 @@
|
|||
padding-inline: 1px !important;
|
||||
}
|
||||
&:not([pinned]) {
|
||||
margin-inline: -1px !important;
|
||||
&:not(:first-of-type) {
|
||||
margin-inline: -1px !important;
|
||||
}
|
||||
&:first-of-type {
|
||||
margin-inline-end: -1px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue