Ticket #38010: fixing-padding-and-ellipsis.patch
File fixing-padding-and-ellipsis.patch, 2.9 KB (added by , 8 years ago) |
---|
-
src/wp-admin/css/themes.css
1016 1016 content: ''; 1017 1017 } 1018 1018 1019 .theme-install-php .wp-filter {1020 padding: 0 20px;1021 }1022 1023 1019 .theme-install-php a.upload, 1024 1020 .theme-install-php a.browse-themes { 1025 1021 cursor: pointer; -
src/wp-admin/includes/class-walker-nav-menu-edit.php
236 236 <input class="menu-item-data-type" type="hidden" name="menu-item-type[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->type ); ?>" /> 237 237 </div><!-- .menu-item-settings--> 238 238 <ul class="menu-item-transport"></ul> 239 </li> 239 240 <?php 240 241 $output .= ob_get_clean(); 241 242 } 242 243 244 /** 245 * Ends the element output, if needed. 246 * 247 * @see Walker_Nav_Menu::end_el() 248 * 249 * @since x.y.z 250 * 251 * @param string $output Passed by reference. Used to append additional content. 252 * @param object $item Page data object. Not used. 253 * @param int $depth Depth of page. Not used. 254 * @param array $args An array of wp_nav_menu() arguments. 255 */ 256 public function end_el( &$output, $item, $depth = 0, $args = array() ) {} 257 243 258 } // Walker_Nav_Menu_Edit -
src/wp-admin/theme-install.php
45 45 'l10n' => array( 46 46 'addNew' => __( 'Add New Theme' ), 47 47 'search' => __( 'Search Themes' ), 48 'searchPlaceholder' => __( 'Search themes...' ), // placeholder (no ellipsis)48 'searchPlaceholder' => __( 'Search Themes' ), // placeholder (no ellipsis) 49 49 'upload' => __( 'Upload Theme' ), 50 50 'back' => __( 'Back' ), 51 51 'error' => __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ), -
src/wp-admin/themes.php
137 137 'l10n' => array( 138 138 'addNew' => __( 'Add New Theme' ), 139 139 'search' => __( 'Search Installed Themes' ), 140 'searchPlaceholder' => __( 'Search installed themes...' ), // placeholder (no ellipsis)140 'searchPlaceholder' => __( 'Search Installed Themes' ), // placeholder (no ellipsis) 141 141 'themesFound' => __( 'Number of Themes found: %d' ), 142 142 'noThemesFound' => __( 'No themes found. Try a different search.' ), 143 143 ),