Changeset 59825
- Timestamp:
- 02/14/2025 08:32:48 PM (3 weeks ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-controls.css
r59772 r59825 448 448 font-size: 13px; 449 449 line-height: 1.9; 450 margin: 0; 451 font-weight: 400; 452 color: #50575e; 450 453 } 451 454 … … 2642 2645 #available-widgets .customize-section-title, 2643 2646 #available-menu-items .customize-section-title { 2647 border: 0; 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 { 2644 2660 display: none; 2645 2661 } … … 2978 2994 #available-widgets .customize-section-title, 2979 2995 #available-menu-items .customize-section-title { 2996 border: 0; 2997 clip-path: none; 2998 height: inherit; 2999 margin: 0; 3000 overflow: hidden; 3001 padding: 0; 3002 width: auto; 3003 position: static; 3004 } 3005 3006 #available-widgets .customize-section-title button, 3007 #available-menu-items .customize-section-title button { 2980 3008 display: block; 2981 margin: 0;2982 3009 } 2983 3010 -
trunk/src/wp-admin/customize.php
r59789 r59825 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 -
trunk/src/wp-includes/class-wp-customize-nav-menus.php
r59224 r59825 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'] ); ?> … … 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' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.