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!

  • @Godie
    link
    1
    edit-2
    1 year ago

    Use this format to englobe all urls in about:preferences page:

    @-moz-document url-prefix(about:preferences){...}

    Edit: maybe you want something like this:

    window, dialog{
        --in-content-border-color: red !important;
    }