MrOtherGuy / firefox-csshacks

Collection of userstyles affecting the browser
Mozilla Public License 2.0
3.13k stars 310 forks source link

Menu bug in new version of Firefox #322

Closed xmha97 closed 9 months ago

xmha97 commented 9 months ago

Menu bug in new version of Firefox

image

/* Import your desired components first */

@import url(chrome/compact_extensions_panel.css);
@import url(chrome/drag_window_from_urlbar.css);
@import url(chrome/floating_findbar_on_top.css);
@import url(chrome/hide_tabs_toolbar.css);
@import url(chrome/iconized_main_menu.css);
@import url(chrome/privatemode_indicator_as_menu_button.css);
@import url(chrome/status_inside_urlbar.css);
@import url(chrome/window_control_placeholder_support.css);

/* Apply your custom modifications after imports */

/* Hide sidebar header */
#sidebar-header {
    display: none;
}

/* Hide sidebar on Fullscreen */
#main-window[sizemode="fullscreen"] #sidebar-box {
    display: none;
}

/* Hide forward button */
#forward-button {
  display: none !important;
}
MrOtherGuy commented 9 months ago

Seems I forgot hide_tabs_toolbar.css while adding workarounds for Firefox 119 in #315

This should be fixed in faf9766

xmha97 commented 9 months ago

Thanks 🙏