Guest User

Firefox statusbar CSS

a guest
Jan 17th, 2021
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.06 KB | None | 0 0
  1. /*
  2.     Bookmarks bar at the bottom
  3.     Based on code by Anon 2ch.hk/s/ the smartest
  4. */
  5.  
  6. #PersonalToolbar {
  7.     position: fixed !important;
  8.     bottom: 0 !important;
  9.     right: 0 !important;
  10.     display: inline-flex !important;
  11.     z-index: 0 !important;
  12.     height: 21px !important;
  13. }
  14.  
  15. /*
  16.     Display the status bar in Firefox Quantum (Firefox 57+)
  17.     permanently at the bottom of the browser window.
  18.     Code below works best for the Light Firefox theme and is based on:
  19.     https://github.com/MatMoul/firefox-gui-chrome-css/blob/master/chrome/userChrome.css
  20. */
  21.  
  22. #browser-bottombox {
  23.     height: 22px;
  24.     border-top: solid 1px #CCC;
  25. }
  26.  
  27. #statuspanel {
  28.         left: 4px !important;
  29.     bottom: 0;
  30.     transition-duration: 0s !important;
  31.     transition-delay: 0s !important;
  32. }
  33.  
  34. #statuspanel>.statuspanel-inner>.statuspanel-label {
  35.     margin-left: 0 !important;
  36.     border: none !important;
  37.     padding: 0 !important;
  38. }
  39.  
  40. :root[inFullscreen="true"] #browser-bottombox {
  41.     display:none !important;
  42. }
  43.  
  44. :root[inFullscreen="true"] #statuspanel {
  45.     display:none !important;
  46. }
Add Comment
Please, Sign In to add comment