Changeset 6475
- Timestamp:
- 12/23/2007 10:05:37 AM (18 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/comment.php
r6371 r6475 92 92 </form> 93 93 94 <table class=" editform" cellpadding="5">94 <table class="niceblue" cellpadding="5"> 95 95 <tr class="alt"> 96 <th scope="row"><?php _e('Author :'); ?></th>96 <th scope="row"><?php _e('Author'); ?></th> 97 97 <td><?php echo $comment->comment_author; ?></td> 98 98 </tr> 99 99 <?php if ( $comment->comment_author_email ) { ?> 100 100 <tr> 101 <th scope="row"><?php _e('E-mail :'); ?></th>101 <th scope="row"><?php _e('E-mail'); ?></th> 102 102 <td><?php echo $comment->comment_author_email; ?></td> 103 103 </tr> … … 105 105 <?php if ( $comment->comment_author_url ) { ?> 106 106 <tr> 107 <th scope="row"><?php _e('URL :'); ?></th>107 <th scope="row"><?php _e('URL'); ?></th> 108 108 <td><a href='<?php echo $comment->comment_author_url; ?>'><?php echo $comment->comment_author_url; ?></a></td> 109 109 </tr> 110 110 <?php } ?> 111 111 <tr> 112 <th scope="row" valign="top"><?php _e('Comment :'); ?></th>112 <th scope="row" valign="top"><?php _e('Comment'); ?></th> 113 113 <td><?php echo $comment->comment_content; ?></td> 114 114 </tr> -
trunk/wp-admin/options-general.php
r6026 r6475 13 13 <?php wp_nonce_field('update-options') ?> 14 14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options »') ?>" /></p> 15 <table class=" optiontable">15 <table class="niceblue"> 16 16 <tr valign="top"> 17 17 <th scope="row"><?php _e('Blog title:') ?></th> … … 55 55 </td> 56 56 </tr> 57 </table>58 <fieldset class="options">59 <legend><?php _e('Date and Time') ?></legend>60 <table class="optiontable">61 57 <tr> 62 58 <th scope="row"><?php _e('<abbr title="Coordinated Universal Time">UTC</abbr> time is:') ?> </th> … … 94 90 </tr> 95 91 </table> 96 </fieldset>97 92 98 93 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options »') ?>" /> -
trunk/wp-admin/options-misc.php
r4978 r6475 16 16 <fieldset class="options"> 17 17 <legend><?php _e('Uploading'); ?></legend> 18 <table class=" editform optiontable">18 <table class="niceblue"> 19 19 <tr valign="top"> 20 20 <th scope="row"><?php _e('Store uploads in this folder'); ?>:</th> -
trunk/wp-admin/options-privacy.php
r4495 r6475 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class=" optiontable">14 <table class="niceblue"> 15 15 <tr valign="top"> 16 16 <th scope="row"><?php _e('Blog visibility:') ?> </th> -
trunk/wp-admin/options-reading.php
r6026 r6475 16 16 <fieldset class="options"> 17 17 <legend><?php _e('Front Page') ?></legend> 18 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform">18 <table class="niceblue"> 19 19 <tr valign="top"> 20 20 <th width="33%" scope="row"><?php _e('Front page displays:')?></th> … … 49 49 <fieldset class="options"> 50 50 <legend><?php _e('Blog Pages') ?></legend> 51 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform">51 <table class="niceblue"> 52 52 <tr valign="top"> 53 53 <th width="33%" scope="row"><?php _e('Show at most:') ?></th> … … 76 76 </table> 77 77 </fieldset> 78 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform">78 <table class="niceblue"> 79 79 <tr valign="top"> 80 80 <th width="33%" scope="row"><?php _e('Encoding for pages and feeds:') ?></th> -
trunk/wp-admin/options-writing.php
r6385 r6475 13 13 <?php wp_nonce_field('update-options') ?> 14 14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options »') ?>" /></p> 15 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform"> 15 16 <table class="niceblue"> 16 17 <tr valign="top"> 17 18 <th width="33%" scope="row"> <?php _e('Size of the post box:') ?></th> … … 62 63 <p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: <code>%s</code>, <code>%s</code>, <code>%s</code>.'), wp_generate_password(), wp_generate_password(), wp_generate_password()) ?></p> 63 64 64 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform">65 <table class="niceblue"> 65 66 <tr valign="top"> 66 67 <th scope="row"><?php _e('Mail server:') ?></th> -
trunk/wp-admin/wp-admin.css
r6468 r6475 344 344 345 345 .submit input, .submit input:focus, .button, .button:focus { 346 background: url( images/fade-butt.png ); 347 border: 3px double #999; 348 border-left-color: #ccc; 349 border-top-color: #ccc; 350 color: #333; 351 padding: 0.25em; 352 } 353 354 .submit input:active, .button:active { 355 background: #f4f4f4; 356 border: 3px double #ccc; 357 border-left-color: #999; 358 border-top-color: #999; 359 } 360 361 .button, .button:focus { 362 padding: 0.15em; 363 } 364 365 * html .button { 366 padding: 0; 346 background: url(images/fade-butt.png); 347 color: #246; 348 padding: 0.3em; 349 -moz-border-radius: 4px; 367 350 } 368 351 369 352 .submit, .editform th, #postcustomsubmit { 370 353 text-align: right; 371 }372 373 .optiontable {374 width: 100%;375 }376 377 .optiontable td, .optiontable th {378 padding: .5em;379 }380 381 .optiontable th {382 width: 33%;383 text-align: right;384 font-size: 1.3em;385 font-weight: normal;386 354 } 387 355 … … 428 396 } 429 397 430 431 432 398 .narrow { 433 width: 450px;434 margin : auto;399 width: 70%; 400 margin-bottom: 40px; 435 401 } 436 402 … … 1395 1361 padding: 5px 0; 1396 1362 } 1363 1364 /* Tables used on comment.php and option/setting pages */ 1365 1366 .niceblue { 1367 border-collapse: collapse; 1368 margin-top: 1em; 1369 } 1370 1371 .niceblue td { 1372 margin-bottom: 9px; 1373 padding: 10px; 1374 border-bottom: 8px solid #fff; 1375 } 1376 1377 .niceblue th { 1378 text-align: left; 1379 padding: 10px; 1380 border-bottom: 8px solid #fff; 1381 } 1382 1383 .niceblue tr { 1384 background: #eaf3fa; 1385 }
Note: See TracChangeset
for help on using the changeset viewer.