diff --git a/manage.html b/manage.html index 9953aabc..523d442c 100644 --- a/manage.html +++ b/manage.html @@ -240,8 +240,8 @@ - - @@ -255,7 +255,9 @@ diff --git a/manage/manage.css b/manage/manage.css index c96c8370..5af3522f 100644 --- a/manage/manage.css +++ b/manage/manage.css @@ -56,11 +56,27 @@ a:hover { } .entry-actions > a, -.bulk-actions-select, +.bulk-actions-select-wrapper, #bulk-actions-apply { margin-left: 2px; } +#bulk-actions .svg-icon.busy:not(.hidden) { + -webkit-animation:spin 1s linear infinite; + -moz-animation:spin 1s linear infinite; + animation:spin 1s linear infinite; +} + +@-moz-keyframes spin { + 100% { -moz-transform: rotate(360deg); } +} +@-webkit-keyframes spin { + 100% { -webkit-transform: rotate(360deg); } +} +@keyframes spin { + 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } +} + .svg-icon:hover { fill: #000; }