Fix: Tab Bar - Overflow left button

This commit is contained in:
alstjr7375 2023-09-01 16:15:14 +09:00
parent 017bc24aa6
commit 4cc3dcc449
3 changed files with 14 additions and 3 deletions

5
css/leptonChrome.css generated
View file

@ -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) {

View file

@ -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) {

View file

@ -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;
}
}
}
}