#5478 closed enhancement (invalid)
Ability to modify css for inline uploads
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | high | |
Severity: | normal | Version: | 2.3 |
Component: | Administration | Keywords: | |
Focuses: | Cc: |
Description
Currently, when the upload.php is called with the inline option, there is no way to override the css because the wp_upload_admin_head function is called after the admin_print_scripts action.
Would it be possible to change the order around?
Instead of: <?php do_action('admin_print_scripts'); wp_upload_admin_head(); ?> Suggested Change: <?php wp_upload_admin_head(); do_action('admin_print_scripts'); ?>
This is line 72 of wp-admin/upload.php
Change History (4)
Note: See
TracTickets for help on using
tickets.
http://trac.wordpress.org/ticket/4331