Make WordPress Core

Changeset 1240


Ignore:
Timestamp:
05/08/2004 01:15:03 AM (21 years ago)
Author:
saxmatt
Message:

Hot buttons!

Location:
trunk
Files:
1 added
9 edited

Legend:

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

    r1236 r1240  
    152152
    153153
    154 <p><?php echo $saveasdraft; ?> <input type="submit" name="submit" value="<?php _e('Save') ?>" style="font-weight: bold;" tabindex="6" />
     154<p class="submit"><?php echo $saveasdraft; ?> <input type="submit" name="submit" value="<?php _e('Save') ?>" style="font-weight: bold;" tabindex="6" />
    155155<?php
    156156if ('publish' != $post_status || 0 == $post_ID) {
  • trunk/wp-admin/edit-form.php

    r1239 r1240  
    9292<?php echo $form_pingback ?>
    9393<?php echo $form_trackback; ?>
    94 <p><input name="saveasdraft" type="submit" id="saveasdraft" tabindex="9" value="<?php _e('Save as Draft') ?>" />
     94<p class="submit"><input name="saveasdraft" type="submit" id="saveasdraft" tabindex="9" value="<?php _e('Save as Draft') ?>" />
    9595  <input name="saveasprivate" type="submit" id="saveasprivate" tabindex="10" value="<?php _e('Save as Private') ?>" />
    9696  <input name="publish" type="submit" id="publish" tabindex="6" style="font-weight: bold;" value="<?php _e('Publish') ?>" />
  • trunk/wp-admin/options-discussion.php

    r1113 r1240  
    107107        </p>
    108108</fieldset>
    109         <p style="text-align: right;">
     109        <p class="submit">
    110110        <input type="submit" name="Submit" value="<?php _e('Update Options') ?>" />
    111111        </p>
  • trunk/wp-admin/options-general.php

    r1208 r1240  
    113113
    114114    </fieldset>
    115     <p style="text-align: right;">
    116       <input type="submit" name="Submit" value="<?php _e('Update Options') ?>" />
     115    <p class="submit">
     116      <input type="submit" name="Submit" value="<?php _e('Update Options') ?> &raquo;" />
    117117    </p>
    118118  </form>
  • trunk/wp-admin/options-misc.php

    r1156 r1240  
    125125            <?php _e('Use legacy <code>my-hacks.php</code> file support') ?></label>
    126126        </p>
    127     <p style="text-align: right;">
    128       <input type="submit" name="Submit" value="<?php _e('Update Options') ?>" />
     127    <p class="submit">
     128      <input type="submit" name="Submit" value="<?php _e('Update Options') ?> &raquo;" />
    129129    </p>
    130130  </form>
  • trunk/wp-admin/options-reading.php

    r1124 r1240  
    9595             <?php _e('WordPress should compress articles (gzip) if browsers ask for them') ?></label>
    9696        </p>
    97         <p style="text-align: right;">
    98             <input type="submit" name="Submit" value="<?php _e('Update Options') ?>" />
     97        <p class="submit">
     98            <input type="submit" name="Submit" value="<?php _e('Update Options') ?> &raquo;" />
    9999        </p>
    100100    </form>
  • trunk/wp-admin/options-writing.php

    r1206 r1240  
    119119            </table>
    120120        </fieldset>
    121     <p style="text-align: right;">
    122       <input type="submit" name="Submit" value="<?php _e('Update Options') ?>" />
     121    <p class="submit">
     122      <input type="submit" name="Submit" value="<?php _e('Update Options') ?> &raquo;" />
    123123    </p>
    124124  </form>
  • trunk/wp-admin/profile.php

    r1239 r1240  
    318318  </table>
    319319  <p class="submit">
    320     <input type="submit" value="<?php _e('Update &raquo;') ?>" name="submit" />
     320    <input type="submit" value="<?php _e('Update Profile &raquo;') ?>" name="submit" />
    321321  </p>
    322322    </div>
  • trunk/wp-admin/wp-admin.css

    r1222 r1240  
    160160}
    161161
     162.submit input, .submit input:focus {
     163    background: url(../wp-images/fade-butt.png);
     164    border: 3px double #999;
     165    border-left-color: #ccc;
     166    border-top-color: #ccc;
     167    color: #333;
     168    padding: 0.25em;
     169}
     170
     171.submit input:active {
     172    background: #f4f4f4;
     173    border: 3px double #ccc;
     174    border-left-color: #999;
     175    border-top-color: #999;
     176}
     177
    162178.submit, #quicktags, .editform th, #postcustomsubmit {
    163179    text-align: right;
     
    281297#categorydiv input, #poststatusdiv input, #commentstatusdiv input, #pingstatusdiv input {
    282298    border: none;
     299}
     300
     301#content, #excerpt {
     302    margin-left: 1%;
     303    width: 97%;
    283304}
    284305
     
    354375}
    355376
    356 
    357377#postcustom table input, #postcustom table textarea {
    358378    width: 95%;
     
    365385#poststuff {
    366386    margin-right: 11em;
    367 }
    368 
    369 #content, #excerpt {
    370     margin-left: 1%;
    371     width: 97%;
    372387}
    373388
     
    399414
    400415#save {
    401     width: 13em;
     416    width: 14em;
    402417}
    403418
Note: See TracChangeset for help on using the changeset viewer.