Lazy Diary @ Hatena Blog

PowerShell / Java / miscellaneous things about software development, Tips & Gochas. CC BY-SA 4.0/Apache License 2.0

Firefox のウィジェットのフォント設定

  1. cd ~/.mozilla/firefox/xxxxxxxx.username/chrome
  2. cp userChrome-example.css userChrome.css
  3. userChrome.css に次のような内容を書き加える。
/* フォントの設定 */
 * {
    font-family: IPAPGothic;
    font-size: 14px;
}

input *, textfield * {
    font-family: IPAGothic;
    font-size: 13px;
}

これだけだと URL バー・検索バーの内容が等幅にならないので、ちょっとよろしくない。#urlbar に fontfamily 指定をしても(!important しても)反映されないし。うーむ。