#57307 closed defect (bug) (wontfix)
WordPress dashboard => about page banner color doesn't match with admin color scheme settings
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | Administration | Keywords: | |
Focuses: | Cc: |
Description ¶
Wp Dashboard => Users => Profile:
Admin color scheme: [Default](https://tinyurl.com/2luyldks)
Dashboard Home Page (/wp-admin/index.php): https://tinyurl.com/2jle9sxb
Dashboard About Page (/wp-admin/about.php): https://tinyurl.com/2rxj63wf
Admin color scheme: [Light](https://tinyurl.com/2hzrm2jt)
Dashboard Home Page (/wp-admin/index.php): https://tinyurl.com/2jfajj2z
Dashboard About Page (/wp-admin/about.php): https://tinyurl.com/2jbdgzl4
We see Dashboard Home page banner color is updated as per Admin color scheme.
But dashboard about page banner color is not updated
Pull Requests
- Loading…
Change History (3)
#2
@ Core Committer
2 years ago
- Milestone Awaiting Review deleted
- Resolution set to wontfix
- Status changed from new to closed
It is intentional that the dashboard updates with the color scheme, but the About page does not.
The dashboard widget should blend in more with your admin experience. The About pages, on the other hand, are meant to be more of a standalone design, the header consistent with the other graphics on those pages.
For example, the images on Freedoms & Privacy match the header, and the avatar color on Credits matches the header. This is mainly to keep those images & styles simple, vs trying to create new variations for each scheme.
Looks like the Dashboard's Welcome panel sets its background to
$dashboard-accent-1
, and embeds the SVG directly in the page, stylingfill
with$dashboard-accent-1
andstroke
with$dashboard-accent-2
. See here.The solution should be careful to maintain the same width, height and positioning of each SVG on the
About
,Credit
,Freedoms
andPrivacy
pages.Pinging @ryelle as the most knowledgeable contributor on this code for insights.