Button stylings from my. fixes #5912
git-svn-id: http://svn.automattic.com/wordpress/trunk@6913 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a1909d2180
commit
b7ef7b598f
|
@ -55,6 +55,10 @@
|
||||||
border-bottom: 1px solid #448abd;
|
border-bottom: 1px solid #448abd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#rightnow a:hover {
|
||||||
|
color: #d54e21;
|
||||||
|
}
|
||||||
|
|
||||||
div#dashboard-widgets {
|
div#dashboard-widgets {
|
||||||
position: relative;
|
position: relative;
|
||||||
left: 20px;
|
left: 20px;
|
||||||
|
|
|
@ -39,7 +39,7 @@ $today = current_time('mysql', 1);
|
||||||
<h2><?php _e('Dashboard'); ?></h2>
|
<h2><?php _e('Dashboard'); ?></h2>
|
||||||
|
|
||||||
<div id="rightnow">
|
<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
|
<?php
|
||||||
$num_posts = wp_count_posts( 'post' );
|
$num_posts = wp_count_posts( 'post' );
|
||||||
|
|
|
@ -132,8 +132,17 @@ form#upload #post_content {
|
||||||
}
|
}
|
||||||
|
|
||||||
.submit input, .submit input:focus, .button, .button:focus {
|
.submit input, .submit input:focus, .button, .button:focus {
|
||||||
|
font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
|
||||||
color: #246;
|
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 {
|
.editform th, #postcustomsubmit {
|
||||||
|
@ -617,6 +626,9 @@ a.view-comment-post-link {
|
||||||
color: #246;
|
color: #246;
|
||||||
letter-spacing: normal;
|
letter-spacing: normal;
|
||||||
}
|
}
|
||||||
|
#wphead #viewsite a:hover {
|
||||||
|
color: #d54e21;
|
||||||
|
}
|
||||||
#wphead h1 {
|
#wphead h1 {
|
||||||
font: normal 36px Georgia, "Times New Roman", Times, serif;
|
font: normal 36px Georgia, "Times New Roman", Times, serif;
|
||||||
color: #555;
|
color: #555;
|
||||||
|
@ -1082,14 +1094,18 @@ html, body {
|
||||||
|
|
||||||
.submitbox #previewview a {
|
.submitbox #previewview a {
|
||||||
background: #ebebeb;
|
background: #ebebeb;
|
||||||
-moz-border-radius: 5px;
|
-moz-border-radius: 2px;
|
||||||
|
-webkit-border-radius: 2px;
|
||||||
-webkit-border-radius: 5px;
|
-webkit-border-radius: 5px;
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: #264761;
|
color: #264761;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submitbox #previewview a:hover {
|
||||||
|
color: #d54e21;
|
||||||
}
|
}
|
||||||
|
|
||||||
.submitbox .submit {
|
.submitbox .submit {
|
||||||
|
|
Loading…
Reference in New Issue