Admin theme style cleanup. Merged separate selected, available, unavailable into a single set of reusable classes. Applied alternating row bg colors. Removed inline CSS from admin views. Moved user admin css into admin_default theme style sheet.

This commit is contained in:
Chad Kieffer
2009-01-24 20:06:13 +00:00
parent cbff78daa8
commit 55cd2afde5
17 changed files with 260 additions and 308 deletions
+73 -75
View File
@@ -7,85 +7,83 @@
}
</script>
<div id="gAdminThemes">
<h1> <?= t("Theme Administration") ?> </h1>
<p>
<?= t("Gallery allows you to choose a theme for browsing your Gallery, as well as a special theme for the administration interface. Click a theme to preview and activate it.") ?>
</p>
<h1> <?= t("Theme Administration") ?> </h1>
<p>
<?= t("Gallery allows you to choose a theme for browsing your Gallery, as well as a special theme for the administration interface. Click a theme to preview and activate it.") ?>
</p>
<div id="gSiteTheme">
<h2> <?= t("Gallery theme") ?> </h2>
<div class="gBlock selected">
<img src="<?= url::file("themes/{$site}/thumbnail.png") ?>"
alt="<?= $themes[$active]->name ?>" />
<h3> <?= $themes[$site]->name ?> </h3>
<p>
<?= $themes[$site]->description ?>
</p>
</div>
<h2> <?= t("Available Gallery themes") ?> </h2>
<div id="gAvailableSiteThemes">
<? $count = 0 ?>
<? foreach ($themes as $id => $info): ?>
<? if (!$info->site) continue ?>
<? if ($id == $site) continue ?>
<div class="gBlock">
<a href="<?= url::site("admin/themes/preview/site/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: %theme_name", array("theme_name" => $info->name)) ?>">
<img src="<?= url::file("themes/{$id}/thumbnail.png") ?>"
alt="<?= $info->name ?>" />
<h3> <?= $info->name ?> </h3>
<p>
<?= $info->description ?>
</p>
</a>
</div>
<? $count++ ?>
<? endforeach ?>
<? if (!$count): ?>
<p>
<?= t("There are no other site themes available.") ?>
</p>
<? endif ?>
</div>
<div id="gSiteTheme">
<h2> <?= t("Gallery theme") ?> </h2>
<div class="gBlock gSelected">
<img src="<?= url::file("themes/{$site}/thumbnail.png") ?>"
alt="<?= $themes[$active]->name ?>" />
<h3> <?= $themes[$site]->name ?> </h3>
<p>
<?= $themes[$site]->description ?>
</p>
</div>
<div id="gAdminTheme">
<h2> <?= t("Admin theme") ?> </h2>
<div class="gBlock selected">
<img src="<?= url::file("themes/{$admin}/thumbnail.png") ?>"
alt="<?= $themes[$admin]->name ?>" />
<h3> <?= $themes[$admin]->name ?> </h3>
<p>
<?= $themes[$admin]->description ?>
</p>
<h2> <?= t("Available Gallery themes") ?> </h2>
<div class="gAvailable">
<? $count = 0 ?>
<? foreach ($themes as $id => $info): ?>
<? if (!$info->site) continue ?>
<? if ($id == $site) continue ?>
<div class="gBlock">
<a href="<?= url::site("admin/themes/preview/site/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: %theme_name", array("theme_name" => $info->name)) ?>">
<img src="<?= url::file("themes/{$id}/thumbnail.png") ?>"
alt="<?= $info->name ?>" />
<h3> <?= $info->name ?> </h3>
<p>
<?= $info->description ?>
</p>
</a>
</div>
<? $count++ ?>
<? endforeach ?>
<h2> <?= t("Available admin themes") ?> </h2>
<div id="gAvailableAdminThemes">
<? $count = 0 ?>
<? foreach ($themes as $id => $info): ?>
<? if (!$info->admin) continue ?>
<? if ($id == $admin) continue ?>
<div class="gBlock">
<a href="<?= url::site("admin/themes/preview/admin/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: %theme_name", array("theme_name" => $info->name)) ?>">
<img src="<?= url::file("themes/{$id}/thumbnail.png") ?>"
alt="<?= $info->name ?>" />
<h3> <?= $info->name ?> </h3>
<p>
<?= $info->description ?>
</p>
</a>
</div>
<? $count++ ?>
<? endforeach ?>
<? if (!$count): ?>
<p>
<?= t("There are no other admin themes available.") ?>
</p>
<? endif ?>
</div>
<? if (!$count): ?>
<p>
<?= t("There are no other site themes available.") ?>
</p>
<? endif ?>
</div>
</div>
<div id="gAdminTheme">
<h2> <?= t("Admin theme") ?> </h2>
<div class="gBlock gSelected">
<img src="<?= url::file("themes/{$admin}/thumbnail.png") ?>"
alt="<?= $themes[$admin]->name ?>" />
<h3> <?= $themes[$admin]->name ?> </h3>
<p>
<?= $themes[$admin]->description ?>
</p>
</div>
<h2> <?= t("Available admin themes") ?> </h2>
<div class="gAvailable">
<? $count = 0 ?>
<? foreach ($themes as $id => $info): ?>
<? if (!$info->admin) continue ?>
<? if ($id == $admin) continue ?>
<div class="gBlock">
<a href="<?= url::site("admin/themes/preview/admin/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: %theme_name", array("theme_name" => $info->name)) ?>">
<img src="<?= url::file("themes/{$id}/thumbnail.png") ?>"
alt="<?= $info->name ?>" />
<h3> <?= $info->name ?> </h3>
<p>
<?= $info->description ?>
</p>
</a>
</div>
<? $count++ ?>
<? endforeach ?>
<? if (!$count): ?>
<p>
<?= t("There are no other admin themes available.") ?>
</p>
<? endif ?>
</div>
</div>