At some point recently, the background colour of about:config started changing to white when my search reaches the third letter. Below is the code in userContent.css. What do I need to add?
@-moz-document url-prefix("about:"), url-prefix("chrome://"), url-prefix("resource://"){ :root { --in-content-page-color: #000080 ; --in-content-text-color: #000080 ; --in-content-page-background: #dbc3a3 ; --in-content-box-background: #e2cfb6 ; --in-content-deemphasized-text: var(--in-content-text-color) ; scrollbar-color: #6495ed #d9d9d9 ; --background-color-box: var(--in-content-page-background) ; --text-color: var(--in-content-text-color) ; color:var(--in-content-text-color) ; }
Thanks. I have added a closing bracket and restarted. There is no change.
First, an image showing the colour set in userContent.css when only two letters of the search are typed. https://imgur.com/fLdLN5b Secondly, an image showing the colour change to white when I type the third letter of the search. I expect the colour to remain as set in the css code. https://imgur.com/XqiZ1Wx Thirdly, an image showing the same colour change when I choose to show only altered preferences. https://imgur.com/kYlb9QR
I don’t know if the alternate row color is what you want here, but you could add these:
--background-color-canvas: var(--in-content-page-background) !important; --table-row-background-color-alternate: var(--in-content-box-background) !important;
Many thanks