bug #27758 [WebProfilerBundle] Prevent toolbar links color override by css (alcalyn)

This PR was merged into the 2.8 branch.

Discussion
----------

[WebProfilerBundle] Prevent toolbar links color override by css

| Q             | A
| ------------- | ---
| Branch?       | 2.8
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #27658
| License       | MIT
| Doc PR        |

Fixes this issue: https://github.com/symfony/symfony/issues/27658#issuecomment-401008659

Links color in toolbar can be easily override by application css. As this could happens sometimes, this PR set links color with a stronger CSS precedence.

Commits
-------

e12e217f2b  Prevent toolbar links color override by css
This commit is contained in:
Fabien Potencier 2018-07-05 09:19:04 +02:00
commit 46a32f1e59

View File

@ -150,11 +150,11 @@
margin-bottom: 0;
}
.sf-toolbar-block .sf-toolbar-info-piece a {
div.sf-toolbar .sf-toolbar-block .sf-toolbar-info-piece a {
color: #99CDD8;
text-decoration: underline;
}
.sf-toolbar-block .sf-toolbar-info-piece a:hover {
div.sf-toolbar .sf-toolbar-block a:hover {
text-decoration: none;
}