Administration: Make the height of dashboard widget headings consistent with that of post meta boxes on smaller screens.
This also ensures that the toggle arrow for dashboard widgets is properly aligned. Props chetan200891. Fixes #49727. Built from https://develop.svn.wordpress.org/trunk@47535 git-svn-id: http://core.svn.wordpress.org/trunk@47310 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2e7235f7ca
commit
042bf6dbd9
|
@ -1208,6 +1208,10 @@ a.rsswidget {
|
|||
}
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
#dashboard-widgets h2 {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
#dashboard_recent_comments #the-comment-list .comment-item .avatar {
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1207,6 +1207,10 @@ a.rsswidget {
|
|||
}
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
#dashboard-widgets h2 {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
#dashboard_recent_comments #the-comment-list .comment-item .avatar {
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.5-alpha-47534';
|
||||
$wp_version = '5.5-alpha-47535';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue