diff options
Diffstat (limited to 'core/views/admin_themes.html.php')
-rw-r--r-- | core/views/admin_themes.html.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/core/views/admin_themes.html.php b/core/views/admin_themes.html.php index f8dc0812..5e10a803 100644 --- a/core/views/admin_themes.html.php +++ b/core/views/admin_themes.html.php @@ -8,44 +8,44 @@ var select_url = "<?= url::site("admin/themes/choose") ?>"; select = function(type, id) { $.post(select_url, {"type": type, "id": id, "csrf": '<?= access::csrf_token() ?>'}, - function() { load(type) }); + function() { load(type) }); } </script> <div id="gAdminThemes"> - <h1><?= t("Theme Administration") ?></h1> + <h1> <?= t("Theme Administration") ?> </h1> <div id="gThemeTabs"> <?= $menu ?> </div> - <!-- @todo: move this fix into the CSS file --> - <div style="clear: both"></div> - <div id="gThemePane"> <h1> <?= $title ?> </h1> - <div class="active"> + <div id="gSelectedTheme"> <h2> <?= t("Selected theme") ?> </h2> - <div class="theme_block"> - <h3> <?= $themes[$active]->name ?> </h3> - <img src="<?= url::file("themes/{$active}/thumbnail.png") ?>" + <div class="gBlock"> + <img src="<?= url::file("themes/{$active}/thumbnail.png") ?>" alt="<?= $themes[$active]->name ?>" /> + <h3> <?= $themes[$active]->name ?> </h3> <p> <?= $themes[$active]->description ?> </p> </div> </div> - <div class="available"> + <div id="gAvailableThemes"> <h2> <?= t("Available themes") ?> </h2> + <p><?= t("Change the look of your Gallery with one of the following available themes. Click to preview and activate.") ?></p> <? foreach ($themes as $id => $info): ?> <? if (!$info->$type) continue ?> <? if ($id == $active) continue ?> - <div class="theme_block gDialogLink" href="<?= url::site("admin/themes/preview/$type/$id") ?>"> + <div class="gBlock"> + <a href="<?= url::site("admin/themes/preview/$type/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: {{theme_name}}", array("theme_name" => $info->name)) ?>"> <h3> <?= $info->name ?> </h3> <img src="<?= url::file("themes/{$id}/thumbnail.png") ?>" alt="<?= $info->name ?>" /> <p> <?= $info->description ?> </p> + </a> </div> <? endforeach ?> </div> |