xiaoxiaoflood / firefox-scripts

userChromeJS / autoconfig.js and extensions
Mozilla Public License 2.0
989 stars 85 forks source link

Resize Status Bar #80

Closed mozo78 closed 3 years ago

mozo78 commented 3 years ago

Hello, It's not an issue but a question. Do someone know how to resize the statusbr for it's a bit taller to my taste? I searched through the scripts but didn't find anything useful. Thank you in advance :)

xiaoxiaoflood commented 3 years ago

You can do it with CSS (using StyloaiX or userChrome.css). Example:

#status-bar {
  height: 30px;
}

Or simply edit status-bar.uc.js adding the line height: 30px; (changing the value as you wish) right here: https://github.com/xiaoxiaoflood/firefox-scripts/blob/e82e9fb20300605a0d43213bf9654a752746a802/chrome/status-bar.uc.js#L120-L123 `#status-bar { }

mozo78 commented 3 years ago

Working great, thank you very much!