
how to change the default bookmark icon using userChrome.css
I was using the following lines and they did the trick in previous versions but they don't work in v55.
#tabbrowser-tabs .tab-icon-image:not(src), .sidebar-placesTreechildren::-moz-tree-image(leaf), .bookmark-item:not(src):not([container]):not([type]):not([folder]) { list-style-image:url("net45.ico")!important;-moz-image-region:auto!important; } .bookmark-item:not([container]) { list-style-image:url("net45.ico")!important;-moz-image-region:auto!important;} treechildren::-moz-tree-image(leaf) { list-style-image:url("net45.ico")!important;-moz-image-region:auto!important;}
Thanks for any help.
I was using the following lines and they did the trick in previous versions but they don't work in v55.
<pre><nowiki>#tabbrowser-tabs .tab-icon-image:not(src), .sidebar-placesTreechildren::-moz-tree-image(leaf), .bookmark-item:not(src):not([container]):not([type]):not([folder]) {
list-style-image:url("net45.ico")!important;-moz-image-region:auto!important;
}
.bookmark-item:not([container]) {
list-style-image:url("net45.ico")!important;-moz-image-region:auto!important;}
treechildren::-moz-tree-image(leaf) {
list-style-image:url("net45.ico")!important;-moz-image-region:auto!important;}</nowiki></pre>
Thanks for any help.
Modified