Configurable Colors?
-
Team,
First of all: great plugin. It’s always great to have an easy way to keep track of “what needs to be done”. One thing I noticed about the colors:They can be quite “harsh”. For me the blue is too blue, red is too red, etc.
So besides an enhancement request “make note background color configurable, not just selectable” I figured: why not throw in some CSS? (yes, I recently learned how to do this 🙂 )STEPS:
- Edit your (child) theme’s “functions.php”
- Add the code below
- Match the “note_681” id’s with the ID’s of your notes (check with right-click, inspect).
// DJ____CHANGE WP Dashboard Notes background COLOR________________________
add_action('admin_head', function() {
echo '<style>
/* -- NOTE "TODO p1" */
#note_681 {
background-color: #c5f9b4 !important;
}
/* -- NOTE "TODO p2" */
#note_682 {
background-color: #c8f7ff !important;
}
/* -- NOTE "ROADMAP" */
#note_685 {
background-color: #f9d6b9 !important;
}
/* -- NOTE "DONE" */
#note_683 {
background-color: #d1d3d3 !important;
}
</style>';
});Cheers!
DJ
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
You must be logged in to reply to this topic.