É possível usar o arquivo userChrome.css :
To create this file, use your operating system tools.
Go to your profile folder (
%appdata%\Mozilla\Firefox\Profile\######.default
). Then go to the chrome folder there, creating it if necessary. In the chrome folder, create a plain text file named userChrome.css
Para modificar o ícone de uma pasta chamada test
, insira isso no arquivo userChrome.css
:
/*
* Do not remove the @namespace line -- it's required for correct functioning
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
#personal-bookmarks .bookmark-item[container][label="test"] {
list-style-image:url('gmail.png') !important;
-moz-image-region:auto !important;
}
Coloque o (s) ícone (s) da pasta na mesma pasta em que userChrome.css
reside
O resultado deve ser algo como isto: