Changeset 22176
- Timestamp:
- 10/11/2012 12:36:42 AM (13 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/css/media-views.css
r22173 r22176 443 443 margin: 10px auto; 444 444 padding: 2px; 445 border: 2px solid # dfdfdf;445 border: 2px solid #ccc; 446 446 border-radius: 8px; 447 background: #fff; 447 448 } 448 449 … … 451 452 min-width: 8px; 452 453 width: 0; 453 background: # dfdfdf;454 background: #ccc; 454 455 border-radius: 10px; 455 456 -webkit-transition: width 200ms; -
trunk/wp-includes/media.php
r22173 r22176 1330 1330 <script type="text/html" id="tmpl-attachment"> 1331 1331 <div class="attachment-preview type-<%- type %> subtype-<%- subtype %> <%- orientation %>"> 1332 <% if ( 'image' === type ) { %> 1332 <% if ( uploading ) { %> 1333 <div class="media-progress-bar"><div></div></div> 1334 <% } else if ( 'image' === type ) { %> 1333 1335 <div class="thumbnail"> 1334 1336 <img src="<%- url %>" width="<%- width %>" height="<%- height %>" draggable="false" 1335 1337 style="top:<%- top %>px; left:<%- left %>px;" /> 1336 1338 </div> 1337 <% } else if ( uploading ) { %>1338 <div class="media-progress-bar"><div></div></div>1339 1339 <% } else { %> 1340 1340 <img src="<%- icon %>" class="icon" draggable="false" />
Note: See TracChangeset
for help on using the changeset viewer.