Guest User

Untitled

a guest
Jul 17th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. /* Hide separator, only show *** button after 2-sec hover */
  2.  
  3. #pageActionSeparator {
  4. display: none !important;
  5.  
  6. }
  7.  
  8. #page-action-buttons #pageActionButton {
  9. width: 0 !important;
  10. padding: 4px !important;
  11. transition: all 1s ease-in-out;
  12.  
  13. }
  14.  
  15. #page-action-buttons:hover #pageActionButton {
  16. width: 24px !important;
  17. padding: 4px !important;
  18. transition: all 1s ease-in-out 2s;
  19.  
  20. }
Add Comment
Please, Sign In to add comment