搜尋 Mozilla 技術支援網站

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

Learn More

Arrows next to all bookmarks, not just folders

  • 4 回覆
  • 1 有這個問題
  • 12 次檢視
  • 最近回覆由 cor-el

more options

Hello

When I upgraded to v62.0 I noticed that all bookmarks in my toolbar have arrows/chevrons. not just folders. It's a really weird UI change. Any idea how to only show on folders?

Thanks

Hello When I upgraded to v62.0 I noticed that all bookmarks in my toolbar have arrows/chevrons. not just folders. It's a really weird UI change. Any idea how to only show on folders? Thanks
附加的畫面擷圖

被選擇的解決方法

You would normally apply such a rule only to folders (container).

#personal-bookmarks .bookmark-item[container="true"] > .toolbarbutton-menu-dropmarker {
display: -moz-box !important;
}

(edited to fix a pasting typo)

從原來的回覆中察看解決方案 👍 1

所有回覆 (4)

more options

Oh. I forgot I was using some custom CSS

This line of CSS in Chrome/userChrome.css resolved my issue:

.bookmark-item[type="menu"] > .toolbarbutton-menu-dropmarker {display: -moz-box !important;}

)

由 liamcrean 於 修改

more options

選擇的解決方法

You would normally apply such a rule only to folders (container).

#personal-bookmarks .bookmark-item[container="true"] > .toolbarbutton-menu-dropmarker {
display: -moz-box !important;
}

(edited to fix a pasting typo)

由 cor-el 於 修改

more options

Thanks. Although my method worked - it'd probably fail eventually - so better to go the right way. Ta.

more options

You're welcome.

I noticed that a stray 'm' somehow got in the code (mdisplay => display).