Advertisement
Guest User

Untitled

a guest
Jun 25th, 2022
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #tabs-tabbar-container {
  2. position: fixed !important;
  3. display: block;
  4. opacity: 0;
  5. line-height: 0;
  6. z-index: 1;
  7. pointer-events: none;
  8. width: 100%;
  9. }
  10.  
  11.  
  12. #header:hover #tabs-tabbar-container{
  13. position: initial !important;
  14. display: initial;
  15. opacity: 1;
  16. line-height: initial;
  17. z-index: initial;
  18. pointer-events: initial;
  19. width: 100%;
  20. height: initial;
  21. }
  22.  
  23. .mainbar {
  24. opacity: 0;
  25. }
  26.  
  27. #header:hover #main .mainbar {
  28. opacity: 1;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement