Firefoxのタブの高さ変更

Firefoxのコンテンツ表示スペースを広するためにタブの高さを小さくしてみた。
http://level.s69.xrea.com/mozilla/index.cgi?id=20070114_sdfx2_2#toc-menu-hideを参考に、

$ cd ~/.mozila/firefox/xxxxxxxxxxx/chrome
$ cp userChrome-example.css userChrome.css

で、userChrome.cssに次の2行を追記

tab { font-size:10px !important; height:17px !important }

あれ?タブ2段の時は高さが小さくなるけど1段だと変わらない…。

(追記)下記のように max-heightを指定したら上手くいった。

tab {
        font-size:10px !important;
        height:17px !important;
        max-height:17px !important;
}