Fix: Centered Label - Prevent overflow and unwinding #508

This is next commit's follow-up.
8ffcd54697
This commit is contained in:
alstjr7375 2022-12-06 03:14:18 +09:00
parent 30e3219e00
commit cb83f1b452
2 changed files with 3 additions and 3 deletions

View file

@ -6971,7 +6971,7 @@
}
.tab-label,
.tab-secondary-label {
overflow: hidden;
overflow: clip;
}
.tabbrowser-tab[selected]:not(:hover) .tab-label-container:not([textoverflow]),
.tabbrowser-tab:not(:hover, [pinned]) .tab-label-container:not([textoverflow]) {

View file

@ -6,10 +6,10 @@
}
.tab-label,
.tab-secondary-label {
overflow: hidden;
overflow: clip;
}
.tabbrowser-tab[selected]:not(:hover) .tab-label-container:not([textoverflow]),
.tabbrowser-tab:not(:hover,[pinned]) .tab-label-container:not([textoverflow]) {
margin-inline-end: 5px;
margin-inline-end: 5px; // userChrome.tab.close_button_at_hover 6px - 1px
}