smart.fm の学習効率 UP を図る UserCSS 1

smart.fm が安定してきたようなので UserCSS 作りを再開。
新 UI では、iKnow や Dictation といった学習アプリケーションの起動までに 2 ステップ掛かるようになってしまった。
今日は、その部分を改善したい。*1

Before

学習アプリケーションの起動に "学習" をクリックする必要がある。不便だ。

After

学習度の上部に、学習アプリケーション起動用のリンクを表示するようにした。BrainSpeed は利用しないため非表示。ついでに細かいところを削り、スマートに。

ソースコード

.my_lists li {
 padding-bottom : 0 !important;
}
div.apps {
 float          : right !important;
 position       : static !important;
 width          : 145px !important;
}
div.manage_lists,
div.study,
ul.menu li.brainspeed {
 display        : none !important;
}
ul.menu {
 border         : none !important;
 display        : block !important;
 position       : static !important;
 width          : 145px !important;
}
ul.menu li {
 border         : none !important;
 display        : block !important;
 float          : left !important;
 padding        : 0 !important;
 width          : 72px !important;
}

おまけ

画像サイズがデカスギ。何とかしたい。
続く

*1:WindowsFirefox 3.0.7 で確認