搜尋 Mozilla 技術支援網站

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

了解更多

How can I change the obnoxious new Bookmarks format?

more options

I really hate the changes done to Bookmarks by the latest "it ain't broke but we'll fix it anyway" update. I used to use Classic Theme Restorer to get rid of the right-click icons (screenshot 01), but now they've gone and made it so CTR won't work anymore. I just want to get rid of the icons (go to an all-text dropdown menu like before), and get rid of that INCREDIBLY annoying and worthless screenshot box they shoved into the Bookmark dropdown (Screenshot 02). Is there a way to do that, either with an addon or some other way? Screenshots included for reference.

I really hate the changes done to Bookmarks by the latest "it ain't broke but we'll fix it anyway" update. I used to use Classic Theme Restorer to get rid of the right-click icons (screenshot 01), but now they've gone and made it so CTR won't work anymore. I just want to get rid of the icons (go to an all-text dropdown menu like before), and get rid of that INCREDIBLY annoying and worthless screenshot box they shoved into the Bookmark dropdown (Screenshot 02). Is there a way to do that, either with an addon or some other way? Screenshots included for reference.
附加的畫面擷圖

所有回覆 (2)

more options

Add code to the userChrome.css file below the default @namespace line.


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

/* BOOKMARK Edit panel - Hide Info Area */
*|div#editBookmarkPanelInfoArea { display:none !important; }

由 cor-el 於 修改

more options

The author of Classic Theme Restorer has valiantly maintained an updated set of style rules to implement most of the same features through a userChrome.css file. You can find that here:

https://github.com/Aris-t2/CustomCSSforFx


Meanwhile, I found an April 2017 hack for the context menu on Reddit (Restore Context Menu to Text Instead of Icons). I tweaked it a tiny bit and added comments to explain it:

/* Content Area Context Menu - Iconic Row */
/* Hide the four images */
#context-back image, #context-forward image,
#context-reload image, #context-stop image,
#context-bookmarkpage image{
  display: none !important;
}
/* Show the text labels */
#context-back:after, #context-forward:after,
#context-reload:after, #context-stop:after,
#context-bookmarkpage:after{
  content: attr(aria-label) !important;
}
/* on separate lines */
#context-navigation{
   -moz-box-orient: vertical !important;
}
/* left-justified (override centering) */
#context-navigation > .menuitem-iconic{
   -moz-box-pack: unset !important;
}
/* match indent of other menu items (hacky) */
#context-navigation .menuitem-iconic {
  padding-inline-start: 10px !important;
}

The number of pixels in the hacky rule at the end may need to be adjusted since spacing varies among Firefox themes. "Before and after" screenshot attached.