feature #26824 add exception chain breadcrumbs navigation

This commit is contained in:
kiler129 2018-05-19 16:51:12 -05:00
parent 2ae7ad9fe1
commit 5551e0c091
3 changed files with 4 additions and 4 deletions

View File

@ -3,10 +3,10 @@
<div class="container">
<h2 class="exception-hierarchy">
{% for previousException in exception.allPrevious|reverse %}
{{ previousException.class|abbr_class }}
<a href="#trace-box-{{ loop.revindex + 1 }}">{{ previousException.class|abbr_class }}</a>
<span class="icon">{{ include('@Twig/images/chevron-right.svg') }}</span>
{% endfor %}
{{ exception.class|abbr_class }}
<a href="#trace-box-1">{{ exception.class|abbr_class }}</a>
</h2>
<h2 class="exception-http">
HTTP {{ status_code }} <small>{{ status_text }}</small>

View File

@ -1,4 +1,4 @@
<div class="trace trace-as-html">
<div class="trace trace-as-html" id="trace-box-{{ index }}">
<div class="trace-details">
<div class="trace-head">
<span class="sf-toggle" data-toggle-selector="#trace-html-{{ index }}" data-toggle-initial="{{ expand ? 'display' }}">

View File

@ -73,7 +73,7 @@ header .container { display: flex; justify-content: space-between; }
.exception-summary { background: #B0413E; border-bottom: 2px solid rgba(0, 0, 0, 0.1); border-top: 1px solid rgba(0, 0, 0, .3); flex: 0 0 auto; margin-bottom: 15px; }
.exception-metadata { background: rgba(0, 0, 0, 0.1); padding: 7px 0; }
.exception-metadata .container { display: flex; flex-direction: row; justify-content: space-between; }
.exception-metadata h2 { color: rgba(255, 255, 255, 0.8); font-size: 13px; font-weight: 400; margin: 0; }
.exception-metadata h2, .exception-metadata h2 > a { color: rgba(255, 255, 255, 0.8); font-size: 13px; font-weight: 400; margin: 0; }
.exception-http small { font-size: 13px; opacity: .7; }
.exception-hierarchy { flex: 1; }
.exception-hierarchy .icon { margin: 0 3px; opacity: .7; }