Ticket #28655: 28655.5.patch
File 28655.5.patch, 1.4 KB (added by , 10 years ago) |
---|
-
wp-admin/customize.php
108 108 submit_button( $save_text, 'primary save', 'save', false ); 109 109 ?> 110 110 <span class="spinner"></span> 111 <a class="back button" href="<?php echo esc_url( $return ? $return : admin_url( 'themes.php' ) ); ?>"> 112 <?php _e( 'Cancel' ); ?> 111 <a class="back customize-controls-close" href="<?php echo esc_url( $return ? $return : admin_url( 'themes.php' ) ); ?>"></a> 113 112 </a> 114 113 </div> 115 114 -
wp-admin/css/customize-controls.css
212 212 #customize-header-actions a.back { 213 213 position: relative; 214 214 left: 0; 215 visibility: hidden; 215 216 -webkit-transition: left ease-in-out .18s; 216 217 transition: left ease-in-out .18s; 217 218 } 218 219 220 .customize-controls-close:before { 221 font: normal 30px/1.5 dashicons; 222 color: #000; 223 width:30px; 224 padding: 0 7.5px 0 7.5px; 225 content: "\f335"; 226 position: fixed; 227 visibility: visible; 228 top: 0px; 229 left: 0; 230 border-right: 1px solid #ddd; 231 } 232 233 .customize-controls-close:hover::before { 234 background-color: #0074a2; 235 color: #fff; 236 outline: none; 237 } 238 219 239 .in-sub-panel #customize-header-actions a.back { 220 240 left: -120px; 221 241 }