submit box actions hooks from filosofo. fixes #5873
git-svn-id: http://svn.automattic.com/wordpress/trunk@6901 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d92d57bd14
commit
2169d4e439
|
@ -96,7 +96,7 @@ addLoadEvent(focusit);
|
|||
<?php echo $form_pingback ?>
|
||||
<?php echo $form_prevstatus ?>
|
||||
|
||||
<div id="submitpost">
|
||||
<div class="submitbox" id="submitpost">
|
||||
|
||||
<div id="previewview">
|
||||
<?php if ( 'publish' == $post->post_status ) { ?>
|
||||
|
|
|
@ -59,10 +59,11 @@ function xfn_check($class, $value = '', $deprecated = '') {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="submitpost">
|
||||
<div class="submitbox" id="submitlink">
|
||||
<p class="submit">
|
||||
<input type="submit" name="save" value="<?php _e('Save'); ?>" style="font-weight: bold;" tabindex="4" />
|
||||
</p>
|
||||
<?php do_action('submitlink_box'); ?>
|
||||
</div>
|
||||
|
||||
<div id="linkcategorydiv" class="postbox <?php echo postbox_classes('linkcategorydiv', 'link'); ?>">
|
||||
|
|
|
@ -60,7 +60,7 @@ addLoadEvent(focusit);
|
|||
<?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
|
||||
</div>
|
||||
|
||||
<div id="submitpost">
|
||||
<div class="submitbox" id="submitpage">
|
||||
|
||||
<div id="previewview">
|
||||
<?php if ( 'publish' == $post->post_status ) { ?>
|
||||
|
@ -130,6 +130,7 @@ if ( ('edit' == $action) && current_user_can('delete_page', $post_ID) )
|
|||
<?php printf(__('Last edited on %1$s at %2$s'), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified)); ?>
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
<?php do_action('submitpage_box'); ?>
|
||||
</div>
|
||||
|
||||
<p class="submit">
|
||||
|
|
|
@ -1053,7 +1053,7 @@ html, body {
|
|||
background-position: 4px 18px;
|
||||
}
|
||||
|
||||
#submitpost {
|
||||
.submitbox {
|
||||
position: absolute;
|
||||
background-color: #eaf3fa;
|
||||
width: 200px;
|
||||
|
@ -1062,12 +1062,12 @@ html, body {
|
|||
-moz-border-radius: 3px;
|
||||
}
|
||||
|
||||
#submitpost #previewview {
|
||||
.submitbox #previewview {
|
||||
background-color: #2683ae;
|
||||
padding: 15px 10px;
|
||||
}
|
||||
|
||||
#submitpost #previewview a {
|
||||
.submitbox #previewview a {
|
||||
background: #ebebeb;
|
||||
-moz-border-radius: 5px;
|
||||
padding: 6px;
|
||||
|
@ -1078,7 +1078,7 @@ html, body {
|
|||
|
||||
}
|
||||
|
||||
#submitpost .submit {
|
||||
.submitbox .submit {
|
||||
text-align: left;
|
||||
background-color: #464646;
|
||||
padding: 15px 10px;
|
||||
|
|
Loading…
Reference in New Issue