Fix the alignment of checkboxes in menu location settings, and add responsive adjustments for those checkboxes. Fixes #26259, props mattheu.

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


git-svn-id: http://core.svn.wordpress.org/trunk@26336 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Matt Thomas 2013-11-27 20:20:10 +00:00
parent a3261ab61a
commit 3d43a7933b
4 changed files with 42 additions and 8 deletions

View File

@ -8760,19 +8760,21 @@ body.interim-login {
.menu-settings dl {
margin: 0 0 10px;
overflow: hidden;
padding-right: 18%;
}
.menu-settings dd {
float: right;
margin: 0;
width: 60%;
width: 100%;
}
.menu-settings dt {
float: right;
clear: both;
width: 18%;
padding: 3px 1px 0;
width: 21.951%;
padding: 3px 0 0;
margin-right: -21.951%;
}
.menu-settings label {
@ -11879,6 +11881,21 @@ li#wp-admin-bar-menu-toggle {
width: 100%;
}
.menu-settings dl {
padding-right: 0;
}
.menu-settings dd {
float: none;
width: 100%;
}
.menu-settings dt {
float: none;
width: auto;
margin-right: 0;
}
/* Theme Management Page */
#current-theme.has-screenshot {
padding: 0;

File diff suppressed because one or more lines are too long

View File

@ -8760,19 +8760,21 @@ body.interim-login {
.menu-settings dl {
margin: 0 0 10px;
overflow: hidden;
padding-left: 18%;
}
.menu-settings dd {
float: left;
margin: 0;
width: 60%;
width: 100%;
}
.menu-settings dt {
float: left;
clear: both;
width: 18%;
padding: 3px 1px 0;
width: 21.951%;
padding: 3px 0 0;
margin-left: -21.951%;
}
.menu-settings label {
@ -11879,6 +11881,21 @@ li#wp-admin-bar-menu-toggle {
width: 100%;
}
.menu-settings dl {
padding-left: 0;
}
.menu-settings dd {
float: none;
width: 100%;
}
.menu-settings dt {
float: none;
width: auto;
margin-left: 0;
}
/* Theme Management Page */
#current-theme.has-screenshot {
padding: 0;

File diff suppressed because one or more lines are too long