OTHERS : 40% くらい終わりました。まだ終わってなかったのかよ、というところです。
といいますか、プロジェクトの進捗状況報告のようになってきました。 90% くらいまで順調という報告だったのに、それ以上進まなくなって、見に行ったら、 実際には 30% くらいでストップしているあれです。
PC : 1.0.6 になったので、タイトル変更です。
active な tab のタイトルが明朝体で読みづらいなー、とか、そうでない tab が ゴシック体でかえって目立ってるよ、とか、Preferences で設定できないよ、とか、 ずーっと思っていたのですが、調べればよかったのでした。んでもって、公式サイトに ありました....。
そんなわけで、メモです。
~/.mozilla/firefox/xxxxxxx.default/chrome/userChrome.css
/*
* Do not remove the @namespace line -- it's required for correct functioning
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
/*
http://www.mozilla-japan.org/unix/customizing.html
http://www.mozilla-japan.org/support/firefox/tips
*/
tab{
-moz-appearance: none !important;
font-family: DFGHSMaruGothic-W4 !important;
background-color: transparent !important;
}
tab:not([selected="true"]) {
font-weight: normal !important;
color: gray !important;
}
tab のタイトルのフォントを指定して、active でない tab のタイトルの色を gray にして少し見づらくしてます。
設定がまた分散します....。