Changeset 47304
- Timestamp:
- 02/18/2020 03:30:10 PM (5 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/list-tables.css
r46866 r47304 437 437 background: transparent; 438 438 padding: 0 7px 4px; 439 font-style: italic;440 439 } 441 440 … … 1021 1020 } 1022 1021 1023 .inline-edit-row fieldset span.title,1024 .inline-edit-row fieldset span.checkbox-title {1025 font-style: italic;1026 }1027 1028 1022 /* Specific Elements */ 1029 1023 .inline-edit-row fieldset .inline-edit-date { … … 1319 1313 .plugins .paused .error-display code { 1320 1314 font-size: 90%; 1321 font-style: italic;1322 1315 color: rgba( 0, 0, 0, 0.7 ); 1323 1316 } -
trunk/src/wp-admin/css/media.css
r47222 r47304 1054 1054 .imgedit-help { 1055 1055 display: none; 1056 font-style: italic; 1056 padding-bottom: 8px; 1057 } 1058 1059 .imgedit-help.imgedit-restore { 1060 padding-bottom: 0; 1057 1061 } 1058 1062 -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r47233 r47304 1609 1609 </label> 1610 1610 1611 < emclass="alignleft inline-edit-or">1611 <span class="alignleft inline-edit-or"> 1612 1612 <?php 1613 1613 /* translators: Between password field and private checkbox on post quick edit interface. */ 1614 1614 _e( '–OR–' ); 1615 1615 ?> 1616 </ em>1616 </span> 1617 1617 <label class="alignleft inline-edit-private"> 1618 1618 <input type="checkbox" name="keep_private" value="private" /> -
trunk/src/wp-admin/includes/image-edit.php
r47219 r47304 92 92 <div class="imgedit-group-top"> 93 93 <h2><button type="button" onclick="imageEdit.toggleHelp(this);" class="button-link"><?php _e( 'Restore Original Image' ); ?> <span class="dashicons dashicons-arrow-down imgedit-help-toggle"></span></button></h2> 94 <div class="imgedit-help ">94 <div class="imgedit-help imgedit-restore"> 95 95 <p> 96 96 <?php … … 160 160 <h2><?php _e( 'Thumbnail Settings' ); ?></h2> 161 161 <button type="button" class="dashicons dashicons-editor-help imgedit-help-toggle" onclick="imageEdit.toggleHelp(this);return false;" aria-expanded="false"><span class="screen-reader-text"><?php esc_html_e( 'Thumbnail Settings Help' ); ?></span></button> 162 <p class="imgedit-help"><?php _e( 'You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.' ); ?></p> 162 <div class="imgedit-help"> 163 <p><?php _e( 'You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.' ); ?></p> 164 </div> 163 165 </div> 164 166
Note: See TracChangeset
for help on using the changeset viewer.