Skip to content
Snippets Groups Projects
Unverified Commit 8cbf7c9e authored by Ulrik de Muelenaere's avatar Ulrik de Muelenaere Committed by Oliver Smith
Browse files

userChrome/tabmenu: Fix height of tab menu in FF 113 (MR 31)

Without this fix, the tab menu is only tall enough for 2 or 3 entries.

This is an update of the rule directly above it, changing the ID and
changing from a calculated height to a fixed height matching its child
#allTabsMenu-allTabsView. With the calculated height, the menu entries
were offset above the top of the menu. The previous rule no longer seems
to be necessary, at least in Firefox 102 and newer, since
#allTabsMenu-multiView does not exist.
parent 3dcfd01d
No related branches found
No related tags found
1 merge request!31Fix bottom navigation bar and tab menu in FF 113
......@@ -67,11 +67,16 @@
overflow-y: hidden !important;
}
#allTabsMenu-multiView box.panel-viewstack {
#allTabsMenu-multiView box.panel-viewstack { /* before FF 102 or earlier */
/* Use the whole height */
height: calc(100vh - 100px) !important;
max-height: calc(100vh - 100px) !important;
}
#customizationui-widget-multiview box.panel-viewstack { /* since FF 113 */
/* Use the whole height */
height: 300px !important;
max-height: 300px !important;
}
#allTabsMenu-allTabsViewTabs {
/* Make sure tabs with long titles don't exceed the all tabs menu */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment