diff --git a/src/wp-includes/css/media-views.css b/src/wp-includes/css/media-views.css
index 0f57613..87ca313 100644
a
|
b
|
|
1002 | 1002 | outline: none; |
1003 | 1003 | } |
1004 | 1004 | |
| 1005 | .attachments-browser .uploader-inline { |
| 1006 | border: 4px dashed #bbb; |
| 1007 | } |
| 1008 | |
1005 | 1009 | .attachments-browser .uploader-inline:not(.hidden) + .attachments { |
1006 | 1010 | top: 350px; |
1007 | 1011 | } |
… |
… |
|
1020 | 1024 | cursor: pointer; |
1021 | 1025 | height: 48px; |
1022 | 1026 | position: absolute; |
1023 | | right: 20px; |
| 1027 | right: 0; |
1024 | 1028 | text-align: center; |
1025 | | top: 20px; |
| 1029 | top: 0; |
1026 | 1030 | width: 50px; |
1027 | 1031 | z-index: 1; |
1028 | 1032 | } |
… |
… |
video#inline-media-node { |
1318 | 1322 | } |
1319 | 1323 | |
1320 | 1324 | .media-frame .uploader-inline { |
1321 | | margin: 20px; |
1322 | | padding: 20px; |
| 1325 | margin-bottom: 20px; |
| 1326 | padding: 0; |
1323 | 1327 | text-align: center; |
1324 | 1328 | } |
1325 | 1329 | |
… |
… |
video#inline-media-node { |
1331 | 1335 | } |
1332 | 1336 | |
1333 | 1337 | .uploader-inline-content .upload-ui { |
1334 | | margin: 4em 0; |
| 1338 | margin: 2em 0; |
1335 | 1339 | } |
1336 | 1340 | |
1337 | 1341 | .uploader-inline-content .post-upload-ui { |
… |
… |
video#inline-media-node { |
1346 | 1350 | font-size: 20px; |
1347 | 1351 | line-height: 28px; |
1348 | 1352 | font-weight: 400; |
1349 | | margin-bottom: 1.6em; |
| 1353 | margin: 0; |
1350 | 1354 | } |
1351 | 1355 | |
1352 | 1356 | .uploader-inline .has-upload-message .upload-instructions { |
… |
… |
video#inline-media-node { |
1365 | 1369 | |
1366 | 1370 | .uploader-inline p { |
1367 | 1371 | font-size: 12px; |
| 1372 | margin: 0.5em 0; |
1368 | 1373 | } |
1369 | 1374 | |
1370 | 1375 | .uploader-inline .media-progress-bar { |
diff --git a/src/wp-includes/media-template.php b/src/wp-includes/media-template.php
index 8764219..17cb8f4 100644
a
|
b
|
function wp_print_media_templates() { |
177 | 177 | |
178 | 178 | <?php else : ?> |
179 | 179 | <div class="upload-ui"> |
180 | | <h3 class="upload-instructions drop-instructions"><?php _e( 'Drop files anywhere to upload' ); ?></h3> |
181 | | <a href="#" class="browser button button-hero"><?php _e( 'Select Files' ); ?></a> |
| 180 | <h3 class="upload-instructions drop-instructions"><?php _e( 'Drop files here' ); ?></h3> |
| 181 | <p>or</p> |
| 182 | <a href="#" class="browser button"><?php _e( 'Select Files' ); ?></a> |
182 | 183 | </div> |
183 | 184 | |
184 | 185 | <div class="upload-inline-status"></div> |
… |
… |
function wp_print_media_templates() { |
206 | 207 | ?> |
207 | 208 | |
208 | 209 | <p class="max-upload-size"><?php |
209 | | printf( __( 'Maximum upload file size: %s.' ), esc_html( size_format( $max_upload_size ) ) ); |
| 210 | printf( __( 'Maximum upload file size: %s' ), esc_html( size_format( $max_upload_size ) ) ); |
210 | 211 | ?></p> |
211 | 212 | |
212 | 213 | <# if ( data.suggestedWidth && data.suggestedHeight ) { #> |