Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
1,118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.88 KB | None | 0 0
  1. :root[inFullscreen] #navigator-toolbox {
  2.     z-index: 1;
  3.     margin-top: calc(-40px - var(--tab-min-height));
  4. }
  5. :root[inFullscreen] #navigator-toolbox::after {
  6.     visibility: hidden;
  7. }
  8. :root[sizemode="fullscreen"][inFullscreen] #navigator-toolbox,
  9. :root[sizemode="fullscreen"][inFullscreen] #navigator-toolbox::after {
  10.     transition: all .2s ease .5s !important;
  11. }
  12. :root[inFullscreen] #navigator-toolbox:focus-within,
  13. :root[inFullscreen] #navigator-toolbox:hover {
  14.     transition-delay: 0s !important;
  15.     margin-top: 0;
  16. }
  17. :root[inFullscreen] #navigator-toolbox:focus-within::after,
  18. :root[inFullscreen] #navigator-toolbox:hover::after {
  19.     transition-delay: 0s !important;
  20.     visibility: visible;
  21. }
  22. :root[inFullscreen] #content-deck {
  23.     position: fixed;
  24.     z-index: 0;
  25.     top: 0;
  26.     width: 100%;
  27.     height: 100%;
  28. }
  29. :root[inFullscreen] #content-deck > #browser {
  30.     width: 100%;
  31.     height: 100%;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement