Closed
Description
Symfony version(s) affected: v4.0.11
Description
If I put some CSS rules with a body classes, it will apply on the web profiler toolbar.
How to reproduce
body.logon {
a:not(.btn) {
color: map_get($project-colors, 'red');
&:hover {
text-decoration: underline;
}
}
}
And create a template with <body class="logon">
You will have something like this:
I'm pretty sure it's related to the body class case, because I have another global color definition for a
links and it does not affect the toolbar.