summaryrefslogtreecommitdiff
path: root/home/xyz/.mozilla/firefox/xxxxxxxx.fly/chrome/userChrome.css
blob: 55bf948446c1ed7b894f0a1555a6e450c753eb7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@import url(firefox-csshacks/chrome/navbar_tabs_oneliner.css);
@import url(firefox-csshacks/chrome/urlbar_popup_full_width.css);

/* On my laptop with linux, if only has more tool >> button and application menu hambugger button, need at least 733px for search bookmarks urls and title shown in one line, or 39vw when full screen on my xyzinsp laptop. Not sure why % is not working.
I choose to use vw because after resize to a smaller window, the navigation bar will be too big if use px.
I choose a lower vw to give more room to tabs. */
#navigator-toolbox { --uc-navigationbar-width: 30vw !important; }

/* hide history back and forward-button */
#back-button, #forward-button { display: none !important; }

/* hide minimize, restore, and close button when in full screen mode */
#minimize-button, #restore-button, #close-button { display: none !important; }