Ticket #38762: 38762.1.diff
File 38762.1.diff, 2.4 KB (added by , 8 years ago) |
---|
-
src/wp-admin/css/themes.css
1521 1521 box-shadow: none !important; 1522 1522 -webkit-border-radius: 0 !important; 1523 1523 border-radius: 0 !important; 1524 z-index: -1; /* Below device buttons */ 1524 1525 } 1525 1526 1526 1527 .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, … … 1624 1625 1625 1626 .wp-full-overlay-footer .devices { 1626 1627 float: right; 1628 background: #eee; 1629 -webkit-box-shadow: -20px 0 10px -5px #eee; 1630 box-shadow: -20px 0 10px -5px #eee; 1627 1631 } 1628 1632 1629 1633 .wp-full-overlay-footer .devices button { -
src/wp-admin/customize.php
191 191 <?php endforeach; ?> 192 192 </div> 193 193 <?php endif; ?> 194 <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php e sc_attr_e( 'Hide Controls'); ?>">194 <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php echo esc_attr( _x( 'Hide Controls', 'label for hide controls button without length constraints' ) ); ?>"> 195 195 <span class="collapse-sidebar-arrow"></span> 196 <span class="collapse-sidebar-label"><?php _e ( 'Hide Controls' ); ?></span>196 <span class="collapse-sidebar-label"><?php _ex( 'Hide Controls', 'short (~12 characters) label for hide controls button' ); ?></span> 197 197 </button> 198 198 </div> 199 199 </form> -
src/wp-includes/script-loader.php
467 467 'notAllowed' => __( 'Sorry, you are not allowed to customize this site.' ), 468 468 'previewIframeTitle' => __( 'Site Preview' ), 469 469 'loginIframeTitle' => __( 'Session expired' ), 470 'collapseSidebar' => _ _( 'Hide Controls' ),471 'expandSidebar' => _ _( 'Show Controls' ),470 'collapseSidebar' => _x( 'Hide Controls', 'label for hide controls button without length constraints' ), 471 'expandSidebar' => _x( 'Show Controls', 'label for hide controls button without length constraints' ), 472 472 'untitledBlogName' => __( '(Untitled)' ), 473 473 // Used for overriding the file types allowed in plupload. 474 474 'allowedFiles' => __( 'Allowed Files' ),