Opened 14 years ago
Closed 10 years ago
#15457 closed enhancement (worksforme)
Add URI support to add_editor_style()
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.0 |
Component: | TinyMCE | Keywords: | close |
Focuses: | Cc: |
Description
Currently add_editor_style() only allows for CSS files to be added that are relative in location to the current theme's stylesheet_directory or template_directory, meaning it can only be used by theme authors. Let's keep that functionality, but add the ability to attach a CSS file via URI. This way, plugin authors can use it to add editor styles.
An example of why this might be necessary is a microformat plugin where the user can style microformats differently by adding certain CSS files by the user's choice. Right now, we can only see a change like that when we click preview.
So it would be nice if plugins could use this function as well as themes.
I've attached a potential patch.
Attachments (2)
Change History (9)
#3
@
14 years ago
- Keywords 3.2-early added; add_editor_style tinymce removed
- Milestone changed from Awaiting Review to Future Release
#4
@
10 years ago
- Keywords dev-feedback needs-refresh added; 3.2-early removed
If still desired, the patch needs to be refreshed.
#5
@
10 years ago
- Keywords close added; dev-feedback needs-refresh removed
There is the mce_css
filter for this, since 2.1. Can be used to add any stylesheet inside the editor iframe.
Potential patch. Mildly tested.