diff --git a/modules/gallery/views/admin_maintenance.html.php b/modules/gallery/views/admin_maintenance.html.php
index 05bc0923..4bca8653 100644
--- a/modules/gallery/views/admin_maintenance.html.php
+++ b/modules/gallery/views/admin_maintenance.html.php
@@ -22,7 +22,7 @@
$i = 0; ?>
foreach ($task_definitions as $task): ?>
">
- |
+ |
= $task->name ?>
|
@@ -42,10 +42,6 @@
if ($running_tasks->count()): ?>
- "
- class="gButtonLink ui-icon-left ui-state-default ui-corner-all right">
- = t("cancel all") ?>
-
= t("Running Tasks") ?>
@@ -66,12 +62,15 @@
|
= t("Action") ?>
+ "
+ class="gButtonLink ui-icon-left ui-state-default ui-corner-all right">
+ = t("cancel all") ?>
|
$i = 0; ?>
foreach ($running_tasks as $task): ?>
= ($i % 2 == 0) ? "gOddRow" : "gEvenRow" ?>">
- |
+ | ">
= gallery::date_time($task->updated) ?>
|
@@ -116,10 +115,6 @@
if ($finished_tasks->count()): ?>
- "
- class="gButtonLink ui-icon-left ui-state-default ui-corner-all right">
- = t("remove all finished") ?>
-
= t("Finished Tasks") ?>
@@ -140,12 +135,15 @@
|
= t("Action") ?>
+ "
+ class="gButtonLink ui-icon-left ui-state-default ui-corner-all right">
+ = t("remove all finished") ?>
|
$i = 0; ?>
foreach ($finished_tasks as $task): ?>
= ($i % 2 == 0) ? "gOddRow" : "gEvenRow" ?>">
- |
+ | ">
= gallery::date_time($task->updated) ?>
|
diff --git a/themes/admin_default/css/screen.css b/themes/admin_default/css/screen.css
index c275eb10..21b2b31c 100644
--- a/themes/admin_default/css/screen.css
+++ b/themes/admin_default/css/screen.css
@@ -312,7 +312,6 @@ li.gError select {
.gError {
background-color: #f6cbca;
- color: red;
background-image: url('../images/ico-error.png');
}
@@ -346,11 +345,7 @@ table .gSuccess {
background-color: transparent !important;
}
-.gPager .gInfo,
-table .gError,
-table .gInfo,
-table .gSuccess,
-table .gWarning {
+.gPager .gInfo {
background-image: none !important;
}
diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css
index 5eb30bde..7cf4cfbe 100644
--- a/themes/default/css/screen.css
+++ b/themes/default/css/screen.css
@@ -308,7 +308,6 @@ li.gError select {
.gError {
background-color: #f6cbca;
- color: #f00;
background-image: url('../images/ico-error.png');
}
| | |