diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-10-26 23:08:05 -0600 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-27 07:37:04 -0700 |
commit | 02b6366dd2be9d9834eb1a4358960bb6ac6c662b (patch) | |
tree | 381e8e28be25dff2988cc27bd7fccb6e742b0901 | |
parent | 6ce8733efcb7392a8e653aa6538ea2e2f8ea4fbf (diff) |
Switch instances of first to g-first.
-rw-r--r-- | modules/gallery/helpers/gallery_theme.php | 2 | ||||
-rw-r--r-- | modules/gallery/views/login.html.php | 4 | ||||
-rw-r--r-- | modules/organize/css/organize.css | 2 | ||||
-rw-r--r-- | modules/organize/views/organize_dialog.html.php | 2 | ||||
-rw-r--r-- | themes/admin_wind/views/admin.html.php | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/modules/gallery/helpers/gallery_theme.php b/modules/gallery/helpers/gallery_theme.php index 49a458b7..3fcaca67 100644 --- a/modules/gallery/helpers/gallery_theme.php +++ b/modules/gallery/helpers/gallery_theme.php @@ -102,7 +102,7 @@ class gallery_theme_Core { } static function credits() { - return "<li class=\"first\">" . + return "<li class=\"g-first\">" . t(module::get_var("gallery", "credits"), array("url" => "http://gallery.menalto.com", "version" => gallery::VERSION)) . "</li>"; diff --git a/modules/gallery/views/login.html.php b/modules/gallery/views/login.html.php index ae709c7c..0e0d9039 100644 --- a/modules/gallery/views/login.html.php +++ b/modules/gallery/views/login.html.php @@ -1,13 +1,13 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <ul id="g-login-menu" class="g-inline"> <? if ($user->guest): ?> - <li class="first"> + <li class="g-first"> <a href="<?= url::site("login/ajax") ?>" title="<?= t("Login to Gallery")->for_html_attr() ?>" id="g-login-link" class="g-dialog-link"><?= t("Login") ?></a> </li> <? else: ?> - <li class="first"> + <li class="g-first"> <? if (identity::is_writable()): ?> <?= t('Logged in as %name', array('name' => html::mark_clean( '<a href="' . url::site("form/edit/users/{$user->id}") . diff --git a/modules/organize/css/organize.css b/modules/organize/css/organize.css index afa89229..89c6c027 100644 --- a/modules/organize/css/organize.css +++ b/modules/organize/css/organize.css @@ -14,7 +14,7 @@ width: 75%; } -#g-organize .yui-gf .first { +#g-organize .yui-gf .g-first { width: 25%; } diff --git a/modules/organize/views/organize_dialog.html.php b/modules/organize/views/organize_dialog.html.php index 7dcb01d9..cf8e9004 100644 --- a/modules/organize/views/organize_dialog.html.php +++ b/modules/organize/views/organize_dialog.html.php @@ -9,7 +9,7 @@ <h1 style="display:none"><?= t("Organize %name", array("name" => html::purify($album->title))) ?></h1> <div id="bd"> <div class="yui-gf"> - <div class="yui-u first"> + <div class="yui-u g-first"> <h3><?= t("Albums") ?></h3> </div> <div id="g-action-status" class="g-message-block yui-u"> diff --git a/themes/admin_wind/views/admin.html.php b/themes/admin_wind/views/admin.html.php index bbdde734..38109c17 100644 --- a/themes/admin_wind/views/admin.html.php +++ b/themes/admin_wind/views/admin.html.php @@ -44,7 +44,7 @@ <div id="g-header"> <?= $theme->admin_header_top() ?> <ul id="g-login-menu" class="g-inline"> - <li class="first"><?= html::anchor(item::root()->abs_url(), "← ".t("Back to the Gallery")) ?></li> + <li class="g-first"><?= html::anchor(item::root()->abs_url(), "← ".t("Back to the Gallery")) ?></li> <li id="g-logout-link"><a href="<?= url::site("logout?csrf=$csrf&continue=" . urlencode(item::root()->url())) ?>"><?= t("Logout") ?></a></li> </ul> <a id="g-logo" href="<?= item::root()->url() ?>" title="<?= t("go back to the Gallery")->for_html_attr() ?>"> |