在 Ubuntu 下用 Firefox 一直覺得畫面很小,觀察一下發現書籤列怎麼佔了那麼多空間,上網查知道原來不只我有這樣的感覺 XD,就參考 Ubuntu Forums 裡的文章把 Firefox 的畫面調整一下。
方法是修改 userChrome.css,這個檔案在 [Firefox profile]/chrome 目錄裡,沒有的話就新建一個。以下是我 userChrome.css 的內容:
/* Menu Bar – Shrink and Fade Text */
#navigator-toolbox .menubar-text {
font-size: 12px !important;
}
/* URL Bar and Search Bar – Shrink and Fade Text*/
#urlbar, #searchbar{
font-size: 12px !important;
}
/* Tabs – Shrink Font and Height*/
.tabbrowser-tabs {
font-size: 12px !important;
height: 24px !important;
}
.tabbrowser-strip {
height: 26px !important;
}
/* Bookmarks Toolbar – Shrink Font and Size*/
#PersonalToolbar {
font-size: 12px !important;
padding: 0px !important;
margin: 0px !important;
max-height: 24px !important;
}
/* Seperators – Remove */
#PersonalToolbar toolbarseparator {
display: none !important;
}
/* Toolbar Buttons – Reduce Margins */
#PersonalToolbar toolbarbutton {
margin: 0 -5px 0 -1px !important;
}
/* Toolbar Icons – Shrink and Reduce Margins */
#PersonalToolbar .toolbarbutton-icon {
max-width: 12px !important;
max-height: 12px !important;
margin: 0px 2px 0px 0px !important;
}
Recent Comments