Skip to content

Commit

Permalink
[TwigBundle] Break long lines in exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-verschaeve committed Sep 19, 2017
1 parent 949b17a commit 1db99f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -1,4 +1,4 @@
<div class="trace-line-header {{ trace.file|default(false) ? 'sf-toggle' }}" data-toggle-selector="#trace-html-{{ prefix }}-{{ i }}" data-toggle-initial="{{ _display_code_snippet ? 'display' }}">
<div class="trace-line-header break-long-words {{ trace.file|default(false) ? 'sf-toggle' }}" data-toggle-selector="#trace-html-{{ prefix }}-{{ i }}" data-toggle-initial="{{ _display_code_snippet ? 'display' }}">
{% if trace.file|default(false) %}
<span class="icon icon-close">{{ include('@Twig/images/icon-minus-square.svg') }}</span>
<span class="icon icon-open">{{ include('@Twig/images/icon-plus-square.svg') }}</span>
Expand Down
Expand Up @@ -105,7 +105,7 @@ header .container { display: flex; justify-content: space-between; }
.trace-line a { color: #222; }
.trace-line .icon { opacity: .4; position: absolute; left: 10px; top: 11px; }
.trace-line .icon svg { height: 16px; width: 16px; }
.trace-line-header { padding-left: 36px; }
.trace-line-header { padding-left: 36px; padding-right: 10px; }

.trace-file-path, .trace-file-path a { color: #222; font-size: 13px; }
.trace-class { color: #B0413E; }
Expand Down

0 comments on commit 1db99f3

Please sign in to comment.