Administration: Admin menu: Improve vertical spacing and alignment of menu items with counters.
Props pauldechov, JDTrower. Fixes #41317. Built from https://develop.svn.wordpress.org/trunk@41362 git-svn-id: http://core.svn.wordpress.org/trunk@41195 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
84d2c51153
commit
317d36668b
|
@ -280,9 +280,9 @@
|
|||
|
||||
#adminmenu .wp-submenu a {
|
||||
font-size: 13px;
|
||||
line-height: 1.2;
|
||||
line-height: 18px;
|
||||
margin: 0;
|
||||
padding: 6px 0;
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu li.current,
|
||||
|
@ -303,7 +303,7 @@
|
|||
|
||||
#adminmenu .wp-has-current-submenu ul > li > a,
|
||||
.folded #adminmenu li.menu-top .wp-submenu > li > a {
|
||||
padding: 6px 12px;
|
||||
padding: 5px 12px;
|
||||
}
|
||||
|
||||
#adminmenu a.menu-top,
|
||||
|
@ -510,26 +510,24 @@ ul#adminmenu > li.current > a.current:after {
|
|||
border: 0 none;
|
||||
}
|
||||
|
||||
/* @todo: consider to use a single rule for these counters and the list table comments counters. */
|
||||
#adminmenu .awaiting-mod,
|
||||
#adminmenu .update-plugins {
|
||||
display: inline-block;
|
||||
background-color: #d54e21;
|
||||
vertical-align: top;
|
||||
margin: 1px 2px 0 0;
|
||||
padding: 0 5px;
|
||||
min-width: 7px;
|
||||
height: 17px;
|
||||
border-radius: 11px;
|
||||
background-color: #ca4a1f;
|
||||
color: #fff;
|
||||
font-size: 9px;
|
||||
line-height: 17px;
|
||||
font-weight: 600;
|
||||
margin: 1px 2px 0 0;
|
||||
vertical-align: top;
|
||||
border-radius: 10px;
|
||||
text-align: center;
|
||||
z-index: 26;
|
||||
}
|
||||
|
||||
#adminmenu li .awaiting-mod span,
|
||||
#adminmenu li span.update-plugins span {
|
||||
display: block;
|
||||
padding: 0 6px;
|
||||
}
|
||||
|
||||
#adminmenu li.current a .awaiting-mod,
|
||||
#adminmenu li a.wp-has-current-submenu .update-plugins {
|
||||
background-color: #00b9eb;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -280,9 +280,9 @@
|
|||
|
||||
#adminmenu .wp-submenu a {
|
||||
font-size: 13px;
|
||||
line-height: 1.2;
|
||||
line-height: 18px;
|
||||
margin: 0;
|
||||
padding: 6px 0;
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu li.current,
|
||||
|
@ -303,7 +303,7 @@
|
|||
|
||||
#adminmenu .wp-has-current-submenu ul > li > a,
|
||||
.folded #adminmenu li.menu-top .wp-submenu > li > a {
|
||||
padding: 6px 12px;
|
||||
padding: 5px 12px;
|
||||
}
|
||||
|
||||
#adminmenu a.menu-top,
|
||||
|
@ -510,26 +510,24 @@ ul#adminmenu > li.current > a.current:after {
|
|||
border: 0 none;
|
||||
}
|
||||
|
||||
/* @todo: consider to use a single rule for these counters and the list table comments counters. */
|
||||
#adminmenu .awaiting-mod,
|
||||
#adminmenu .update-plugins {
|
||||
display: inline-block;
|
||||
background-color: #d54e21;
|
||||
vertical-align: top;
|
||||
margin: 1px 0 0 2px;
|
||||
padding: 0 5px;
|
||||
min-width: 7px;
|
||||
height: 17px;
|
||||
border-radius: 11px;
|
||||
background-color: #ca4a1f;
|
||||
color: #fff;
|
||||
font-size: 9px;
|
||||
line-height: 17px;
|
||||
font-weight: 600;
|
||||
margin: 1px 0 0 2px;
|
||||
vertical-align: top;
|
||||
border-radius: 10px;
|
||||
text-align: center;
|
||||
z-index: 26;
|
||||
}
|
||||
|
||||
#adminmenu li .awaiting-mod span,
|
||||
#adminmenu li span.update-plugins span {
|
||||
display: block;
|
||||
padding: 0 6px;
|
||||
}
|
||||
|
||||
#adminmenu li.current a .awaiting-mod,
|
||||
#adminmenu li a.wp-has-current-submenu .update-plugins {
|
||||
background-color: #00b9eb;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -96,7 +96,7 @@
|
|||
border-top-color: #0073aa;
|
||||
}
|
||||
|
||||
/* comments bubble pending */
|
||||
/* @todo: consider to use a single rule for these counters and the admin menu counters. */
|
||||
.column-response .post-com-count-pending,
|
||||
.column-comments .post-com-count-pending {
|
||||
position: relative;
|
||||
|
|
|
@ -96,7 +96,7 @@
|
|||
border-top-color: #0073aa;
|
||||
}
|
||||
|
||||
/* comments bubble pending */
|
||||
/* @todo: consider to use a single rule for these counters and the admin menu counters. */
|
||||
.column-response .post-com-count-pending,
|
||||
.column-comments .post-com-count-pending {
|
||||
position: relative;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9-alpha-41361';
|
||||
$wp_version = '4.9-alpha-41362';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue