Bundled Themes: implement Microsoft-specific `@viewport` rules for better responsive styling in Windows 8 "snapped" views. Props celloexpressions, fixes #25888.
Built from https://develop.svn.wordpress.org/trunk@26070 git-svn-id: http://core.svn.wordpress.org/trunk@25990 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
944434824e
commit
5bb8d78e07
|
@ -2283,6 +2283,18 @@ p.comment-form-comment {
|
|||
/* =Responsive Structure
|
||||
----------------------------------------------- */
|
||||
|
||||
/* Does the same thing as <meta name="viewport" content="width=device-width">,
|
||||
* but in the future W3C standard way. -ms- prefix is required for IE10+ to
|
||||
* render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
|
||||
* the meta tag. See http://core.trac.wordpress.org/ticket/25888.
|
||||
*/
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
@viewport {
|
||||
width: device-width;
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
/* Simplify the basic layout */
|
||||
#main #content {
|
||||
|
|
|
@ -2577,6 +2577,18 @@ footer.entry-meta {
|
|||
* ----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
/* Does the same thing as <meta name="viewport" content="width=device-width">,
|
||||
* but in the future W3C standard way. -ms- prefix is required for IE10+ to
|
||||
* render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
|
||||
* the meta tag. See http://core.trac.wordpress.org/ticket/25888.
|
||||
*/
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
@viewport {
|
||||
width: device-width;
|
||||
}
|
||||
|
||||
@media (max-width: 1599px) {
|
||||
.site {
|
||||
border: 0;
|
||||
|
|
|
@ -1432,6 +1432,18 @@ img#wpstats {
|
|||
/* =Media queries
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* Does the same thing as <meta name="viewport" content="width=device-width">,
|
||||
* but in the future W3C standard way. -ms- prefix is required for IE10+ to
|
||||
* render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
|
||||
* the meta tag. See http://core.trac.wordpress.org/ticket/25888.
|
||||
*/
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
@viewport {
|
||||
width: device-width;
|
||||
}
|
||||
|
||||
/* Minimum width of 600 pixels. */
|
||||
@media screen and (min-width: 600px) {
|
||||
.author-avatar {
|
||||
|
|
Loading…
Reference in New Issue