kamome-sg

Vivaldi Browser auto-hide webpanel header

Aug 26th, 2022 (edited)
1,471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.33 KB | None | 0 0
  1. /* auto-hide webpanel header */
  2. #panels-container .webpanel-header {
  3.     transform: translateY(0);
  4.     margin-bottom: 0px;
  5.     transition: all .1s 0s !important;
  6. }
  7. #main .mainbar:not(:hover) ~ .inner #panels-container .webpanel-header:not(:hover) {
  8.     transform: translateY(-100%);
  9.     margin-bottom: -41px;
  10.     transition: all .1s 1.5s !important;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment