Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

Arrows next to all bookmarks, not just folders

  • 4 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 26 προβολές
  • Τελευταία απάντηση από 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).