mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
16 lines
384 B
CSS
16 lines
384 B
CSS
/*Make pinned tab width shrink dynamically, similar to unpinned tab width.*/
|
|
|
|
#tabbrowser-arrowscrollbox:not([overflowing]) .tabbrowser-tab[pinned] {
|
|
flex-grow: 10;
|
|
-moz-box-flex: 10;
|
|
max-width: 32px;
|
|
}
|
|
|
|
#tabbrowser-arrowscrollbox:not([overflowing]) .tab-content[pinned] {
|
|
padding: 0px !important;
|
|
-moz-box-pack: center;
|
|
}
|
|
|
|
.tab-label-container[pinned] {
|
|
display: none;
|
|
}
|