blob: 16bf50b29f88f5f6a21d875792a1e75d132726be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
@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; }
/* Narror windows will cause url bar on top of extensions button, hamburger
* button, and tabs. It will also cause extensions button and hamburger button
* overlap each other. I don't care if url bar is too narror. I prefer url bar
* never on top of other items. I prefer extensions button and hamburger button
* never overlap. Set min-width to 0 for urlbar-container gives me the result I
* want */
#urlbar-container { min-width: 0 !important; }
/* hide history back, forward-button, and ^ alltabs-button */
#back-button, #forward-button, #alltabs-button { display: none !important; }
/* hide minimize, restore, and close button when in full screen mode */
#minimize-button, #restore-button, #close-button { display: none !important; }
|