diff options
-rw-r--r-- | themes/admin_default/css/screen.css | 5 | ||||
-rw-r--r-- | themes/admin_default/views/admin.html.php | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/themes/admin_default/css/screen.css b/themes/admin_default/css/screen.css index 98e0905e..e68620a5 100644 --- a/themes/admin_default/css/screen.css +++ b/themes/admin_default/css/screen.css @@ -106,7 +106,7 @@ width: 105px; /* 107px - padding-left */ height: 48px; background-image: url('../../default/images/logo.png'); - color: gray ! important; + color: #A5A5A5 ! important; } #gHeader #gLogo:hover { color: #FF6600 ! important; @@ -117,9 +117,6 @@ float: none; margin: 0; padding: 5px 0 10px 0; -} - -#gHeader #gLoginMenu { text-align: right; } diff --git a/themes/admin_default/views/admin.html.php b/themes/admin_default/views/admin.html.php index 33e7f58f..575f8a96 100644 --- a/themes/admin_default/views/admin.html.php +++ b/themes/admin_default/views/admin.html.php @@ -47,7 +47,9 @@ <li class="first"><?= html::anchor("albums/1", "← ".t("Back to the Gallery")) ?></li> <li id="gLogoutLink"><a href="<?= url::site("logout?continue=albums/1&csrf=$csrf") ?>"><?= t("Logout") ?></a></li> </ul> - <a id="gLogo" href="<?= url::site("albums/1") ?>" title="<?= t("go back to the Gallery") ?>"><!--<img src="<?= url::file("themes/default/images/logo.png") ?>" alt="<?= t("Gallery logo: Your Photos on Your Web Site") ?>" />-->← <?= t("back to the ...") ?></a> + <a id="gLogo" href="<?= url::site("albums/1") ?>" title="<?= t("go back to the Gallery") ?>"> + ← <?= t("back to the ...") ?> + </a> <div id="gSiteAdminMenu" style="display: none;"> <?= $theme->admin_menu() ?> </div> |