userContent.css to get fixed width font in firefox -
i trying fixed-width monospace font in gmail's new compose feature in firefox using bit of css in usercontent.css. following used trick me:
@-moz-document domain(mail.google.com) { .ii, .ak, .editable, .lw-avf { font-family: monospace !important; font-size: 100% !important; } }
but no longer works. using inspect element in firefox see message in like:
<body id=":di" class="editable lw-avf"
is there missing here? why compose window not monospace
if in class editable
, lw-avf
?
i guessed iframe not have domain associated it. seems work viewing , composing messages:
@-moz-document domain(mail.google.com) { .gs .ii { font-family: monospace !important; font-size: 100% !important; } } @-moz-document domain() { .editable.lw-avf { font-family: monospace !important; font-size: 100% !important; } }
Comments
Post a Comment