From 0e7ff1c78f453ce615d89ddce8f2247d7d19ec6a Mon Sep 17 00:00:00 2001 From: Rob Garrison Date: Thu, 29 Nov 2018 05:11:28 -0600 Subject: [PATCH] Add busy icon --- manage.html | 8 +++++--- manage/manage.css | 18 +++++++++++++++++- 2 files changed, 22 insertions(+), 4 deletions(-) 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; }