tweaked previous merge

This commit is contained in:
Fabien Potencier 2013-03-23 15:29:58 +01:00
parent e602122f97
commit 5dee43c186
3 changed files with 8 additions and 11 deletions

View File

@ -1,7 +1,3 @@
.sf-reset pre {
white-space: pre;
font-size: 12px;
}
.sf-reset .traces {
padding-bottom: 14px;
}
@ -110,3 +106,8 @@
color: #000;
font-size: 12px;
}
.sf-reset #traces-text pre {
white-space: pre;
font-size: 12px;
font-family: monospace;
}

View File

@ -66,7 +66,3 @@ pre {
white-space: normal;
font-family: Arial, Helvetica, sans-serif;
}
pre.xdebug-var-dump{
white-space: pre;
font-family: monospace;
}

View File

@ -1,8 +1,8 @@
{% if trace.function %}
at {{ trace.class ~ trace.type ~ trace.function }}({{ trace.args|format_args_as_text }})
at {{ trace.class ~ trace.type ~ trace.function }}({{ trace.args|format_args_as_text }})
{% else %}
at n/a
at n/a
{% endif %}
{% if trace.file is defined and trace.line is defined %}
in {{ trace.file }} line {{ trace.line }}
in {{ trace.file }} line {{ trace.line }}
{% endif %}