diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-06-19 13:25:42 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-06-19 13:25:42 -0700 |
commit | b3226d7cbb4c9dbd2d6244d527cc7c4398489f47 (patch) | |
tree | c12ffc4df286f0bb2750b9e69f23101a52d3896a | |
parent | 6029c2bf7a3b57289e16545b98ed2a5aa3f71be2 (diff) |
Improve the task dialog
1) Put a "starting up..." message before there's any feedback from the server
2) show the title of the task in the dialog.
-rw-r--r-- | modules/gallery/views/admin_maintenance_task.html.php | 5 | ||||
-rw-r--r-- | themes/default/css/screen.css | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/modules/gallery/views/admin_maintenance_task.html.php b/modules/gallery/views/admin_maintenance_task.html.php index 1ee02311..d9aecc60 100644 --- a/modules/gallery/views/admin_maintenance_task.html.php +++ b/modules/gallery/views/admin_maintenance_task.html.php @@ -23,8 +23,11 @@ } </script> <div id="gProgress"> + <h1> <?= $task->name ?> </h1> <div class="gProgressBar"></div> - <div id="gStatus"></div> + <div id="gStatus"> + <?= t("Starting up...") ?> + </div> <div> <button id="gPauseButton" class="ui-state-default ui-corner-all" onclick="dismiss()"><?= t("Pause") ?></button> <button id="gDoneButton" class="ui-state-default ui-corner-all" style="display: none" onclick="dismiss()"><?= t("Done") ?></button> diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css index 03c13cc1..68f12ff1 100644 --- a/themes/default/css/screen.css +++ b/themes/default/css/screen.css @@ -1000,6 +1000,10 @@ form .gError, /*************** STUFF THAT NEEDS A HOME ****************/ +#gProgress h1 { + font-size: 1.1em; +} + .gProgressBar { height: 1em; width: 100%; |