Advertisement
Gotolei

Tab close button animation

May 8th, 2014
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.25 KB | None | 0 0
  1. .tabbrowser-tab .tab-close-button .toolbarbutton-icon {
  2.   width: 0;
  3. }
  4.  
  5. .tabbrowser-tab:not(:hover) .tab-close-button {
  6.   width: 0;
  7.   transition: width .2s;
  8. }
  9.  
  10. .tabbrowser-tab:hover .tab-close-button {
  11.   width: 16px;
  12.   transition: width .2s;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement