Make WordPress Core


Ignore:
Timestamp:
02/21/2008 12:27:23 AM (18 years ago)
Author:
ryan
Message:

Admin styling updates from mt. fixes #5940

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-form-advanced.php

    r6949 r6950  
    4646}
    4747
    48 $saveasdraft = '<input name="save" type="submit" id="save" tabindex="3" value="' . attribute_escape( __('Save and Continue Editing') ) . '" />';
     48$saveasdraft = '<input name="save" type="submit" id="save" class="button" tabindex="3" value="' . attribute_escape( __('Save and Continue Editing') ) . '" />';
    4949
    5050?>
     
    155155
    156156<p class="submit">
    157 <input type="submit" name="save" id="save-post" value="<?php _e('Save'); ?>" style="font-weight: bold;" tabindex="4" />
     157<input type="submit" name="save" id="save-post" value="<?php _e('Save'); ?>" style="font-weight: bold;" tabindex="4" class="button" />
    158158<?php
    159159if ( !in_array( $post->post_status, array('publish', 'future') ) || 0 == $post_ID ) {
    160160?>
    161161<?php if ( current_user_can('publish_posts') ) : ?>
    162     <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" />
     162    <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" />
    163163<?php else : ?>
    164     <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" />
     164    <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" />
    165165<?php endif; ?>
    166166<?php
Note: See TracChangeset for help on using the changeset viewer.