
画像はcompleter や MOW を オーバーレイ - caisuiの日記との組み合わせ。透け透けで良い感じw
で、パノラマに背景画像を仕込む方法を書いたけど、Vimperator的には:style?コマンドで出来るのでuserChrome.cssに書く必要はなかったりする。
style -name panorama chrome://browser/content/tabview.html <<EOM #bg { background-image: url(file:///path/to/file.jpg) !important; background-size: auto 900px !important; background-position: top right !important; } .groupItem { background-color: rgba(224,234,245,.5) !important; } .title-container>.name { color: black !important; font-weight: bold; text-shadow: 1px 1px 2px pink; } #exit-button,#searchbutton { background-color: rgba(240,240,240,.5) !important; } EOM
background-image で画像指定
background-size で大きさ指定。
横方向の大きさ 縦方向の大きさって感じbackground-positionでどこの点に合わせるかを指定.groupItemセレクタペルソナのときみたいに、いろいろ遊べそうな感じで面白い。