Administration: Fix a CSS issue on the Welcome Panel when the "Dashboard" heading is missing.
This change adds a CSS exception for when the "Dashboard" heading is missing or located below the Welcome Panel. Props critterverse, sabernhardt, rolfsiebers, audrasjb. Fixes #54977. Built from https://develop.svn.wordpress.org/trunk@52735 git-svn-id: http://core.svn.wordpress.org/trunk@52324 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c3ff2a1cc6
commit
fd752670a2
|
@ -111,6 +111,11 @@
|
|||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* Screen meta exception for when the "Dashboard" heading is missing or located below the Welcome Panel. */
|
||||
.index-php #screen-meta-links {
|
||||
margin: 0 0 8px 20px;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
position: relative;
|
||||
|
@ -121,6 +126,7 @@
|
|||
background-blend-mode: overlay;
|
||||
font-size: 14px;
|
||||
line-height: 1.3;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.welcome-panel::before {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -110,6 +110,11 @@
|
|||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* Screen meta exception for when the "Dashboard" heading is missing or located below the Welcome Panel. */
|
||||
.index-php #screen-meta-links {
|
||||
margin: 0 20px 8px 0;
|
||||
}
|
||||
|
||||
/* Welcome Panel */
|
||||
.welcome-panel {
|
||||
position: relative;
|
||||
|
@ -120,6 +125,7 @@
|
|||
background-blend-mode: overlay;
|
||||
font-size: 14px;
|
||||
line-height: 1.3;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.welcome-panel::before {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.0-alpha-52734';
|
||||
$wp_version = '6.0-alpha-52735';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue