SignatureBox background color style no longer works

User Help for Mozilla Thunderbird
Post Reply
1618年
Posts: 13
Joined: September 19th, 2019, 5:17 pm

SignatureBox background color style no longer works

Post by 1618年 »

I wrote the background color of signatureBox of Thunderbird account manager in "userChrome.css". However, after upgrading to "Thunderbird 68", it no longer works. How should I write it?

[SignatureBox background color style no longer works]

textbox {
-moz-appearance:none !important;
background-color:#dedede !important;
}
morat
Posts: 6404
Joined: February 3rd, 2009, 6:29 pm

Re: SignatureBox background color style no longer works

Post by morat »

Try this:

Code: Select all

/* Thunderbird userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");

html|textarea.signatureBox {
  -moz-appearance: none !important;
  background-color: pink !important;
}
http://kb.mozillazine.org/UserChrome.css
1618年
Posts: 13
Joined: September 19th, 2019, 5:17 pm

Re: SignatureBox background color style no longer works

Post by 1618年 »

A style has been applied.
I am very impressed.
Thank you very much.
Post Reply