Replies: 1 comment 2 replies
-
If you need to modify pinned tabs like in your example, this code will hide the appearing label: .tabbrowser-tab[pinned] {
padding-left: 10px;
padding-right: 10px;
width: 40px;
}
.tabbrowser-tab[pinned] .tab-label-container {
display: none;
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a few pinned tabs, and want these to show only the icon so they take up less space. This was working a long time back but Ive since upgraded many things and it has broken.
To do this I've tried making the pinned tabs smaller with this:
however I've not worked out how to hide the text on the tab and so it still tries to show. Does anyone know what I should do to make this work?
Beta Was this translation helpful? Give feedback.
All reactions