Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

Arrows next to all bookmarks, not just folders

  • 4 antwoorden
  • 1 heeft dit probleem
  • 23 weergaven
  • Laatste antwoord van 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
Gekoppelde schermafbeeldingen

Gekozen oplossing

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)

Dit antwoord in context lezen 👍 1

Alle antwoorden (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;}

)

Bewerkt door liamcrean op

more options

Gekozen oplossing

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)

Bewerkt door cor-el op

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