aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/theme.css
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2014-09-05 12:18:12 +0000
committerplegall <plg@piwigo.org>2014-09-05 12:18:12 +0000
commitb521f2f102365c3e84a401f1b9db06ca1a0217cd (patch)
tree72ef964b3da38bbb7cff29971f6a4218dc4b4751 /admin/themes/default/theme.css
parentc2f970288078b3acb9b4c496ac419a95b8bd6ecd (diff)
feature 2616: animate progress bar on roma
git-svn-id: http://piwigo.org/svn/trunk@29406 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/theme.css')
-rw-r--r--admin/themes/default/theme.css16
1 files changed, 15 insertions, 1 deletions
diff --git a/admin/themes/default/theme.css b/admin/themes/default/theme.css
index ef1367149..356cc70c7 100644
--- a/admin/themes/default/theme.css
+++ b/admin/themes/default/theme.css
@@ -1024,11 +1024,25 @@ p#uploadModeInfos {text-align:left;margin-top:1em;font-size:90%;color:#999;}
position:relative;
height:18px;
}
+
+@keyframes animatedBackground {
+ from { background-position: 0 0; }
+ to { background-position: 33px 0; }
+}
+
+@-webkit-keyframes animatedBackground {
+ from { background-position: 0 0; }
+ to { background-position: 33px 0; }
+}
+
.big-progressbar .progressbar {
height:18px;
- min-width:18px;
+ min-width:5px;
background:#444;
border-radius:5px 0 0 5px;
+ background-size:33px 25px;
+ animation: animatedBackground 1s linear infinite;
+ -webkit-animation: animatedBackground 1s linear infinite;
}