Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 944bddf

Browse files
committed
bug #16825 [VarDumper] fix .sf-dump z-index (debug bar conflict) (Antoine LA)
This PR was submitted for the master branch but it was merged into the 2.7 branch instead (closes #16825). Discussion ---------- [VarDumper] fix .sf-dump z-index (debug bar conflict) | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #16824 | License | MIT | Doc PR | - Just changed the z-index because the twig dump is actually displaying over the debug bar (#16824). Commits ------- a72efb9 [VarDumper] fixed .sf-dump z-index
2 parents 093ea3b + a72efb9 commit 944bddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class HtmlDumper extends CliDumper
3131
protected $headerIsDumped = false;
3232
protected $lastDepth = -1;
3333
protected $styles = array(
34-
'default' => 'background-color:#18171B; color:#FF8400; line-height:1.2em; font:12px Menlo, Monaco, Consolas, monospace; word-wrap: break-word; white-space: pre-wrap; position:relative; z-index:100000; word-break: normal',
34+
'default' => 'background-color:#18171B; color:#FF8400; line-height:1.2em; font:12px Menlo, Monaco, Consolas, monospace; word-wrap: break-word; white-space: pre-wrap; position:relative; z-index:99999; word-break: normal',
3535
'num' => 'font-weight:bold; color:#1299DA',
3636
'const' => 'font-weight:bold',
3737
'str' => 'font-weight:bold; color:#56DB3A',

0 commit comments

Comments
 (0)