Ticket #62215: 62215.2.diff
File 62215.2.diff, 3.8 KB (added by , 4 weeks ago) |
---|
-
src/wp-admin/css/customize-controls.css
446 446 #customize-controls .customize-info .preview-notice { 447 447 font-size: 13px; 448 448 line-height: 1.9; 449 margin: 0; 450 font-weight: 400; 451 color: #50575e; 449 452 } 450 453 451 454 #customize-controls .customize-pane-child .customize-section-title h3, … … 2640 2643 2641 2644 #available-widgets .customize-section-title, 2642 2645 #available-menu-items .customize-section-title { 2646 border: 0; 2647 clip: rect(1px, 1px, 1px, 1px); 2648 clip-path: inset(50%); 2649 height: 1px; 2650 margin: -1px; 2651 overflow: hidden; 2652 padding: 0; 2653 position: absolute; 2654 width: 1px; 2655 word-wrap: normal !important; 2656 } 2657 2658 #available-widgets .customize-section-title button, 2659 #available-menu-items .customize-section-title button { 2643 2660 display: none; 2644 2661 } 2645 2662 … … 2976 2993 2977 2994 #available-widgets .customize-section-title, 2978 2995 #available-menu-items .customize-section-title { 2979 display: block; 2996 border: 0; 2997 clip: auto; 2998 clip-path: none; 2999 height: inherit; 2980 3000 margin: 0; 3001 overflow: hidden; 3002 padding: 0; 3003 width: auto; 3004 position: static; 2981 3005 } 2982 3006 3007 #available-widgets .customize-section-title button, 3008 #available-menu-items .customize-section-title button { 3009 display: block; 3010 } 3011 2983 3012 #available-widgets .customize-section-back, 2984 3013 #available-menu-items .customize-section-back { 2985 3014 height: 69px; -
src/wp-admin/customize.php
233 233 <div class="wp-full-overlay-sidebar-content" tabindex="-1"> 234 234 <div id="customize-info" class="accordion-section customize-info" data-block-theme="<?php echo (int) wp_is_block_theme(); ?>"> 235 235 <div class="accordion-section-title"> 236 < spanclass="preview-notice">236 <h2 class="preview-notice"> 237 237 <?php 238 238 /* translators: %s: The site/panel title in the Customizer. */ 239 239 printf( __( 'You are customizing %s' ), '<strong class="panel-title site-title">' . get_bloginfo( 'name', 'display' ) . '</strong>' ); 240 240 ?> 241 </ span>241 </h2> 242 242 <button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"> 243 243 <?php 244 244 /* translators: Hidden accessibility text. */ -
src/wp-includes/class-wp-customize-nav-menus.php
1222 1222 $id = sprintf( 'available-menu-items-%s-%s', $available_item_type['type'], $available_item_type['object'] ); 1223 1223 ?> 1224 1224 <div id="<?php echo esc_attr( $id ); ?>" class="accordion-section"> 1225 <h4 class="accordion-section-title" role="presentation">1225 <h4 class="accordion-section-title"> 1226 1226 <button type="button" class="accordion-trigger" aria-expanded="false" aria-controls="<?php echo esc_attr( $id ); ?>-content"> 1227 1227 <?php echo esc_html( $available_item_type['title'] ); ?> 1228 1228 <span class="spinner"></span> … … 1257 1257 protected function print_custom_links_available_menu_item() { 1258 1258 ?> 1259 1259 <div id="new-custom-menu-item" class="accordion-section"> 1260 <h4 class="accordion-section-title" role="presentation">1260 <h4 class="accordion-section-title"> 1261 1261 <button type="button" class="accordion-trigger" aria-expanded="false" aria-controls="new-custom-menu-item-content"> 1262 1262 <?php _e( 'Custom Links' ); ?> 1263 1263 <span class="toggle-indicator" aria-hidden="true"></span>