Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. /* Hide the whole toolbar area unless urlbar is focused or cursor is over the toolbar */
  2. /* Dimensions on non-Win10 OS probably needs to be adjusted */
  3.  
  4. @media (-moz-os-version: windows-win10){
  5.  
  6. :root[sizemode="maximized"]:not([inDOMFullscreen]){ margin-top: 1px !important; }
  7. :root[sizemode="maximized"] #navigator-toolbox{ margin-top: 6px }
  8. }
  9.  
  10. :root[sizemode="fullscreen"]{ margin-top: 0px !important; }
  11.  
  12. #navigator-toolbox{
  13. position: fixed !important;
  14. display: block;
  15. background-color: var(--lwt-accent-color,black) !important;
  16. transition: transform 82ms 33ms linear, opacity 82ms 33ms linear !important;
  17. transform-origin: top;
  18. line-height: 0;
  19. z-index: 1;
  20. }
  21.  
  22. #navigator-toolbox > *{ line-height: normal }
  23.  
  24. #navigator-toolbox,
  25. #navigator-toolbox > *{
  26. width: 100vw;
  27. -moz-appearance: none !important;
  28. }
  29.  
  30. #navigator-toolbox:not(:focus-within):not(:hover){
  31. transform: rotateX(86deg);
  32. opacity: 0;
  33. }
  34.  
  35. :root[sizemode="maximized"] #navigator-toolbox:not(:focus-within):not(:hover){ transform: rotateX(89.5deg) }
  36.  
  37. :root[customizing] #navigator-toolbox{
  38. position: relative !important;
  39. transform: none !important;
  40. opacity: 1 !important;
  41. }
  42.  
  43. #navigator-toolbox[inFullscreen] > #PersonalToolbar,
  44. #PersonalToolbar[collapsed="true"]{ display: none }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement