Hello!

How could I change the separator color in about:preferences in the translation section?

When I put my code in userContent in @ -moz-document url(“about:preferences#general”)

It doesn’t work, I guess that it’s because it opens up in a new window, but when I put it outside of it it works, the only problem with that is that I don’t know if it will also affect webpages.

Thanks!

  • Zethasu@fedia.ioOP
    link
    fedilink
    arrow-up
    1
    ·
    10 months ago

    I managed to do it with this:

    @-moz-document url("chrome://browser/content/preferences/dialogs/translations.xhtml"){
     #alwaysTranslateLanguagesTree > treecols:nth-child(1) > treecol:nth-child(1) {
      color: red !important;
     }
    }
    
    

    in userContent outside of @-moz-document url("about:preferences")