Changeset 22144
- Timestamp:
- 10/09/2012 02:56:39 AM (12 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/css/media-views.css
r22142 r22144 4 4 .media-modal { 5 5 position: fixed; 6 top: 60px;6 top: 40px; 7 7 left: 60px; 8 8 right: 60px; 9 9 bottom: 60px; 10 background: #fff;11 10 z-index: 125000; 12 11 } … … 29 28 right: 0; 30 29 height: 28px; 31 background: #f1f1f1;32 30 } 33 31 34 32 .media-modal-header h3 { 35 33 float: left; 36 padding: 0 0 0 10px;34 padding: 0; 37 35 margin: 0; 38 line-height: 28px; 36 font-size: 1.4em; 37 } 38 39 .media-modal-header h3, 40 .media-modal-close { 41 line-height: 40px; 42 color: #fff; 43 font-weight: 200; 44 text-shadow: 0 0 16px rgba( 0, 0, 0, 0.6 ); 39 45 } 40 46 41 47 .media-modal-close { 42 48 float: right; 43 padding-right: 10px; 44 line-height: 28px; 49 text-decoration: none; 50 font-size: 1.8em; 51 } 52 53 .media-modal-close:hover, 54 .media-modal-close:focus { 55 color: #fff; 56 text-shadow: 0 0 16px rgba( 255, 255, 255, 0.8 ); 45 57 } 46 58 47 59 .media-modal-content { 48 60 position: absolute; 49 top: 28px;61 top: 40px; 50 62 left: 0; 51 63 right: 0; 52 64 bottom: 0; 53 65 overflow: auto; 66 background: #fff; 54 67 } 55 68 -
trunk/wp-includes/media.php
r22138 r22144 1299 1299 <div class="media-modal-header"> 1300 1300 <h3><%- title %></h3> 1301 <a class="media-modal-close" href="" title="<?php esc_attr_e('Close'); ?>"> <?php echo 'Close'; ?></a>1301 <a class="media-modal-close" href="" title="<?php esc_attr_e('Close'); ?>">×</a> 1302 1302 </div> 1303 1303 <div class="media-modal-content"></div>
Note: See TracChangeset
for help on using the changeset viewer.