/*
 * Restyle Wordpress admin interface
 *
 * Author	: Daniel LaGesse
 * Updated	: April 13, 2008
 * Website	: http://daniel1992.wordpress.com/
 * Description	: Restyles the new Wordpress interface to my preferences.
 * Usage	: Use with the 'Stylish' Firefox extension (http://userstyles.org/)
 * 
 */

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain(wordpress.com) {

/*Remove page title*/
#wphead h1{
  display:none !important;
}

/*Remove 'support' tab*/
#feedbacklink {
display:none !important;
}

/*Remove the 'You are using a theme' text*/
p.youare {
display:none !important;
}

/*Change the top title to matching colors instead of orange*/
.reallynow {
background-color: #eaf3fa !important;
color: #333 !important;
font-size: 14px !important;
line-height:1 !important;
padding: 4px !important;
}

/*Get rid of the footer*/
#footer {
display:none !important;
}

/*Get rid of favicons in the 'Hot Links'. They look terrible.*/
#hotdiv img {
display:none !important;
}

/*Get rid of the 'Paid Upgrades' link*/
a[href="paid-upgrades.php"] {
display:none !important;
}

/*Remove 'New page' link. Still accessible from posting page.*/
h3.reallynow a[href="page-new.php"] {
display:none !important;
}

/*Remove the (again) Repeated current page title.*/
.wrap h2 {
display:none !important;
}

/*Bold the title of the current page.*/
a.current {
color:#333333 !important;
font-weight:bold !important;
}

/*Get rid of the background color on the summary, disinguish with text weight.*/
p.youhave {
background-color: #fff !important;
font-weight:bold !important;
}

/*Remove the Recent comment blockquote*/
.dashboard-widget-content blockquote{
display:none;
font-size:0 !important;
}
/*Make the meta of the first into a normal comment*/
.dashboard-widget-content p.comment-meta {
display:list-item !important;
margin-left:15px !important;
}

/*Style the 'Write post' button to fit in*/
.rbutton {
background-color:transparent !important;
color:#333333 !important;
text-decoration: underline !important;
}

/*Remove the little smiley face stats tracker*/
#wpstats {
display:none;
}

#stats-info {
}

/*Remove RSS icon in 'Incoming Links'*/
h3.dashboard-widget-title small img.rss-icon {
display:none !important;
}

/*Slightly hackish way to have less hot links...*/
hotdiv ol li:last-child {
display:none !important;
}
/*more of the same ^^*/
#hotposts li:last-child {
display:none !important;
}

/*Change the hover color to fit*/
a:hover {
color:#000 !important;
}

/*Make the 'Dashboard' link more distinctive.*/
#dashmenu li a{
color:#fff !important;
font-weight:bold;
font-size:12px !important;
}

/*Make sure it looks good when the tab is there.*/
#dashmenu li a[class="current"] {
color:#000 !important;
font-weight:bold;
font-size:12px !important;
}

/*Make it underline on hover for distinction.*/
#dashmenu li a:hover {
text-decoration: underline !important;
}

/*Fix the comments page search box.*/
#post-search {
margin-top: -30px !important;
}
/*-30px works for me, you may need a different height.*/

/*Remove the underline on the 'Available Themes' anchor on the design page. Not needed, as it is insignificant.*/
#themenav li.active a {
text-decoration:none;
}

/*Black borders on buttons*/
.button-secondary:hover {
color:#000 !important;
border-color:#000 !important;
}





/* Possible changes in future - unsure as of yet.
#dashboard_recent_comments {
width:100% !important;
padding-bottom:-100px !important;
}

#dashboard_incoming_links {
display:none;
}
*/
}