Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Arrows next to all bookmarks, not just folders

  • 4 பதிலளிப்புகள்
  • 1 இந்த பிரச்சனை உள்ளது
  • 12 views
  • Last reply by cor-el

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
Attached screenshots

தீர்வு தேர்ந்தெடுக்கப்பட்டது

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)

Read this answer in context 👍 1

All Replies (4)

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 மூலமாக திருத்தப்பட்டது

தீர்வு தேர்ந்தெடுக்கப்பட்டது

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 மூலமாக திருத்தப்பட்டது

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

You're welcome.

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