summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-04-14 19:40:29 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-04-14 19:40:29 +0200
commit5768d0fc7fe7e29491b788b08096ca1435b82aeb (patch)
treef05fe192c47dfdc433303c7c004391e13471ec15
parente58fb411f928f9000351e802f7e35c159735bdd7 (diff)
Amélioration esthétique pour l'actualisation des flux
-rw-r--r--app/views/javascript/actualize.phtml3
-rw-r--r--public/theme/freshrss.css5
2 files changed, 4 insertions, 4 deletions
diff --git a/app/views/javascript/actualize.phtml b/app/views/javascript/actualize.phtml
index ad1c4e2e6..16188422a 100644
--- a/app/views/javascript/actualize.phtml
+++ b/app/views/javascript/actualize.phtml
@@ -6,9 +6,8 @@ feeds.push ("<?php echo Url::display (array ('c' => 'feed', 'a' => 'actualize',
function initProgressBar (init) {
if (init) {
$("body").after ("\<div id=\"actualizeProgress\" class=\"actualizeProgress\">\
- Actualisation :\
+ Actualisation <span class=\"progress\">0 / " + feeds.length + "</span><br />\
<progress id=\"actualizeProgressBar\" value=\"0\" max=\"" + feeds.length + "\"></progress>\
- <span class=\"progress\">0 / " + feeds.length + "</span>\
</div>");
} else {
window.location.reload ();
diff --git a/public/theme/freshrss.css b/public/theme/freshrss.css
index f64770b81..ed6646269 100644
--- a/public/theme/freshrss.css
+++ b/public/theme/freshrss.css
@@ -383,8 +383,8 @@
.actualizeProgress {
position: fixed;
- top: 0; left: 33%; right: 33%;
- width: 33%;
+ top: 0; left: 25%; right: 25%;
+ width: 50%;
padding: 5px;
background: #fff;
text-align: center;
@@ -393,6 +393,7 @@
border-radius: 0 0 5px 5px;
}
.actualizeProgress progress {
+ max-width: 100%;
vertical-align: middle;
}
.actualizeProgress .progress {