Changeset 9703
- Timestamp:
- 11/14/2008 11:58:17 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-fresh.css
r9677 r9703 28 28 body > #upload-menu { 29 29 border-bottom-color: #fff; 30 } 31 32 kbd, code { 33 background: #eaeaea; 30 34 } 31 35 … … 602 606 #titlediv, 603 607 #poststuff .postarea, 604 #poststuff .stuffbox { 608 #poststuff .stuffbox, 609 .postbox input[type="text"], 610 .postbox textarea, 611 .stuffbox input[type="text"], 612 .stuffbox textarea { 605 613 border-color: #dfdfdf; 606 614 } -
trunk/wp-admin/css/dashboard.css
r9672 r9703 14 14 } 15 15 16 form .input-text-wrap input {16 #dashboard-widgets form .input-text-wrap input { 17 17 border: 0 none; 18 18 outline: none; … … 29 29 } 30 30 31 form .textarea-wrap textarea {31 #dashboard-widgets form .textarea-wrap textarea { 32 32 border: 0 none; 33 33 padding: 0; -
trunk/wp-admin/edit-link-form.php
r9699 r9703 374 374 <h3><label for="link_name"><?php _e('Name') ?></label></h3> 375 375 <div class="inside"> 376 <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo $link->link_name; ?>" id="link_name" /> <br />377 < ?php _e('Example: Nifty blogging software'); ?>376 <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo $link->link_name; ?>" id="link_name" /> 377 <p><?php _e('Example: Nifty blogging software'); ?></p> 378 378 </div> 379 379 </div> … … 382 382 <h3><label for="link_url"><?php _e('Web Address') ?></label></h3> 383 383 <div class="inside"> 384 <input type="text" name="link_url" size="30" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" /> <br />385 < ?php _e('Example: <code>http://wordpress.org/</code> — don’t forget the <code>http://</code>'); ?>384 <input type="text" name="link_url" size="30" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" /> 385 <p><?php _e('Example: <code>http://wordpress.org/</code> — don’t forget the <code>http://</code>'); ?></p> 386 386 </div> 387 387 </div> … … 390 390 <h3><label for="link_description"><?php _e('Description') ?></label></h3> 391 391 <div class="inside"> 392 <input type="text" name="link_description" size="30" tabindex="1" value="<?php echo isset($link->link_description) ? $link->link_description : ''; ?>" id="link_description" /> <br />393 < ?php _e('This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'); ?>392 <input type="text" name="link_description" size="30" tabindex="1" value="<?php echo isset($link->link_description) ? $link->link_description : ''; ?>" id="link_description" /> 393 <p><?php _e('This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'); ?></p> 394 394 </div> 395 395 </div> -
trunk/wp-admin/js/inline-edit-post.js
r9607 r9703 215 215 if ( 'draft' == $('input[name="post_status"]').val() ) 216 216 row.find('td.column-comments').hide(); 217 row.show()218 .animate( { backgroundColor: '#CCEEBB' }, 500)219 .animate( { backgroundColor: '#eefee7' }, 500);220 217 inlineEditPost.addEvents(row); 218 row.fadeIn(); 221 219 } else { 222 220 $('#edit-'+id+' .inline-edit-save').append('<span class="error">'+inlineEditL10n.error+'</span>'); -
trunk/wp-admin/js/link.js
r8988 r9703 43 43 addAfter: catAddAfter 44 44 } ); 45 46 $('a[href="#categories-all"]').click(function(){deleteUserSetting('cats');}); 47 $('a[href="#categories-pop"]').click(function(){setUserSetting('cats','pop');}); 48 if ( 'pop' == getUserSetting('cats') ) 49 $('a[href="#categories-pop"]').click(); 50 45 51 jQuery('#category-add-toggle').click( function() { 46 52 jQuery(this).parents('div:first').toggleClass( 'wp-hidden-children' ); -
trunk/wp-admin/wp-admin.css
r9689 r9703 163 163 164 164 kbd, code { 165 background: #e5e5e5; 166 padding: 2px 3px; 165 padding: 1px 3px; 167 166 margin: 0 1px; 168 167 font-size: 12px; … … 438 437 439 438 #namediv input { 440 width: 94%; 441 border-style: solid; 442 border-width: 1px; 439 width: 98%; 443 440 } 444 441 … … 1696 1693 } 1697 1694 1698 #poststuff .inside { 1695 .postbox table.form-table { 1696 margin-bottom: 0; 1697 } 1698 1699 .postbox input[type="text"], 1700 .postbox textarea, 1701 .stuffbox input[type="text"], 1702 .stuffbox textarea { 1703 border-width: 1px; 1704 border-style: solid; 1705 } 1706 1707 #poststuff .inside, 1708 #poststuff .inside p { 1699 1709 font-size: 11px; 1700 margin: 0 6px 6px; 1710 margin: 2px 6px 6px; 1711 } 1712 1713 #poststuff .inside .submitbox p { 1714 margin: 1em 0; 1701 1715 } 1702 1716 … … 1749 1763 font-size: 11px; 1750 1764 margin-top: -1px; 1751 }1752 1753 #link_name, #link_url, #link_description {1754 font-size: 1.7em;1755 padding: 4px 3px;1756 width: 98%;1757 1765 } 1758 1766
Note: See TracChangeset
for help on using the changeset viewer.