Changeset 29405


Ignore:
Timestamp:
Sep 5, 2014, 1:32:34 PM (10 years ago)
Author:
plg
Message:

feature 2616: animate progress bar

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/themes/clear/theme.css

    r29396 r29405  
    374374  border-radius:5px;
    375375}
     376
     377@keyframes animatedBackground {
     378        from { background-position: 0 0; }
     379        to { background-position: 25px 0; }
     380}
     381
     382@-webkit-keyframes animatedBackground {
     383        from { background-position: 0 0; }
     384        to { background-position: 25px 0; }
     385}
     386
    376387.big-progressbar .progressbar {
    377388  background:#FF8A23;
     
    379390  background-size:25px 25px;
    380391  box-shadow:inset 0px 1px 3px 0px rgba(255,255,255,0.4);
    381 }
     392
     393  animation: animatedBackground 1s linear infinite;
     394  -webkit-animation: animatedBackground 1s linear infinite;
     395}
     396
Note: See TracChangeset for help on using the changeset viewer.