Ticket #27423: 27423.19.patch
File 27423.19.patch, 1.4 KB (added by , 11 years ago) |
---|
-
src/wp-includes/css/media-views.css
1431 1431 /** 1432 1432 * Spinner 1433 1433 */ 1434 1435 1434 .media-frame .spinner { 1436 1435 background: url(../images/spinner.gif) no-repeat; 1437 1436 -webkit-background-size: 20px 20px; … … 1653 1652 /** 1654 1653 * Image Editor 1655 1654 */ 1656 1657 1655 .media-modal .imgedit-wrap { 1658 1656 position: static; 1659 1657 } … … 2138 2136 font-family: Arial, sans-serif; 2139 2137 } 2140 2138 2141 2142 2143 2144 2139 @media only screen and (max-width: 960px) { 2145 2140 .media-frame-content .media-toolbar-primary .search, 2146 2141 .media-frame-content .media-toolbar-secondary .attachment-filters { -
src/wp-includes/js/media-views.js
4798 4798 arrowEvent: function( event ) { 4799 4799 var attachment = $('.attachments-browser .attachment'), 4800 4800 attachmentsWidth = $('.attachments-browser .attachments').width(), 4801 thumbnailWidth = attachment.first(). width(),4801 thumbnailWidth = attachment.first().outerWidth(), 4802 4802 thumbnailsPerRow = Math.round( attachmentsWidth / thumbnailWidth ), 4803 4803 totalThumnails = attachment.length, 4804 4804 totalRows = Math.ceil(totalThumnails/thumbnailsPerRow),