Changeset 46359
- Timestamp:
- 09/30/2019 05:55:07 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/edit.css
r46356 r46359 651 651 .edit-form-section { 652 652 margin-bottom: 20px; 653 } 654 655 .wp_attachment_details .attachment-content-description { 656 margin-top: 0.5385em; 657 display: inline-block; 658 min-height: 1.6923em; 653 659 } 654 660 -
trunk/src/wp-admin/css/media.css
r46355 r46359 1115 1115 } 1116 1116 1117 .imgedit-settings .imgedit-original-dimensions { 1118 display: inline-block; 1119 } 1120 1117 1121 .imgedit-settings .imgedit-scale input[type="text"], 1118 1122 .imgedit-settings .imgedit-crop-ratio input[type="text"], 1119 1123 .imgedit-settings .imgedit-crop-sel input[type="text"] { 1120 width: 50px;1124 width: 80px; 1121 1125 font-size: 14px; 1122 1126 padding: 5px 8px; … … 1129 1133 font-size: 13px; 1130 1134 color: #444; 1135 } 1136 1137 .imgedit-settings .imgedit-scale-button-wrapper { 1138 margin-top: 0.3077em; 1139 display: block; 1131 1140 } 1132 1141 -
trunk/src/wp-admin/includes/image-edit.php
r46355 r46359 63 63 /* translators: %s: Image width and height in pixels. */ 64 64 __( 'Original dimensions %s' ), 65 $meta['width'] . ' × ' . $meta['height']65 '<span class="imgedit-original-dimensions">' . $meta['width'] . ' × ' . $meta['height'] . '</span>' 66 66 ); 67 67 ?> … … 79 79 <input type="text" id="imgedit-scale-height-<?php echo $post_id; ?>" onkeyup="imageEdit.scaleChanged(<?php echo $post_id; ?>, 0, this)" onblur="imageEdit.scaleChanged(<?php echo $post_id; ?>, 0, this)" value="<?php echo isset( $meta['height'] ) ? $meta['height'] : 0; ?>" /> 80 80 <span class="imgedit-scale-warn" id="imgedit-scale-warn-<?php echo $post_id; ?>">!</span> 81 < input id="imgedit-scale-button" type="button" onclick="imageEdit.action(<?php echo "$post_id, '$nonce'"; ?>, 'scale')" class="button button-primary" value="<?php esc_attr_e( 'Scale' ); ?>" />81 <div class="imgedit-scale-button-wrapper"><input id="imgedit-scale-button" type="button" onclick="imageEdit.action(<?php echo "$post_id, '$nonce'"; ?>, 'scale')" class="button button-primary" value="<?php esc_attr_e( 'Scale' ); ?>" /></div> 82 82 </div> 83 83 </fieldset> -
trunk/src/wp-admin/includes/media.php
r46355 r46359 3208 3208 ?> 3209 3209 3210 <label for="attachment_content" ><strong><?php _e( 'Description' ); ?></strong>3210 <label for="attachment_content" class="attachment-content-description"><strong><?php _e( 'Description' ); ?></strong> 3211 3211 <?php 3212 3212 -
trunk/src/wp-includes/css/editor.css
r46356 r46359 1323 1323 /* .button-small is normally 11px, but a bit too small for these buttons. */ 1324 1324 font-size: 12px; 1325 height: 26px;1325 min-height: 26px; 1326 1326 line-height: 2; 1327 1327 }
Note: See TracChangeset
for help on using the changeset viewer.