Button stylings from my. fixes #5912

git-svn-id: https://develop.svn.wordpress.org/trunk@6913 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-02-19 07:09:31 +00:00
parent c17b7cf4a6
commit c349fa79be
3 changed files with 23 additions and 3 deletions

View File

@ -55,6 +55,10 @@
border-bottom: 1px solid #448abd;
}
#rightnow a:hover {
color: #d54e21;
}
div#dashboard-widgets {
position: relative;
left: 20px;

View File

@ -39,7 +39,7 @@ $today = current_time('mysql', 1);
<h2><?php _e('Dashboard'); ?></h2>
<div id="rightnow">
<h3 class="reallynow"><span><?php _e('Right Now'); ?></span> <a href="post-new.php" class="rbutton"><?php _e('Write a New Post'); ?></a> <a href="page-new.php" class="rbutton"><?php _e('Write a New Page'); ?></a><br class="clear" /></h3>
<h3 class="reallynow"><span><?php _e('Right Now'); ?></span> <a href="post-new.php" class="rbutton"><strong><?php _e('Write a New Post'); ?></strong></a> <a href="page-new.php" class="rbutton"><?php _e('Write a New Page'); ?></a><br class="clear" /></h3>
<?php
$num_posts = wp_count_posts( 'post' );

View File

@ -132,8 +132,17 @@ form#upload #post_content {
}
.submit input, .submit input:focus, .button, .button:focus {
font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
color: #246;
padding: 2px;
padding: 6px;
background: #e5e5e5;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border: none;
}
.submit input:hover, .button:hover {
color: #d54e21;
}
.editform th, #postcustomsubmit {
@ -617,6 +626,9 @@ a.view-comment-post-link {
color: #246;
letter-spacing: normal;
}
#wphead #viewsite a:hover {
color: #d54e21;
}
#wphead h1 {
font: normal 36px Georgia, "Times New Roman", Times, serif;
color: #555;
@ -1082,14 +1094,18 @@ html, body {
.submitbox #previewview a {
background: #ebebeb;
-moz-border-radius: 5px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-webkit-border-radius: 5px;
padding: 6px;
font-weight: normal;
color: #264761;
border-bottom: none;
font-size: 14px;
}
.submitbox #previewview a:hover {
color: #d54e21;
}
.submitbox .submit {