アナログ
RSS  

Firefox 3:ナビゲーションツールバーも隠す2008/09/13 00:14

いじりまわした結果がこれ(右端)だよw
マウスジェスチャーかキーボードショートカット使いでないと(操作するのは)難しい(笑)。
もうめんどくさいのでuserChrome.cssを全部晒してみるテスト。
/* リロードボタンとストップボタンを統合 */
/* 中止ボタンの右に更新ボタンを置くこと */
#stop-button:not([disabled=true]) + #reload-button,
#stop-button[disabled=true] {
  display:none !important;
}

/* サーチバーの虫眼鏡を非表示 */
.search-go-button, .search-go-button-stack, #go-button {
  display: none !important;
}

/* ツリーインデント */
treechildren::-moz-tree-indentation {
  width:0.5em !important;
}

/* 非アクティブなタブの文字色を淡色にする */
tab {
  color:GrayText !important;
}
tab[selected="true"] {
 color:MenuText !important;
 font-weight:normal !important;
}

/* ナビバーをマウスオーバーで自動開閉する */
#nav-bar {
  height: 7px !important;
  min-height: 0px !important;
  overflow: hidden !important;
}
#nav-bar:hover,
#nav-bar:focus,
#nav-bar:active {
  height: auto !important;
}

/* タブバーをマウスオーバーで自動開閉する */
.tabbrowser-strip{
  min-height:8px !important;
  max-height:8px !important;
}
.tabbrowser-strip:hover {
  min-height:16px !important;
  max-height:21px !important;
}
タイトルバーも消えてめでたしめでたし。


Firefox:タブバーを隠す