為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

How to make the Context Menu of Firefox 131.0.3 look like Ver. 100.0.1 ?

  • 5 回覆
  • 0 有這個問題
  • 最近回覆由 cor-el

more options

Is it possible to remove the border/frame lines around the Menu Bar and the Context Menu in Ver. 131.0.3 to make it look like Ver. 100.0.1.?

Experimenting with userChrome.css only seemed to change some things such as background color and padding size of the context menu, but as a css noob it’s no surprise it didn't work when trying to remove borders, remove margins.

Attached is a screenshot of Ver. 131.0.3 (upper) and which parts of the menus I'm looking to customize or revert back to the style of Ver. 100.0.1 (lower).

Tysm for you time. bteg

Is it possible to remove the border/frame lines around the Menu Bar and the Context Menu in Ver. 131.0.3 to make it look like Ver. 100.0.1.? Experimenting with userChrome.css only seemed to change some things such as background color and padding size of the context menu, but as a css noob it’s no surprise it didn't work when trying to remove borders, remove margins. Attached is a screenshot of Ver. 131.0.3 (upper) and which parts of the menus I'm looking to customize or revert back to the style of Ver. 100.0.1 (lower). Tysm for you time. bteg
附加的畫面擷圖

被選擇的解決方法

You've got a } missing after visibility: collapse; It should be:— @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* hides the native tabs */

#TabsToolbar {   visibility: collapse; }

/* Close-up gaps */

menupopup :is(menu, menuitem), .subviewbutton {   padding: 2px !important; }

/* Get rid of Borders */

* {   border-radius: 0 !important;   border: none !important; }

從原來的回覆中察看解決方案 👍 0

所有回覆 (5)

more options

This is what I use to close up the gaps in pop-up menus:—

menupopup :is(menu, menuitem), .subviewbutton {    padding: 2px !important; }

To get rid of the borders try:—

* { border-radius: 0 !important;     border: none !important; }

有幫助嗎?

more options

Ty Pillenwerfer, I'm probably missing something, being a beginner to css, because I tried your code but it didn't work, yet the old css code I got years ago to 'hide tabs' does work.

Here's all the code in my userChrome.css



@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* hides the native tabs */

  1. TabsToolbar {
 visibility: collapse;


menupopup :is(menu, menuitem), .subviewbutton {

  padding: 2px !important;

}


  • { border-radius: 0 !important;
   border: none !important;

}

有幫助嗎?

more options

選擇的解決方法

You've got a } missing after visibility: collapse; It should be:— @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* hides the native tabs */

#TabsToolbar {   visibility: collapse; }

/* Close-up gaps */

menupopup :is(menu, menuitem), .subviewbutton {   padding: 2px !important; }

/* Get rid of Borders */

* {   border-radius: 0 !important;   border: none !important; }

有幫助嗎?

more options

That worked perfectly.

Both the Right Click Context Menu and Menu-Bar drop downs look incredible.

Thanks a million Pillenwerfer

有幫助嗎?

more options

Note that best is to set the padding-block and not specify a single value for the padding as that includes padding-inline as well.

userChrome.css:

menupopup :is(menu, menuitem) {
  margin-block:-3px 0px !important;
  padding-block:0px 0px !important;
  min-height:21px !important; /*required to be able to go lower than 4px; adjust 21px-24px or none*/
}


有幫助嗎?

問個問題

如果您還沒有帳號,您必須先登入帳號 來回覆文章。還沒有帳號的話,只能發問新問題