I am trying to change the icon for read-only files in "Places". I want to see a lock icon for read-only files, such as tab icons.
How should I approach this?
I am trying to change the icon for read-only files in "Places". I want to see a lock icon for read-only files, such as tab icons.
How should I approach this?
Use a custom stylesheet with something like this:
@lockedimage: url('chrome://komodo/skin/images/locked-file_icon.png');
tab[widget="openfilesViewbox"]
{
.tab-icon[alt="Places"]
{
list-style-image: @lockedimage !important;
}
}
References