Skip to content

Instantly share code, notes, and snippets.

@superbrothers
Created November 26, 2010 16:19
Show Gist options
  • Save superbrothers/716909 to your computer and use it in GitHub Desktop.
Save superbrothers/716909 to your computer and use it in GitHub Desktop.
@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