Vimperator の UI カスタマイズ

フォクすけのテーマを適用したら status line が絶望的なまでにみにくくなったので http://doya.in/20080625/vimperator-color/ を参考にしながら userChrome.css をいじってみた。 profile の一部だからほかに波及しないしいいかもしんない。

  • before
  • after
/* --- for Vimperator --- */
/* bufferwindow style */
#liberator-container{
    color: #ffffff !important; // 指定しないとbufferwindowでcolorが利かない
}
#liberator-bufferwindow, #liberator-completion, #liberator-previewwindow {
    background-color: #dddddd !important;
    color: #000000 !important;
}

/* commandline style */
#liberator-commandline{
    /*
    font-family:"Luxi Mono", monospace !important;
    font-weight: normal !important;
    font-size: 10pt !important;
    */
    background-color: #dddddd !important;
    color: #000000 !important;
}

/* statusline style */
#liberator-statusline {
    /*
    font-family:"Luxi Mono", monospace !important;
    font-size: 10pt !important;
    */
    font-weight: normal !important;
    padding: 2px !important;
}

/* normal page statusline */
.hl-StatusLine {
     background-color: #333333 !important;
     color: #ffffff !important;
}

/* secure(ssl) page statusline */
.hl-StatusLineSecure {
     background-color: #60dd60 !important; /* light green */
     color: black !important;
}