Changeset 56639
- Timestamp:
- 09/20/2023 09:01:02 PM (18 months ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-controls.css
r55150 r56639 2318 2318 .wp-customizer .theme-overlay .theme-actions { 2319 2319 text-align: right; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */ 2320 padding: 10px 25px ;2320 padding: 10px 25px 5px; 2321 2321 background: #f0f0f1; 2322 2322 border-top: 1px solid #dcdcde; … … 2325 2325 .wp-customizer .theme-overlay .theme-actions .theme-install.preview { 2326 2326 margin-left: 8px; 2327 }2328 2329 .control-panel-themes .theme-actions .delete-theme {2330 left: 15px; /* these override themes.css on mobile */2331 right: auto;2332 bottom: auto;2333 position: absolute;2334 2327 } 2335 2328 -
trunk/src/wp-admin/css/themes.css
r56279 r56639 507 507 box-sizing: border-box; 508 508 border-top: 1px solid #f0f0f1; 509 } 510 511 .theme-overlay .theme-actions a { 512 margin-right: 5px; 509 display: flex; 510 justify-content: center; 511 gap: 5px; 512 } 513 514 .theme-overlay .theme-actions .button { 513 515 margin-bottom: 5px; 514 516 } … … 522 524 .broken-themes a.delete-theme, 523 525 .theme-overlay .theme-actions .delete-theme { 524 color: # d63638;526 color: #b32d2e; 525 527 text-decoration: none; 526 528 border-color: transparent; … … 529 531 } 530 532 531 .theme-overlay .theme-actions .delete-theme {532 position: absolute;533 right: 10px;534 bottom: 5px;535 }536 537 533 .broken-themes a.delete-theme:hover, 538 534 .broken-themes a.delete-theme:focus, 539 535 .theme-overlay .theme-actions .delete-theme:hover, 540 536 .theme-overlay .theme-actions .delete-theme:focus { 541 background: # d63638;537 background: #b32d2e; 542 538 color: #fff; 543 border-color: #d63638; 539 border-color: #b32d2e; 540 box-shadow: 0 0 0 1px #b32d2e; 544 541 } 545 542 -
trunk/src/wp-admin/includes/theme.php
r56635 r56639 1059 1059 <button type="button" class="button button-primary customize-theme"><?php _e( 'Customize' ); ?></button> 1060 1060 <# } else if ( 'installed' === data.type ) { #> 1061 <?php if ( current_user_can( 'delete_themes' ) ) { ?> 1062 <# if ( data.actions && data.actions['delete'] ) { #> 1063 <a href="{{{ data.actions['delete'] }}}" data-slug="{{ data.id }}" class="button button-secondary delete-theme"><?php _e( 'Delete' ); ?></a> 1064 <# } #> 1065 <?php } ?> 1066 1061 <div class="theme-inactive-actions"> 1067 1062 <# if ( data.blockTheme ) { #> 1068 1063 <?php … … 1080 1075 <# } #> 1081 1076 <# } #> 1077 </div> 1078 <?php if ( current_user_can( 'delete_themes' ) ) { ?> 1079 <# if ( data.actions && data.actions['delete'] ) { #> 1080 <a href="{{{ data.actions['delete'] }}}" data-slug="{{ data.id }}" class="button button-secondary delete-theme"><?php _e( 'Delete' ); ?></a> 1081 <# } #> 1082 <?php } ?> 1082 1083 <# } else { #> 1083 1084 <# if ( data.compatibleWP && data.compatiblePHP ) { #> -
trunk/src/wp-admin/themes.php
r56600 r56639 1222 1222 $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' ); 1223 1223 ?> 1224 <# if ( ! data.blockTheme ) { #> 1225 <a href="{{{ data.actions.customize }}}" class="button button-primary load-customize hide-if-no-customize"><?php _e( 'Live Preview' ); ?></a> 1226 <# } #> 1224 1227 <# if ( data.actions.activate ) { #> 1225 1228 <a href="{{{ data.actions.activate }}}" class="button activate" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _e( 'Activate' ); ?></a> 1226 1229 <# } #> 1227 <# if ( ! data.blockTheme ) { #>1228 <a href="{{{ data.actions.customize }}}" class="button button-primary load-customize hide-if-no-customize"><?php _e( 'Live Preview' ); ?></a>1229 <# } #>1230 1230 <# } else { #> 1231 1231 <?php … … 1233 1233 $aria_label = sprintf( _x( 'Cannot Activate %s', 'theme' ), '{{ data.name }}' ); 1234 1234 ?> 1235 <# if ( ! data.blockTheme ) { #> 1236 <a class="button button-primary hide-if-no-customize disabled"><?php _e( 'Live Preview' ); ?></a> 1237 <# } #> 1235 1238 <# if ( data.actions.activate ) { #> 1236 1239 <a class="button disabled" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _ex( 'Cannot Activate', 'theme' ); ?></a> 1237 <# } #>1238 <# if ( ! data.blockTheme ) { #>1239 <a class="button button-primary hide-if-no-customize disabled"><?php _e( 'Live Preview' ); ?></a>1240 1240 <# } #> 1241 1241 <# } #> -
trunk/src/wp-includes/css/buttons.css
r52171 r56639 386 386 } 387 387 388 .wp-customizer .theme-overlay .theme-actions .button { 389 margin-bottom: 5px; 390 } 391 388 392 .media-modal-content .media-toolbar-primary .media-button { 389 393 margin-top: 10px;
Note: See TracChangeset
for help on using the changeset viewer.