Feb 052007
Firefoxで拡張機能を入れるとか、userContent.cssで制御するとかいろいろ方法がいろいろありますが、私は以下のuserContent.cssやってます。
@-moz-document domain(mail.google.com) { div[class="mb cb"] { font-family: monospace !important; } textarea { font-family: monospace !important; } }
ところがいつの間にか、上の記述では等幅フォントで表示されなくなってしまいました 🙁
で、今回以下のように変更。
@-moz-document domain(mail.google.com) { div.mb { font-family: monospace !important; } textarea { font-family: monospace !important; } }
div[class="mb cb"]
とdiv.mb
の違いだけなんですけどね。
Sorry, the comment form is closed at this time.