/* Firefox 150 */
/* pinned tabs остаются compact icons в верхнем ряду */
/* даже при expand on hover */
#pinned-tabs-container {
display: grid !important;
/* сколько иконок в ряд */
grid-template-columns: repeat(auto-fit, 40px) !important;
gap: 4px !important;
width: 100% !important;
height: fit-content !important;
min-height: fit-content !important;
margin-bottom: 8px !important;
}
/* сами pinned tabs */
#pinned-tabs-container .tabbrowser-tab {
width: 40px !important;
min-width: 40px !important;
max-width: 40px !important;
height: 40px !important;
min-height: 40px !important;
max-height: 40px !important;
}
/* скрыть текст pinned tabs */
#pinned-tabs-container .tab-label-container {
display: none !important;
}
/* separator */
#tabbrowser-tabs[expanded] > #vertical-pinned-tabs-container-separator {
display: block !important;
}