Opened 11 years ago
Closed 11 years ago
#25783 closed enhancement (invalid)
Allow styling the post title field in DFW
Reported by: | raamdev | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | General | Keywords: | has-patch |
Focuses: | Cc: |
Description
In full screen mode, the post title field cannot be styled. While the post content in the editor can be made to match the theme style, the post title cannot.
Attachments (2)
Change History (5)
#3
@
11 years ago
- Milestone Awaiting Review deleted
- Resolution set to invalid
- Status changed from new to closed
Sure you can. Add a little CSS targeting #wp-fullscreen-title
via admin_head
. Bonus points for checking if ( 'post' === get_current_screen()->base )
first.
Also, not a big fan of inline CSS like that.
Note: See
TracTickets for help on using
tickets.
Attached a patch that adds a filter to the style attribute of the
#wp-fullscreen-title
input element.