mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-02-21 15:42:01 -08:00
- `userChrome.tab.centered_content` -> `userChrome.centered.tab` - `userChrome.tab.centered_label` -> `userChrome.centered.tab.label` - `userChrome.bookmarkbar.centered` -> `userChrome.centered.bookmarkbar`
15 lines
452 B
SCSS
15 lines
452 B
SCSS
/* Based on https://github.com/MrOtherGuy/firefox-csshacks/blob/master/chrome/centered_tab_label.css */
|
|
.tab-label-container {
|
|
display: grid;
|
|
justify-content: safe center;
|
|
align-items: safe center;
|
|
}
|
|
.tab-label,
|
|
.tab-secondary-label {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tabbrowser-tab[selected]:not(:hover) .tab-label-container:not([textoverflow]),
|
|
.tabbrowser-tab:not(:hover,[pinned]) .tab-label-container:not([textoverflow]) {
|
|
margin-inline-end: 5px;
|
|
}
|