TwitterFoxの画面サイズを大きく


これでパソコンから離れてるときにポップアップしても読めますな。


他にまともな設定方法がわからなかったので、Stylishのグローバル設定に追加したり...

/* TwitterFox */
.twitternotifier-status { width:600px !important; font-size:30px; line-height:1.1; }
.twitternotifier-statusbox { width:600px !important; 
height:400px !important; max-height:400px !important; }
.twitternotifier-status-messagebox { width:510px !important; max-width:510px !important;  }
.twitternotifier-statusbox-hbox-container { max-height:200px; }
.twitternotifier-status-hbox-container vbox { left:570px !important; }
.twitternotifier-status-usericon { width:64px !important; max-width:64px !important; height:64px !important; max-height:64px; }

まず、600pxのところをいじって幅を決める。
510pxのところは幅(600)から90(スクロールバーとアイコンの幅)を引いた値。(折り返し位置が決まる)
570pxのところは幅(600)から30(スクロールバーとかの幅)を引いた値。(返信とfavのアイコンの位置が決まる)
400pxのところは高さ。


...


でかすぎるんじゃないかと思ったのでいろいろ調整。

/* TwitterFox */
.twitternotifier-status-user {
 margin:0 !important; font-size:75%;
}
.twitternotifier-status {
 width:550px !important;
 font-size:21px; line-height:1.0;
}
.twitternotifier-statusbox {
 width:550px !important;
 height:400px !important; max-height:400px !important;
}
.twitternotifier-status-messagebox {
 width:470px !important;
 max-width:470px !important;
}
.twitternotifier-statusbox-hbox-container {
 max-height:200px;
}
.twitternotifier-status-hbox-container vbox {
 left:520px !important;
}
.twitternotifier-status-usericon {
 width:48px !important; max-width:48px !important;
 height:48px !important; max-height:48px !important;
}

追記 2009-05-25

TwitterFox 1.8から使えなくなりそうな雰囲気。ベータが取れたら対処してみる。
1.8βからウィンドウがリサイズできるようになって、フォントサイズも選べるようになった。素敵。
ただ、フォントがメイリオだと行間が広すぎるのと、フォントサイズが最大16pxまでしかあげられないので、そこの解決方法

#twitternotifier-main-window { line-height:1.1; }
.twitternotifier-message-body { font-size:22px; }

前みたいに幅をいじったりする必要が無いから楽チンですばらしい。

追記 2009-06-13

1.8が出たのでちょっと修正。

/* TwitterFox 1.8 */
/* 行間を詰める。半透明解除 */
#twitternotifier-main-window { line-height:1.1; opacity:1 !important; }
/* 文字をデカくしてフォントを Meiryo UIに */
.twitternotifier-message-body { font-size:22px; font-family:Meiryo UI; }
/* アイコンを大きく */
.twitternotifier-status-usericon { min-width:48px !important; min-height:48px !important; }
/* xx分前 from xxx の表示を目立たないように */
.twitternotifier-status-info a,
.twitternotifier-status-info  { font-size:9pt !important; color:#aaa !important; }