##// END OF EJS Templates
paper: add simple animation to the loading indicator
Alexander Plavin -
r19761:b5c60103 default
parent child Browse files
Show More
@@ -382,3 +382,24 b' ul#graphnodes li .info {'
382 .breadcrumb a {
382 .breadcrumb a {
383 color: blue;
383 color: blue;
384 }
384 }
385
386 .scroll-loading {
387 -webkit-animation: change_color 1s linear 0s infinite alternate;
388 -moz-animation: change_color 1s linear 0s infinite alternate;
389 -o-animation: change_color 1s linear 0s infinite alternate;
390 animation: change_color 1s linear 0s infinite alternate;
391 }
392
393 @-webkit-keyframes change_color {
394 from { background-color: #A0CEFF; } to { }
395 }
396 @-moz-keyframes change_color {
397 from { background-color: #A0CEFF; } to { }
398 }
399 @-o-keyframes change_color {
400 from { background-color: #A0CEFF; } to { }
401 }
402 @keyframes change_color {
403 from { background-color: #A0CEFF; } to { }
404 }
405
General Comments 0
You need to be logged in to leave comments. Login now