Join the Mozilla’s Test Days event from Dec 2–8 to test the new Firefox address bar on Firefox Beta 134 and get a chance to win Mozilla swag vouchers! 🎁

This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Reduce the density only for the context menu

  • 2 (ردّان اثنان)
  • 0 have this problem
  • 23 views
  • آخر ردّ كتبه sfhowes

more options

I am using TB 115 with a Relaxed density. Almost all the elements are fine for me, but the context menu space that is there is a too big. I would like to reduce it. How to do it via userChrome.css ?

I am using TB 115 with a Relaxed density. Almost all the elements are fine for me, but the context menu space that is there is a too big. I would like to reduce it. How to do it via userChrome.css ?
Attached screenshots

الحل المُختار

Use this code in userChrome.css to set the density of context menus and Menu Bar menus when the default density is relaxed:

/* context menus, menu bar density */
menupopup > :is(menu, menuitem) {
    height: 15px !important;
}
Read this answer in context 👍 0

All Replies (2)

more options

I am not seeing the context menu density affected, at least on Mac.

What is your OS? Do you still see this issue?

more options

الحل المُختار

Use this code in userChrome.css to set the density of context menus and Menu Bar menus when the default density is relaxed:

/* context menus, menu bar density */
menupopup > :is(menu, menuitem) {
    height: 15px !important;
}