1

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.

enter image description here

How should I approach this?

Azulflame
  • 1,534
  • 2
  • 15
  • 30
ali
  • 61
  • 5

1 Answers1

1

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

Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265