Skip to content

Instantly share code, notes, and snippets.

@sankitch
Created October 30, 2012 12:05
Show Gist options
  • Save sankitch/3979827 to your computer and use it in GitHub Desktop.
Save sankitch/3979827 to your computer and use it in GitHub Desktop.
Firefox userChrome.css
@charset "utf-8";
/*
* このファイルを編集して userChrome.css という名前で
* [プロファイルディレクトリ]/chrome/
* ディレクトリにコピーしてください。
*/
/*
* このファイルを使って Mozilla のユーザインターフェイスの見た目をカスタマイズ
* できます。デフォルト設定を上書きする場合は !important 宣言を使ってください。
*/
/*
* 次の @namespace 規則ではデフォルト名前空間を XUL にしています。
* 削除すると正常に動作しなくなるので、削除しないでください。
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#go-button-stack, .search-go-button-stack {
display: none !important;
}
/*Remove magnifying glass button from search box*/
.search-go-button-stack { display: none !important; }
/* Eliminate the throbber and its annoying movement: */
#throbber-box { display: none !important; }
/* コンテキストメニューから各種不要要素を消す */
/* リンクを新しいウィンドウで開く */
#context-openlink {
display: none !important;
}
/* このリンクをブックマーク */
#context-bookmarklink {
display: none !important;
}
/* このページをブックマーク */
#context-bookmarkpage {
display: none !important;
}
/* 名前を付けてページを保存 */
#context-savepage {
display: none !important;
}
/* [最近閉じたタブを復元]の上のセパレーター */
#tm-content-undoCloseSep {
display: none !important;
}
/* 最近閉じたタブを復元 */
#tm-content-undoCloseTab {
display: none !important;
}
/* 進む */
#context-forward {
display: none !important;
}
/* 更新 */
#context-reload {
display: none !important;
}
/* 中止 */
#context-stop {
display: none !important;
}
/* リンクを送信、リンクURLをメールで送信、画像をメールで送信 */
#context-sendlink,
#context-sendpage,
#context-sendimage {
display: none !important;
}
/* 全て選択 */
#context-selectall {
display: none !important;
}
/*.tabbrowser-strip{
min-height:2px !important;
max-height:2px !important;
}*/
body#viewsource * {
font-family:'Osaka-等幅' !important;
font-weight: normal !important;
color: #333 !important;
background-color: #000000 !important;
line-height:140% !important;
font-size:12px !important;
}
body#viewsource .start-tag,
body#viewsource .end-tag {
color: #00468C !important;
font-weight: bold !important;
}
body#viewsource .comment {
color: #888 !important;
font-style: normal !important;
}
body#viewsource .doctype {
color: #0E8D2B !important;
font-style: normal !important;
}
body#viewsource .attribute-name {
color: #663333 !important;
font-weight:normal !important;
}
body#viewsource .attribute-value {
color:#00468C !important;
font-weight: normal !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
*/
#fbLargeCommandLine > .textbox-input-box {
font-size: 11pt !important;
font-family: Consolas !important;
}
textbox#fbLargeCommandLine {
font-size: 10pt !important;
font-family: Consolas !important;
color: #E6E6E6 !important;
background-color: #000 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment