搜尋 Mozilla 技術支援網站

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

Learn More

allow zero length book mark names

  • 3 回覆
  • 1 有這個問題
  • 15 次檢視
  • 最近回覆由 Mrdrew

more options

Bookmarks frequently have helpful cute little icons next to them. I like to rename many of my bookmarks (the Google ones) with zero length names - but the folder that drops down is still wide to accomodate the "Open in all tabs." This could be a bit better.

Bookmarks frequently have helpful cute little icons next to them. I like to rename many of my bookmarks (the Google ones) with zero length names - but the folder that drops down is still wide to accomodate the "Open in all tabs." This could be a bit better.
附加的畫面擷圖

被選擇的解決方法

That would be this code in userChrome.css.


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

menuseparator.bookmarks-actions-menuseparator,
menuitem.openintabs-menuitem {
 display:none!important;
}
從原來的回覆中察看解決方案 👍 1

所有回覆 (3)

more options

With the correct userChrome.css it is possible to hide that "Open All in Tabs" line, and that should allow that field to collapse.

This package for userChrome.css has all the codes, just a matter of reviewing each .css file to find the correct one to use. https://github.com/stonecrusher/simpleMenuWizard

more options

選擇的解決方法

That would be this code in userChrome.css.


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

menuseparator.bookmarks-actions-menuseparator,
menuitem.openintabs-menuitem {
 display:none!important;
}
more options

Thank you. I also had to refer to this site for the rest of the setup https://www.userchrome.org/how-create-userchrome-css.html