fx 62 broke old userChrome setting

User Help for Mozilla Firefox
Post Reply
pleasejust
Posts: 40
Joined: August 11th, 2018, 6:09 am

fx 62 broke old userChrome setting

Post by pleasejust »

Hey. I don't like bookmark toolbar icons, so I get rid of them. I like to see just the text so I know exactly what each item is. However, the only thing to distinguish folder from bookmark is the icon. There used to be a folder arrow, which I've put back in thanks to someone on this forum who provided the code some time ago. I commented out stuff in my chrome file one by one and found out that fx 62 broke this:

/* BOOKMARKS TOOLBAR: folder arrows (put dropdown-arrow-inverted.svg in chrome folder) */
#personal-bookmarks .bookmark-item[container] > .toolbarbutton-menu-dropmarker{display:initial !important;
list-style-image: url("dropdown-arrow-inverted.svg") !important;}

Some weirdness happens with this. Some items in the bookmarks toolbar move down such that they appear cut off horizontally and folders won't open (pull down).

Is there an alternative? Thanks.
morat
Posts: 6394
Joined: February 3rd, 2009, 6:29 pm

Re: fx 62 broke old userChrome setting

Post by morat »

Try this:

Code: Select all

#personal-bookmarks .bookmark-item[container] > .toolbarbutton-menu-dropmarker {
  display: inherit !important;
  list-style-image: url("dropdown-arrow-inverted.svg") !important;
}
Test image
http://dxr.mozilla.org/mozilla-esr60/so ... -arrow.png
pleasejust
Posts: 40
Joined: August 11th, 2018, 6:09 am

Re: fx 62 broke old userChrome setting

Post by pleasejust »

Yes, changing initial to inherit worked. Thanks morat! You're the best.
Post Reply