Opened 9 years ago
Closed 9 years ago
#35921 closed defect (bug) (fixed)
wp_enqueue_style media
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 4.5 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Script Loader | Keywords: | has-patch |
Focuses: | docs | Cc: |
Description
wp_enqueue_style support:
'all',
'aural' - Deprecated.,
'braille' - Deprecated.,
'handheld' - Deprecated.,
'projection' - Deprecated.,
'print',
'screen',
'tty' - Deprecated.,
'tv' - Deprecated.
it's possible to support media query
Attachments (1)
Change History (5)
#2
@
9 years ago
for example
<link rel="stylesheet" media="(max-width: 640px)" href="max-640px.css"> <link rel="stylesheet" media="(min-width: 640px)" href="min-640px.css"> <link rel="stylesheet" media="(orientation: portrait)" href="portrait.css"> <link rel="stylesheet" media="(orientation: landscape)" href="landscape.css">
for example these support
#3
@
9 years ago
- Focuses docs added
- Keywords has-patch added; reporter-feedback removed
- Milestone changed from Awaiting Review to 4.5
- Type changed from enhancement to defect (bug)
- Version 4.4.2 deleted
Yes, media queries are supported. 35921.patch updates the docs and adds unit tests.
Note: See
TracTickets for help on using
tickets.
Hello @camaran, could you please explain in a few more words about what you want to enhance?