Changeset 31984
- Timestamp:
- 04/02/2015 05:15:08 PM (9 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-controls.css
r31975 r31984 198 198 } 199 199 200 .customize- close-overlay,200 .customize-overlay-close, 201 201 .customize-controls-close { 202 202 display: block; … … 206 206 width: 45px; 207 207 height: 45px; 208 padding -right: 2px;208 padding: 0 2px 0 0; 209 209 background: #eee; 210 210 border: none; 211 211 border-right: 1px solid #ddd; 212 212 color: #444; 213 text-align: left; 213 214 cursor: pointer; 214 215 -webkit-transition: color .1s ease-in-out, background .1s ease-in-out; 215 216 transition: color .1s ease-in-out, background .1s ease-in-out; 216 } 217 218 .customize-close-overlay { 217 -webkit-box-sizing: content-box; 218 -moz-box-sizing: content-box; 219 box-sizing: content-box; 220 } 221 222 .customize-overlay-close { 219 223 left: auto; 220 224 right: 0; 225 border-right: 0; 226 border-left: 1px solid #ddd; 221 227 } 222 228 … … 241 247 } 242 248 243 .customize- close-overlay:focus,244 .customize- close-overlay:hover,249 .customize-overlay-close:focus, 250 .customize-overlay-close:hover, 245 251 .customize-controls-close:focus, 246 252 .customize-controls-close:hover, … … 257 263 } 258 264 265 .customize-overlay-close:before, 259 266 .customize-controls-close:before { 260 font: normal 22px/ 1dashicons;267 font: normal 22px/45px dashicons; 261 268 content: "\f335"; 262 269 position: relative; 263 top: 7px;270 top: 1px; 264 271 left: 13px; 265 272 } 266 273 267 .customize-close-overlay:before {268 font: normal 22px/1 dashicons;269 content: "\f335";270 position: relative;271 top: 3px;272 }273 274 274 .control-panel-back:before { 275 font: normal 20px/ 1dashicons;275 font: normal 20px/45px dashicons; 276 276 content: "\f341"; 277 277 position: relative; 278 top: 7px;278 top: 1px; 279 279 left: 13px; 280 280 } -
trunk/src/wp-admin/customize.php
r31974 r31984 136 136 </div> 137 137 <div class="secondary-actions"> 138 <button type="button" class=" dashicons dashicons-no customize-close-overlay">139 <span class="screen-reader-text"><?php _e( 'Close ' ); ?></span>138 <button type="button" class="customize-overlay-close"> 139 <span class="screen-reader-text"><?php _e( 'Close overlay' ); ?></span> 140 140 </button> 141 141 </div>
Note: See TracChangeset
for help on using the changeset viewer.