5175fd0f by Kevin Burton

updated branding

1 parent 5f1bcaad
<?php
namespace Tz\WordPress\Tools\Branding;
use Tz\WordPress\Tools;
call_user_func(function() {
Tools\add_actions(__NAMESPACE__ . '\Actions');
});
class Actions {
public static function admin_print_styles() {
_enqueue_style('branding-style', Tools\url('css/tenzing.css', __FILE__));
}
public static function admin_head() {
/*
global $current_user;
get_currentuserinfo();
include('views/header.php');
*/
}
public static function admin_footer() {
include('views/footer.php');
public static function admin_footer_text() {
echo '&copy; 2010 Tenzing Communications Inc.';
}
public static function login_head() {
echo '<link rel="stylesheet" type="text/css" href="' . Tools\url('css/tz_login.css', __FILE__) . '" />';
}
}
Tools\add_actions(__NAMESPACE__ . '\Actions');
//Tools\add_actions(__NAMESPACE__ . '\Actions');
?>
\ No newline at end of file
......
......@@ -19,7 +19,57 @@
*
*/
#header-logo {
display:none;
/*
background-color:#3b0d32;
color:#fff;
*/
}
#wphead { background:#3b0d32; height:56px; border-bottom: 2px solid #71aed7; }
#footer { background:#3b0d32; color:#fadfb3; }
#footer {
border-style:solid;
border-top:1px solid;
margin-top:-46px;
border-color: #71aed7;
border:none;
}
#wphead h1 {
background: transparent url(../images/tz.gif) left no-repeat;
padding-left:200px;
color:#fff;
height: 35px;
overflow: hidden;
}
#wphead h1 a {
display: inline-block;
margin-top:4px;
}
#wphead h1 a,
#wphead h1 a span { color:#f7bd55; font-family: Georgia, Helvetica, Serif; font-style: italic;}
#wphead > a { color:#fff; }
#user_info {margin-top:5px; color:#fff; }
#user_info p a, #user_info a { color: #fadfb3; }
#favorite-actions { margin: 15px 12px 0; }
#user_info a:link, #user_info a:visited, #footer a:link, #footer a:visited {
color:#f7bd55;
text-decoration:none;
}
.wp-admin { background:#fdfdee;}
#backtoblog { background:#3b0d32; color:#fadfb3; }
/*
#wphead { display:none; }
#TzBrandingHeader {
......@@ -35,7 +85,8 @@
#TzBrandingHeader_UtilityMenu a { color: #fce4c0; text-decoration:none; }
#TzBrandingHeader_UtilityMenu a:hover { color: #f7bd55; text-decoration:underline;}
#footer { display:none;}
/* #footer { display:none;} */
#TzBrandingFooter {
background-color:#3B0D32;
color:#f7bd55;
......@@ -47,9 +98,4 @@
margin-top: -28px;
}
#TzBrandingFooter a { color:#fff; text-decoration:none; }
#wpcontent {
/*background: #FFFFFF url(../images/backing.gif) top left repeat-y;*/
}
.update-nag { display:none; }
\ No newline at end of file
*/
\ No newline at end of file
......
......@@ -67,3 +67,14 @@ body.login {
}
p#backtoblog { display:block; }
#backtoblog { background:#3b0d32; color:#fadfb3; border:none; }
.login #backtoblog a {
color:#855d7e;
}
#user_pass, #user_login, #user_email {
font-family: Georgia, Helvetica, Serif;
font-size:18px;
font-style: italic;
}
\ No newline at end of file
......