userChrome/tabmenu: Fix max width of tab menu in FF >= 106 (MR 31)

This commit is contained in:
Ulrik de Muelenaere 2023-05-17 18:39:23 -04:00 committed by Oliver Smith
parent 8cbf7c9e30
commit 4a53e32a5c
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -78,7 +78,8 @@
max-height: 300px !important; max-height: 300px !important;
} }
#allTabsMenu-allTabsViewTabs { #allTabsMenu-allTabsViewTabs, /* before FF 106 */
#allTabsMenu-allTabsView-tabs { /* since FF 106 */
/* Make sure tabs with long titles don't exceed the all tabs menu */ /* Make sure tabs with long titles don't exceed the all tabs menu */
max-width: calc(100vw - 20px); max-width: calc(100vw - 20px);
} }