ウィンドウの横幅を狭めた場合にFirebugの開閉のボタンが表示領域から外れるのを何とかする
「ウィンドウの横幅を狭めたときに開閉のボタンが表示領域から外れるの直して欲しいなあ」のつぶやきを元にしたエントリー。*1
解決策
Stylishで開閉ボタンをposition:fixedにすることで表示位置を固定する。
Stylishの設定から白紙のスタイルに以下を入力する。
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); #fbWindowButtons { position: fixed !important; right: 0px !important; } #fbSearchBox textbox { margin-right: 50px !important; width: 200px !important; }