Widgets: split the sidebars in two containers so there are no empty spaces when they are shown in two columns and some are open, other closed. See #25952.

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


git-svn-id: http://core.svn.wordpress.org/trunk@26190 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz
2013-11-20 04:45:10 +00:00
parent 2b0a5aedc9
commit 30b1c76a01
7 changed files with 70 additions and 53 deletions

View File

@@ -10810,33 +10810,33 @@ li#wp-admin-bar-toggle-button {
#menu-locations-wrap .widefat {
width: 100%;
}
}
@media only screen and (min-width: 1250px) {
#widgets-left #available-widgets .widget {
width: 49%;
float: right;
}
#widgets-right #available-widgets .widget:nth-child(even) {
float: left;
}
#widgets-right .widgets-holder-wrap {
width: 48.5%;
#widgets-right .sidebars-column-1,
#widgets-right .sidebars-column-2 {
float: right;
}
#widgets-left .widgets-holder-wrap:nth-child(odd) {
clear: both;
}
#widgets-left .widgets-holder-wrap:nth-child(even) {
float: left;
width: 49%;
}
#widgets-right.single-sidebar .widgets-holder-wrap {
#widgets-right .sidebars-column-1 {
margin-left: 2%;
}
#widgets-right.single-sidebar .sidebars-column-1,
#widgets-right.single-sidebar .sidebars-column-2 {
float: none;
width: 100%;
margin: 0;
}
}