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:
parent
5b327853e4
commit
443e88b1c2
|
@ -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
|
@ -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
Loading…
Reference in New Issue