Changeset 21909
- Timestamp:
- 09/19/2012 01:10:17 AM (12 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/css/media-views.css
r21907 r21909 268 268 } 269 269 270 .attachment- thumbnail{270 .attachment-preview { 271 271 position: absolute; 272 272 top: 0; … … 305 305 height: 200px; 306 306 } 307 .attachment .attachment- thumbnail:hover {307 .attachment .attachment-preview:hover { 308 308 overflow: visible; 309 309 z-index: 1000; 310 310 } 311 .attachment .attachment- thumbnail:hover img {311 .attachment .attachment-preview:hover img { 312 312 border: 10px solid #fff; 313 313 box-shadow: 0 0 10px rgba( 0, 0, 0, 0.4 ); … … 323 323 height: 200px; 324 324 } 325 .attachment .attachment- thumbnail:hover img {325 .attachment .attachment-preview:hover img { 326 326 height: auto; 327 327 width: auto; … … 357 357 } 358 358 359 .attachment- thumbnail.media-progress-bar {359 .attachment-preview .media-progress-bar { 360 360 position: absolute; 361 361 top: 50%; -
trunk/wp-includes/js/media-models.js
r21900 r21909 442 442 }, { 443 443 defaultProps: { 444 orderby: 445 order: 444 orderby: 'date', 445 order: 'DESC' 446 446 }, 447 447 -
trunk/wp-includes/media.php
r21833 r21909 1646 1646 1647 1647 <script type="text/html" id="tmpl-attachment"> 1648 <div class="attachment- thumbnailtype-<%- type %> subtype-<%- subtype %> <%- orientation %>">1648 <div class="attachment-preview type-<%- type %> subtype-<%- subtype %> <%- orientation %>"> 1649 1649 <% if ( thumbnail ) { %> 1650 1650 <img src="<%- thumbnail %>" draggable="false" />
Note: See TracChangeset
for help on using the changeset viewer.