Menus: Prevent checkboxes and radio buttons from being stretched to full width on mobile.
props tyxla. fixes #31425. Built from https://develop.svn.wordpress.org/trunk@31523 git-svn-id: http://core.svn.wordpress.org/trunk@31504 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
aade870f17
commit
132d65ef1e
|
@ -836,6 +836,11 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu-item-settings input[type="checkbox"],
|
||||||
|
.menu-item-settings input[type="radio"] {
|
||||||
|
width: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
.menu-settings dl {
|
.menu-settings dl {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -836,6 +836,11 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu-item-settings input[type="checkbox"],
|
||||||
|
.menu-item-settings input[type="radio"] {
|
||||||
|
width: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
.menu-settings dl {
|
.menu-settings dl {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.2-alpha-31522';
|
$wp_version = '4.2-alpha-31523';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue