Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla サポートの検索

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

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Way to hide context menu icons via userChrome.css (FF Nightly)?

  • 9 件の返信
  • 1 人がこの問題に困っています
  • 7 回表示
  • 最後の返信者: Picgi

more options

Is there a Firefox tweak to completely hide context menu (right menu) icons? userChrome.css solutions are walcome.

Is there a Firefox tweak to completely hide context menu (right menu) icons? userChrome.css solutions are walcome.

選ばれた解決策

Replace the original style I posted with the updated version. Does it get rid of the remaining unwanted icons?

この回答をすべて読む 👍 0

すべての返信 (9)

more options

Firefox doesn't have context menu icons. Any icons you have in the context menu are added by add-ons. This should hide them:


@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* The above line should appear only once in userChrome.css */

#contentAreaContextMenu image,
.textbox-contextmenu image,
#placesContext image {
  visibility: hidden !important;
}

この投稿は Gingerbread Man により に変更されました

more options

Ok, thank, but it is odd I cannot immagine which extension is doing this... Your line is working, but not with the url bar (I right click on it and I see icons for "Undo", "Paste" and "Select all" item) nor with the bookmarks.

more options

Please provide a list of extensions and maybe one of use will recognize the culprit. Or, maybe you're using Stylish and have a userstyle that you forgot about installing?

more options

Try this;

Move your mouse to the top of the Firefox window, then right click. You will see a menu of the available toolbars. Select Customize. In the new window, look for the icon. When you find if, hold down the left button on it, and move it to where you want it to be. You can move any of the icons you want from here, but some icons are locked in place.

more options

@FredMcD What I see are icons in the right click menu (and only when I click on the Firefox interface, apparently) @the-edmeister No Stylish, but: Adblock plus, context search, dom inspector, dark background switcher, epubreader, flashgot, https-everywhere, mega, noscript, printedit, youtubeall html5

more options

選ばれた解決策

Replace the original style I posted with the updated version. Does it get rid of the remaining unwanted icons?

more options

YES! It does, thank you! How did you get the correct elements names? Using DOM inspector?

more options

Picgi wrote:

YES! It does, thank you!

You're welcome.

Picgi wrote:

How did you get the correct elements names? Using DOM inspector? 

Yes. Using the "Find a node to inspect by clicking on it" button is tricky when it comes to menus. You have to bring up the context menu using the Menu key on the keyboard instead of right-clicking, otherwise what you right-clicked will be inspected.

more options

It is tricky indeed, but when I found a last thing to correct (icons that appear on tabs right-click menu) I found also the Element Inspector addon which let me select the element shift-right clicking. So I added a rule to the list:

..previous rules..

.menu-iconic-left {

 visibility: hidden !important;

}

この投稿は Picgi により に変更されました