Changeset 40358
- Timestamp:
- 03/31/2017 04:50:42 PM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-nav-menus.css
r40052 r40358 151 151 overflow: hidden; 152 152 cursor: pointer; 153 text-align: center; 153 154 } 154 155 … … 522 523 outline: none; 523 524 cursor: pointer; 525 text-align: center; 524 526 } 525 527 … … 613 615 outline: none; 614 616 cursor: pointer; 617 text-align: center; 615 618 } 616 619 -
trunk/src/wp-includes/css/media-views.css
r40052 r40358 184 184 width: 50px; 185 185 height: 50px; 186 margin: 0; 186 187 padding: 0; 188 border: 1px solid transparent; 189 background: none; 190 color: #666; 187 191 z-index: 1000; 192 cursor: pointer; 193 outline: none; 188 194 -webkit-transition: color .1s ease-in-out, background .1s ease-in-out; 189 195 transition: color .1s ease-in-out, background .1s ease-in-out; 190 196 } 191 197 192 .media-modal-close.button-link { 193 text-decoration: none; 194 } 195 198 .media-modal-close:hover, 196 199 .media-modal-close:active { 197 -webkit-box-shadow: none; 198 box-shadow: none; 200 color: #00a0d2; 201 } 202 203 .media-modal-close:focus { 204 color: #00a0d2; 205 border-color: #5b9dd9; 206 -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); 207 box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); 199 208 } 200 209 … … 210 219 -webkit-font-smoothing: antialiased; 211 220 -moz-osx-font-smoothing: grayscale; 212 color: #666;213 }214 215 .media-modal-close:hover .media-modal-icon:before {216 color: #00a0d2;217 }218 219 .media-modal-close:active {220 outline: 0;221 221 } 222 222 -
trunk/src/wp-includes/css/wp-auth-check.css
r40052 r40358 94 94 color: #72777c; 95 95 text-decoration: none; 96 text-align: center; 96 97 } 97 98 -
trunk/src/wp-includes/media-template.php
r40052 r40358 164 164 <script type="text/html" id="tmpl-media-modal"> 165 165 <div class="<?php echo $class; ?>"> 166 <button type="button" class=" button-linkmedia-modal-close"><span class="media-modal-icon"><span class="screen-reader-text"><?php _e( 'Close media panel' ); ?></span></span></button>166 <button type="button" class="media-modal-close"><span class="media-modal-icon"><span class="screen-reader-text"><?php _e( 'Close media panel' ); ?></span></span></button> 167 167 <div class="media-modal-content"></div> 168 168 </div>
Note: See TracChangeset
for help on using the changeset viewer.