Widgets: fix scaling of extra-wide widgets on 480px and 320px devices, fixes #26701 for trunk.

Built from https://develop.svn.wordpress.org/trunk@26963


git-svn-id: http://core.svn.wordpress.org/trunk@26842 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2014-01-16 21:56:11 +00:00
parent 5b327853e4
commit 443e88b1c2
4 changed files with 24 additions and 2 deletions

View File

@ -11405,6 +11405,17 @@ li#wp-admin-bar-menu-toggle {
width: 100%;
float: none;
}
div.widget {
margin: 0 auto 10px !important;
max-width: 480px;
}
}
@media screen and (max-width: 320px) {
div.widget {
max-width: 320px;
}
}
@media only screen and (max-width: 768px) {

File diff suppressed because one or more lines are too long

View File

@ -11405,6 +11405,17 @@ li#wp-admin-bar-menu-toggle {
width: 100%;
float: none;
}
div.widget {
margin: 0 auto 10px !important;
max-width: 480px;
}
}
@media screen and (max-width: 320px) {
div.widget {
max-width: 320px;
}
}
@media only screen and (max-width: 768px) {

File diff suppressed because one or more lines are too long