bug #34124 [HttpKernel] (Welcome Page) Fix web debug toolbar z-index property (yceruto)

This PR was merged into the 4.4 branch.

Discussion
----------

[HttpKernel] (Welcome Page) Fix web debug toolbar z-index property

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | Fix #34122
| License       | MIT
| Doc PR        | -

Commits
-------

f7a242d705 Fix web debug toolbar z-index property
This commit is contained in:
Fabien Potencier 2019-10-26 10:22:14 +02:00
commit a73341b0f6

View File

@ -43,7 +43,7 @@
@media (min-width: 768px) {
@-webkit-keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } }
.sf-toolbar { opacity: 0; -webkit-animation: fade-in 1s .2s forwards; animation: fade-in 1s .2s forwards;}
.sf-toolbar { opacity: 0; -webkit-animation: fade-in 1s .2s forwards; animation: fade-in 1s .2s forwards; z-index: 99999; }
body { font-size: 20px; }
.warning { text-align: center; }