Created
November 26, 2010 16:19
-
-
Save superbrothers/716909 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "utf-8"; | |
/* | |
* このファイルを編集して userChrome.css という名前で | |
* [プロファイルディレクトリ]/chrome/ | |
* ディレクトリにコピーしてください。 | |
*/ | |
/* | |
* このファイルを使って Mozilla のユーザインターフェイスの見た目をカスタマイズ | |
* できます。デフォルト設定を上書きする場合は !important 宣言を使ってください。 | |
*/ | |
/* | |
* 次の @namespace 規則ではデフォルト名前空間を XUL にしています。 | |
* 削除すると正常に動作しなくなるので、削除しないでください。 | |
*/ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/* | |
* サイドバーを右に表示させる | |
*/ | |
#browser { | |
-moz-box-direction: reverse !important;; | |
} | |
/* | |
* 操作性を向上させる例: | |
*/ | |
/* | |
* デフォルトフォントサイズをすべて 20 ポイントにする: | |
* | |
* * { | |
* font-size: 20pt !important | |
* } | |
*/ | |
/* | |
* メニュー項目についてはデフォルトサイズではなく 15 ポイントにする: | |
* | |
* menupopup > * { | |
* font-size: 15pt !important | |
* } | |
*/ | |
/* | |
* ロケーション (URL) バーを固定幅フォントで表示する: | |
* | |
* #urlbar { | |
* font-family: monospace !important; | |
* } | |
*/ | |
/* | |
* その他の例は次のページを参照してください: | |
* http://www.mozilla-japan.org/unix/customizing.html | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment