Shing Lyu: Show Firefox Bookmark Toolbar in Fullscreen Mode |
By default, the bookmark toolbar is hidden when Firefox goes into fullscreen mode. It’s quite annoying because I use the bookmark toolbar a lot. And since I use i3 window manager, I also use the fullscreen mode very often to avoid resizing the window. After some googling I found this quick solution on SUMO (Firefox commuity is awesome!).
The idea is that the Firefox chrome (not to be confused with the Google Chrome browser) is defined using XUL. You can adjust its styling using CSS. The user defined chrome CSS is located in your Firefox profile. Here is how you do it:
~/.mozilla/firefox/.
on Linux. If you can’t find it, you can open about:support
in your Firefox. and click the “Open Directory” button in the “Profile Directory” field.chrome
if it doesn’t exist yet.userChrome.css
in the chrome
folder, copy the following content into it and save.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
/* full screen toolbars */
#navigator-toolbox[inFullscreen] toolbar:not([collapsed="true"]) {
visibility:visible!important;
}
https://shinglyu.github.io/web/2016/06/20/firefox_bookmark_toolbar_in_fullscreen.html
Комментировать | « Пред. запись — К дневнику — След. запись » | Страницы: [1] [Новые] |