diff options
author | xyz <gky44px1999@gmail.com> | 2022-10-20 17:12:40 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2022-10-20 17:12:40 -0700 |
commit | 338686a7d5f70dd7037e4bc045e8a56867b66c24 (patch) | |
tree | cec4125b94d887917d3e0525cd95bcf2dc7d31d4 /home/xyz/.mozilla | |
parent | 6c60f1b54c0e7d2e88c2e9412069f958f21262a8 (diff) |
userChrome.css use vw instead of px
Diffstat (limited to 'home/xyz/.mozilla')
-rw-r--r-- | home/xyz/.mozilla/firefox/xxxxxxxx.fly/chrome/userChrome.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/xyz/.mozilla/firefox/xxxxxxxx.fly/chrome/userChrome.css b/home/xyz/.mozilla/firefox/xxxxxxxx.fly/chrome/userChrome.css index 7e09bcf0..6f152ae5 100644 --- a/home/xyz/.mozilla/firefox/xxxxxxxx.fly/chrome/userChrome.css +++ b/home/xyz/.mozilla/firefox/xxxxxxxx.fly/chrome/userChrome.css @@ -1,9 +1,9 @@ @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 */ -#navigator-toolbox { --uc-navigationbar-width: 733px !important; } +/* 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. */ +#navigator-toolbox { --uc-navigationbar-width: 39vw !important; } /* hide history back and forward-button */ #back-button, #forward-button { display: none !important; } |