Fixed debug output if exception or php fatal error is thrown. (#1399)

This commit is contained in:
Christian Hinz 2024-02-09 18:25:10 +01:00 committed by GitHub
parent 01c943038a
commit ef0492d721
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,7 +1,8 @@
/.idea
/build
/vendor
composer.phar
composer.lock
.DS_Store
.phpunit.result.cache
/tests/Browser
/tests/Browser

View File

@ -174,7 +174,7 @@ div.phpdebugbar-minimized {
}
div.phpdebugbar code, div.phpdebugbar pre, div.phpdebugbar samp {
background: none;
background: none !important;
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
font-size: 1em;
border: 0;
@ -660,7 +660,7 @@ div.phpdebugbar-widgets-messages .phpdebugbar-widgets-value.phpdebugbar-widgets-
}
div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item pre.sf-dump {
display: inline-block;
display: inline-block !important;
position: relative;
top: -1px;
}
@ -816,3 +816,13 @@ div.phpdebugbar-widgets-templates span.phpdebugbar-widgets-param-count:before {
opacity: 0.2;
background: red;
}
@media (prefers-color-scheme: dark) {
div.phpdebugbar .phpdebugbar-indicator span.phpdebugbar-tooltip,
div.phpdebugbar div.phpdebugbar-mini-design a.phpdebugbar-tab:hover span.phpdebugbar-text,
div.phpdebugbar pre.sf-dump,
div.phpdebugbar .hljs,
div.phpdebugbar code.phpdebugbar-widgets-sql span.hljs-operator {
color: var(--color-gray-100) !important;
}
}