2011年3月31日木曜日

Firefox 4 のアドオンバーの閉じるボタン

ことのおこり

…あれ,間違って閉じません?あたしだけ??

ぐぐる

機能拡張があったような気がしてたんだけれども,違うものを見つけたの。

Firefox 4 アドオンバーの中にリンク先URLの表示を移動させてみた | Firefox Fan Club + More Browsers をまねまね~。

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* Firefox 4 アドオンバーの中にリンク先URLの表示を移動させてみた | Firefox Fan Club + More Browsers - http://doheny.blog137.fc2.com/blog-entry-72.html */
/* アドオンバーを閉じるボタンを非表示にする */
#addonbar-closebutton {
  display: none !important;
}
/* アドオンバーの中にリンク先URLを埋め込み */
#main-window:not([inFullscreen]) #statusbar-display {
  margin-top: -17px !important;
  max-width: 80% !important;
}
#main-window:not([inFullscreen]) .statuspanel-label {
  background: transparent !important;
  border: none !important;
}
/* ページ内検索バーを表示の時にもアドオンバー内に表示させる */
#main-window:not([inFullscreen]) #statusbar-display[mirror="true"] {
  position: fixed !important;
  left: -12px !important;
  margin-top: 11px !important;
}

を Stylish に書いておいたの。

3 件のコメント:

わるさん さんのコメント...

Firefox6 にしてうまく動いていないみたいだから,これだけに変更。

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#addonbar-closebutton {
display: none !important;
}

…たぶん削った部分は Firefox5 のころには動いていなかったような。

Stylish は,今現在 1.2.1 がレビュー中。うごくよ。

わるさん さんのコメント...

…またうごかなくなったし。なんで???

わるさん さんのコメント...

解決。
Stylish では,スタイルの名前に「#」を含んじゃダメみたい。
…Firefox5 のときは大丈夫だったんだけれどなぁ。