Changeset 35015
- Timestamp:
- 10/10/2015 04:33:33 PM (9 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-widgets.css
r34011 r35015 420 420 } 421 421 422 #available-widgets .widget-title h4 { 422 #customize-controls .widget-title h3 { 423 font-size: 1em; 424 } 425 426 #available-widgets .widget-title h3 { 423 427 padding: 0 0 5px; 424 428 font-size: 14px; … … 622 626 margin-bottom: 15px; 623 627 } 624 .widget-title h 4{628 .widget-title h3 { 625 629 padding: 13px 15px; 626 630 } -
trunk/src/wp-admin/css/widgets.css
r34893 r35015 23 23 } 24 24 25 .widget-title h3, 25 26 .widget-title h4 { 26 27 margin: 0; 27 28 padding: 15px; 29 font-size: 1em; 28 30 line-height: 1; 29 31 overflow: hidden; … … 101 103 } 102 104 105 .sidebar-name h2, 103 106 .sidebar-name h3 { 104 107 margin: 0; … … 143 146 } 144 147 148 div#widgets-left .sidebar-name h2, 145 149 div#widgets-left .sidebar-name h3 { 146 150 padding: 10px 0; … … 244 248 } 245 249 250 div#widgets-right .sidebar-name h2, 246 251 div#widgets-right .sidebar-name h3 { 247 252 padding: 15px 7px; -
trunk/src/wp-admin/includes/widgets.php
r34827 r35015 82 82 <div class="sidebar-name"> 83 83 <div class="sidebar-name-arrow"><br /></div> 84 <h 3><?php echo esc_html( $sidebar_name ); ?> <span class="spinner"></span></h3>84 <h2><?php echo esc_html( $sidebar_name ); ?> <span class="spinner"></span></h2> 85 85 </div> 86 86 <?php … … 227 227 </a> 228 228 </div> 229 <div class="widget-title"><h 4><?php echo $widget_title ?><span class="in-widget-title"></span></h4></div>229 <div class="widget-title"><h3><?php echo $widget_title; ?><span class="in-widget-title"></span></h3></div> 230 230 </div> 231 231 -
trunk/src/wp-admin/js/widgets.js
r34165 r35015 298 298 if ( ui.draggable.hasClass('ui-sortable-helper') ) { 299 299 $('#removing-widget').show().children('span') 300 .html( ui.draggable.find( 'div.widget-title').children('h4').html() );300 .html( ui.draggable.find( 'div.widget-title' ).children( 'h3' ).html() ); 301 301 } 302 302 }, … … 311 311 $( '#widgets-right .widgets-holder-wrap' ).each( function( index, element ) { 312 312 var $element = $( element ), 313 name = $element.find( '.sidebar-name h 3' ).text(),313 name = $element.find( '.sidebar-name h2' ).text(), 314 314 id = $element.find( '.widgets-sortables' ).attr( 'id' ), 315 315 li = $('<li tabindex="0">').text( $.trim( name ) ); -
trunk/src/wp-admin/widgets.php
r34714 r35015 245 245 <h1><?php echo esc_html( $title ); ?></h1> 246 246 <div class="editwidget"<?php echo $width; ?>> 247 <h 3><?php printf( __( 'Widget %s' ), $name ); ?></h3>247 <h2><?php printf( __( 'Widget %s' ), $name ); ?></h2> 248 248 249 249 <form action="widgets.php" method="post"> … … 362 362 <div class="sidebar-name"> 363 363 <div class="sidebar-name-arrow"><br /></div> 364 <h 3><?php _e('Available Widgets'); ?> <span id="removing-widget"><?php _ex('Deactivate', 'removing-widget'); ?> <span></span></span></h3>364 <h2><?php _e( 'Available Widgets' ); ?> <span id="removing-widget"><?php _ex( 'Deactivate', 'removing-widget' ); ?> <span></span></span></h2> 365 365 </div> 366 366 <div class="widget-holder">
Note: See TracChangeset
for help on using the changeset viewer.