Advertisement
Guest User

autohide-example

a guest
May 5th, 2019
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. #fullscr-toggler {
  2. pointer-events: none;
  3. }
  4. /* Force bgcolor to prevent transparent tabbar | Win8 */
  5. #TabsToolbar {
  6. background-color: var(--lwt-accent-color) !important;
  7. }
  8.  
  9. #navigator-toolbox {
  10. z-index: 1;
  11. margin-top: calc(-40px - var(--tab-min-height));
  12. }
  13. #navigator-toolbox::after {
  14. height: 15px !important;
  15. visibility: hidden;
  16. }
  17. #navigator-toolbox,
  18. #navigator-toolbox::after {
  19. transition: all .2s ease .5s !important;
  20. }
  21. #navigator-toolbox:focus-within,
  22. #navigator-toolbox:hover {
  23. transition-delay: 0s !important;
  24. margin-top: 0;
  25. }
  26. #navigator-toolbox:focus-within::after,
  27. #navigator-toolbox:hover::after {
  28. transition-delay: 0s !important;
  29. }
  30. #content-deck {
  31. position: fixed;
  32. z-index: 0;
  33. top: 0;
  34. width: 100%;
  35. height: 100%;
  36. }
  37. #content-deck > #browser {
  38. width: 100%;
  39. height: 100%;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement