[wp-meta] [Making WordPress.org] #366: IRC Logs missing viewport for responsiveness
Making WordPress.org
noreply at wordpress.org
Sun Feb 23 08:07:10 UTC 2014
#366: IRC Logs missing viewport for responsiveness
-----------------------------+---------------------
Reporter: celloexpressions | Owner:
Type: defect | Status: new
Priority: normal | Component: General
Keywords: has-patch |
-----------------------------+---------------------
irclogs.wordpress.org is responsive-ish, but doesn't specify a viewport,
so it's basically impossible to use on a mobile device. Adding the
following would fix this (can't patch directly since the source isn't
public):
`<meta name="viewport" content="width=device-width">` in the `<head>`
{{{
@-ms-viewport {
width: device-width;
}
@viewport {
width: device-width;
}
}}}
in the inline `<style>` section of `<head>`. Note that the CSS part is
required for IE10+, and the unprefixed `@viewport` is the future-proof
version of that (see https://core.trac.wordpress.org/ticket/25888 for more
details).
While you're in there it would be cool if it was Open Sans-ified.
--
Ticket URL: <https://meta.trac.wordpress.org/ticket/366>
Making WordPress.org <https://meta.trac.wordpress.org/>
Making WordPress.org
More information about the wp-meta
mailing list