Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Why can I not separate the stupid "Bookmark This Page" Star from "Show your Bookmarks"? I never use that Star

more options

Why can I not separate the stupid "Bookmark This Page" Star from "Show your Bookmarks"? I never use that star and now it's all I click on when trying to open my Bookmarks. Very annoying

Why can I not separate the stupid "Bookmark This Page" Star from "Show your Bookmarks"? I never use that star and now it's all I click on when trying to open my Bookmarks. Very annoying

被采纳的解决方案

If you want to remove the ★ star icon,

  1. Install Stylish and restart Firefox when prompted.
  2. Click the ≡ Menu Button and choose Add-ons.
  3. In the Add-ons Manager, click User Styles on the left.
  4. Click the Write New Style button at the top. Paste the following in the text box, give the style a name, then click the Save button.
    • You may need to adjust the margin values to get the Ctrl+D bookmark popup aligned properly on your system.

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

/* Title: Remove the bookmark star in Firefox 29+ 
Author: http://forums.mozillazine.org/memberlist.php?mode=viewprofile&u=261941 */

#bookmarks-menu-button > .toolbarbutton-menubutton-button {
  visibility: collapse !important;
}

#bookmarks-menu-button > .toolbarbutton-menubutton-dropmarker::before {
  display: none !important;
}

#editBookmarkPanel {
  margin-top: 32px !important;
  -moz-margin-end: -34px !important;
}

If you don't want to install an add-on, you can use the userChrome.css file instead, but I don't recommend it.

定位到答案原位置 👍 2

所有回复 (1)

more options

选择的解决方案

If you want to remove the ★ star icon,

  1. Install Stylish and restart Firefox when prompted.
  2. Click the ≡ Menu Button and choose Add-ons.
  3. In the Add-ons Manager, click User Styles on the left.
  4. Click the Write New Style button at the top. Paste the following in the text box, give the style a name, then click the Save button.
    • You may need to adjust the margin values to get the Ctrl+D bookmark popup aligned properly on your system.

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

/* Title: Remove the bookmark star in Firefox 29+ 
Author: http://forums.mozillazine.org/memberlist.php?mode=viewprofile&u=261941 */

#bookmarks-menu-button > .toolbarbutton-menubutton-button {
  visibility: collapse !important;
}

#bookmarks-menu-button > .toolbarbutton-menubutton-dropmarker::before {
  display: none !important;
}

#editBookmarkPanel {
  margin-top: 32px !important;
  -moz-margin-end: -34px !important;
}

If you don't want to install an add-on, you can use the userChrome.css file instead, but I don't recommend it.

由Gingerbread Man于修改