Changeset 40367
- Timestamp:
- 04/03/2017 10:20:37 PM (6 years ago)
- Location:
- branches/4.7
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
-
branches/4.7/src/wp-admin/css/customize-nav-menus.css
r39696 r40367 162 162 overflow: hidden; 163 163 cursor: pointer; 164 text-align: center; 164 165 } 165 166 … … 533 534 outline: none; 534 535 cursor: pointer; 536 text-align: center; 535 537 } 536 538 … … 624 626 outline: none; 625 627 cursor: pointer; 628 text-align: center; 626 629 } 627 630 -
branches/4.7/src/wp-includes/css/media-views.css
r38152 r40367 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 198 .media-modal-close:hover, 192 199 .media-modal-close:active { 193 -webkit-box-shadow: none; 194 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 ); 195 208 } 196 209 … … 206 219 -webkit-font-smoothing: antialiased; 207 220 -moz-osx-font-smoothing: grayscale; 208 color: #666;209 }210 211 .media-modal-close:hover .media-modal-icon:before {212 color: #00a0d2;213 }214 215 .media-modal-close:active {216 outline: 0;217 221 } 218 222 -
branches/4.7/src/wp-includes/css/wp-auth-check.css
r36014 r40367 93 93 width: 22px; 94 94 color: #72777c; 95 text-align: center; 95 96 } 96 97 -
branches/4.7/src/wp-includes/media-template.php
r39213 r40367 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.