Can't hide "Show All Bookmarks" in bookmarks menu in Fx 30
Before, in Fx 29, I was able to hide the "Show All Bookmarks Ctrl+Shift+B" link in the bookmarks menu by adding this line of code into my userChrome.css file:
- BMB_bookmarksShowAll { display: none !important; }
With Fx 30, however, this does not seem to work. I am trying to hide that link in the menu that pops up when using the bookmarks button, not the menu bar. Thanks!
선택된 해결법
Current Firefox releases have two of those "Show All Bookmarks" items: one on the top and one at the bottom of the list.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #BMB_bookmarksShowAllTop, #BMB_bookmarksShowAll { display:none!important; }
문맥에 따라 이 답변을 읽어주세요 👍 3
모든 댓글 (2)
선택된 해결법
Current Firefox releases have two of those "Show All Bookmarks" items: one on the top and one at the bottom of the list.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #BMB_bookmarksShowAllTop, #BMB_bookmarksShowAll { display:none!important; }
Yep, that worked. Thanks