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 replies
  • 1 has this problem
  • 8 views
  • Paskiausią atsakymą parašė 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
Pridėtos ekrano nuotraukos

Chosen solution

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)

Skaityti atsakymą kartu su kontekstu 👍 1

All Replies (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;}

)

Modified by liamcrean

more options

Chosen Solution

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)

Modified by 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).