datguypiko / Firefox-Mod-Blur

Firefox Theme - For dark theme lovers / More compact / Modular / Blur
1.24k stars 59 forks source link

Remove folder icons from bookmars also removes favicons #114

Closed Vomau closed 7 months ago

Vomau commented 7 months ago

remove_folder_icons_from_bookmarks.css removes website favicons too.

This worked for me and only removed the folder icon: #personal-bookmarks .bookmark-item[container="true"] .toolbarbutton-icon { display:none!important; }

datguypiko commented 7 months ago

Fixed it.

Use this if you want folder icon if you remove the text from folders too.

#PlacesToolbar .bookmark-item[container]:not([label=""]) > .toolbarbutton-icon {
    display:none !important;
}