#799: stop the active 'Server Playlists' sync tab stretching full-width

A leftover `.sync-tab-server { flex: 1.4 !important }` from the old equal-width
pills tab strip leaked past the brand-chip restyle (its !important beat the
chip's flex:0 0 auto), so the active Server Playlists pill spanned the whole row
instead of fitting its label. Dropped just that declaration — the tab now behaves
like every other chip; its bespoke gradient + the rest of the rule are untouched.
This commit is contained in:
BoulderBadgeDad 2026-06-05 11:20:12 -07:00
parent 0f3c374137
commit e7a50159e8

View file

@ -13670,7 +13670,10 @@ body.helper-mode-active #dashboard-activity-feed:hover {
/* Server tab — prominent first tab */
.sync-tab-server {
flex: 1.4 !important;
/* No flex-grow: behave like every other brand chip (flex:0 0 auto from
.sync-tab-button). The old "equal-width pills" strip stretched this tab
with `flex:1.4 !important`, which leaked past the chip restyle and made
the active Server Playlists pill span the whole row (#799). */
font-size: 12px;
letter-spacing: 0.02em;
position: relative;