| 1 |
/* Recolor + size the icon on the <img> itself (FBS-82099). The brand |
| 2 |
mark ships as fill="currentColor" (black in <img> context); brightness(0) |
| 3 |
invert(1) renders it white, full opacity keeps it crisp/active in every |
| 4 |
state. Targeting the <img> avoids the wrapper-vs-img filter conflict |
| 5 |
that previously left it dimmed. */ |
| 6 |
#toplevel_page_xspeed .wp-menu-image img{filter:brightness(0) invert(1);opacity:1;width:20px;height:20px;padding:7px 0} |
| 7 |
|