Rename the attachment-thumbnail class in the media modal Attachment view to prevent conflicts with wp_get_attachment_image(). see #21390.

git-svn-id: https://develop.svn.wordpress.org/trunk@21909 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith 2012-09-19 01:10:17 +00:00
parent 3de3ed85fd
commit 7b999727ce
3 changed files with 8 additions and 8 deletions

View File

@ -267,7 +267,7 @@
background: #21759b;
}
.attachment-thumbnail {
.attachment-preview {
position: absolute;
top: 0;
left: 0;
@ -304,11 +304,11 @@
.attachment .landscape img {
height: 200px;
}
.attachment .attachment-thumbnail:hover {
.attachment .attachment-preview:hover {
overflow: visible;
z-index: 1000;
}
.attachment .attachment-thumbnail:hover img {
.attachment .attachment-preview:hover img {
border: 10px solid #fff;
box-shadow: 0 0 10px rgba( 0, 0, 0, 0.4 );
}*/
@ -322,7 +322,7 @@
.attachment .landscape img {
height: 200px;
}
.attachment .attachment-thumbnail:hover img {
.attachment .attachment-preview:hover img {
height: auto;
width: auto;
max-height: 200px;
@ -356,7 +356,7 @@
transition: width 200ms;
}
.attachment-thumbnail .media-progress-bar {
.attachment-preview .media-progress-bar {
position: absolute;
top: 50%;
left: 15%;

View File

@ -441,8 +441,8 @@ if ( typeof wp === 'undefined' )
}
}, {
defaultProps: {
orderby: 'date',
order: 'DESC'
orderby: 'date',
order: 'DESC'
},
defaultArgs: {

View File

@ -1645,7 +1645,7 @@ function wp_print_media_templates( $attachment ) {
</script>
<script type="text/html" id="tmpl-attachment">
<div class="attachment-thumbnail type-<%- type %> subtype-<%- subtype %> <%- orientation %>">
<div class="attachment-preview type-<%- type %> subtype-<%- subtype %> <%- orientation %>">
<% if ( thumbnail ) { %>
<img src="<%- thumbnail %>" draggable="false" />
<% } %>