diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-09-30 00:42:38 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-09-30 00:42:38 -0600 |
commit | 1c68190de0f148b27eacbfba8f1e290149e7dd1b (patch) | |
tree | cbf07126f5edbbec48be449ac9305f4056513ff8 /modules | |
parent | daa3a2b43cd6e1458014e763e9640b8db16cc0c1 (diff) |
Floated elements in table headings should appear before anything else. Fixes odd white space between column heading and and button on admin maintenance page when browser window is narrow.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gallery/views/admin_maintenance.html.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/gallery/views/admin_maintenance.html.php b/modules/gallery/views/admin_maintenance.html.php index cdfe6cfd..00ba5199 100644 --- a/modules/gallery/views/admin_maintenance.html.php +++ b/modules/gallery/views/admin_maintenance.html.php @@ -61,10 +61,10 @@ <?= t("Owner") ?> </th> <th> - <?= t("Action") ?> <a href="<?= url::site("admin/maintenance/cancel_running_tasks?csrf=$csrf") ?>" class="gButtonLink g-right ui-icon-left ui-state-default ui-corner-all"> <?= t("cancel all") ?></a> + <?= t("Action") ?> </th> </tr> <? $i = 0; ?> @@ -95,16 +95,16 @@ <?= html::clean($task->owner()->name) ?> </td> <td> + <a href="<?= url::site("admin/maintenance/cancel/$task->id?csrf=$csrf") ?>" + class="gButtonLink g-right ui-icon-left ui-state-default ui-corner-all"> + <?= t("cancel") ?> + </a> <? if ($task->state == "stalled"): ?> <a class="gDialogLink gButtonLink ui-icon-left ui-state-default ui-corner-all" href="<?= url::site("admin/maintenance/resume/$task->id?csrf=$csrf") ?>"> <?= t("resume") ?> </a> <? endif ?> - <a href="<?= url::site("admin/maintenance/cancel/$task->id?csrf=$csrf") ?>" - class="gButtonLink g-right ui-icon-left ui-state-default ui-corner-all"> - <?= t("cancel") ?> - </a> </td> </tr> <? $i++ ?> @@ -134,10 +134,10 @@ <?= t("Owner") ?> </th> <th> - <?= t("Action") ?> <a href="<?= url::site("admin/maintenance/remove_finished_tasks?csrf=$csrf") ?>" class="gButtonLink g-right ui-icon-left ui-state-default ui-corner-all"> <span class="ui-icon ui-icon-trash"></span><?= t("remove all finished") ?></a> + <?= t("Action") ?> </th> </tr> <? $i = 0; ?> |