Ticket #28655: 28655.patch
File 28655.patch, 2.0 KB (added by , 11 years ago) |
---|
-
src/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' ); ?> 113 </a> 111 <a class="cross" href="<?php echo esc_url( $return ? $return : admin_url( 'themes.php' ) ); ?>"></a> 114 112 </div> 115 113 116 114 <?php -
src/wp-admin/css/customize-controls.css
209 209 height: 22px; 210 210 } 211 211 212 #customize-header-actions a. back{212 #customize-header-actions a.cross { 213 213 position: relative; 214 214 left: 0; 215 215 -webkit-transition: left ease-in-out .18s; 216 216 transition: left ease-in-out .18s; 217 217 } 218 218 219 .in-sub-panel #customize-header-actions a.back { 220 left: -120px; 219 a.cross:before { 220 font: normal 29px/1 dashicons; 221 content: "\f335"; 222 position: relative; 223 top: 9px; 224 left: 9px; 221 225 } 222 226 227 a.cross { 228 color: #444; 229 display: block; 230 position: fixed; 231 top: 0; 232 z-index: 99; 233 left: -48px; 234 width: 45px; 235 height: 45px; 236 padding-right: 2px; 237 background: #eee; 238 border-right: 1px solid #ddd; 239 cursor: pointer; 240 -webkit-transition: left ease-in-out .18s, color ease-in .1s; 241 transition: left ease-in-out .18s, color ease-in .1s; 242 } 243 244 a.cross:hover, 245 a.cross:focus { 246 background-color: #0074a2; 247 color: #fff; 248 outline: none; 249 } 250 251 .in-sub-panel #customize-header-actions a.cross { 252 left: -129px; 253 } 254 223 255 .wp-full-overlay-sidebar .wp-full-overlay-header { 224 256 -webkit-transition: padding ease-in-out .18s; 225 257 transition: padding ease-in-out .18s; 258 padding: 0 15px 0 0; 226 259 } 227 260 228 261 .in-sub-panel .wp-full-overlay-sidebar .wp-full-overlay-header {