Ticket #48782: 48782.diff
| File 48782.diff, 2.9 KB (added by , 5 years ago) |
|---|
-
src/wp-admin/css/common.css
2453 2453 } 2454 2454 2455 2455 #namediv input { 2456 width: 98%;2456 width: 100%; 2457 2457 } 2458 2458 2459 2459 #namediv p { -
src/wp-admin/css/edit.css
77 77 78 78 input#link_description, 79 79 input#link_url { 80 width: 98%;80 width: 100%; 81 81 } 82 82 83 83 #pending { … … 651 651 } 652 652 653 653 #poststuff .inside { 654 margin: 6px 0 0 0;654 margin: 6px 0 0; 655 655 } 656 656 657 .link-php #poststuff .inside, 658 .link-add-php #poststuff .inside { 659 margin-top: 12px; 660 } 661 657 662 #poststuff .stuffbox .inside { 658 663 margin: 0; 659 664 } -
src/wp-admin/edit-link-form.php
110 110 111 111 <div id="post-body" class="metabox-holder columns-<?php echo ( 1 === get_current_screen()->get_columns() ) ? '1' : '2'; ?>"> 112 112 <div id="post-body-content"> 113 <div id="namediv" class=" stuffbox">114 <h2 ><label for="link_name"><?php _ex( 'Name', 'link name' ); ?></label></h2>113 <div id="namediv" class="postbox"> 114 <h2 class="postbox-header"><label for="link_name"><?php _ex( 'Name', 'link name' ); ?></label></h2> 115 115 <div class="inside"> 116 116 <input type="text" name="link_name" size="30" maxlength="255" value="<?php echo esc_attr( $link->link_name ); ?>" id="link_name" /> 117 117 <p><?php _e( 'Example: Nifty blogging software' ); ?></p> … … 118 118 </div> 119 119 </div> 120 120 121 <div id="addressdiv" class=" stuffbox">122 <h2 ><label for="link_url"><?php _e( 'Web Address' ); ?></label></h2>121 <div id="addressdiv" class="postbox"> 122 <h2 class="postbox-header"><label for="link_url"><?php _e( 'Web Address' ); ?></label></h2> 123 123 <div class="inside"> 124 124 <input type="text" name="link_url" size="30" maxlength="255" class="code" value="<?php echo esc_attr( $link->link_url ); ?>" id="link_url" /> 125 125 <p><?php _e( 'Example: <code>https://wordpress.org/</code> — don’t forget the <code>https://</code>' ); ?></p> … … 126 126 </div> 127 127 </div> 128 128 129 <div id="descriptiondiv" class=" stuffbox">130 <h2 ><label for="link_description"><?php _e( 'Description' ); ?></label></h2>129 <div id="descriptiondiv" class="postbox"> 130 <h2 class="postbox-header"><label for="link_description"><?php _e( 'Description' ); ?></label></h2> 131 131 <div class="inside"> 132 132 <input type="text" name="link_description" size="30" maxlength="255" value="<?php echo isset( $link->link_description ) ? esc_attr( $link->link_description ) : ''; ?>" id="link_description" /> 133 133 <p><?php _e( 'This will be shown when someone hovers over the link in the blogroll, or optionally below the link.' ); ?></p>