Guest User

Untitled

a guest
Jul 21st, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. /* ################################################################################################# */
  2. /* TAB ANIMATION: LOADING PROGRESS LINE INDICATOR */
  3. /* ################################################################################################# */
  4.  
  5. .tabbrowser-tab .tab-loading-burst{
  6. background-image: linear-gradient(0deg, transparent, red) !important;
  7. background-repeat: no-repeat !important;
  8. transition: background-size 0.5s ease-out !important, opacity 0.5s linear;
  9. background-size: 0px 10px !important;
  10. background-position-y: bottom;
  11. }
  12. .tabbrowser-tab:not([busy]) .tab-loading-burst{
  13. opacity: 0;
  14. }
  15. .tabbrowser-tab[busy] .tab-loading-burst{
  16. background-size: 20% 10px !important;
  17. transition: background-size 0.3s ease-out;
  18. }
  19. .tabbrowser-tab[busy][progress] .tab-loading-burst{
  20. background-size: 100% 10px !important;
  21. transition-duration: 2s !important;
  22. }
  23. .tabbrowser-tab[bursting] .tab-loading-burst{
  24. background-size: 100% 10px !important;
  25. transition-duration: 0.5s;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment