Skip to content

Commit bbe09fe

Browse files
committed
Respect configured toolbar position
1 parent 86750a3 commit bbe09fe

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar.css.twig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,14 +445,19 @@
445445
.sfErrorToolbar {
446446
background: #222;
447447
left: 0;
448+
{% if position == 'top' %}
449+
top: 0;
450+
{% else %}
448451
bottom: 0;
452+
{% endif %}
449453
color: #f5f5f5;
450454
font: 13px/36px Arial, sans-serif;
451455
height: 36px;
452456
padding: 0 15px;
453457
position: fixed;
454458
width: 100%;
455459
text-align: left;
460+
z-index: 99999;
456461
}
457462

458463
.sfErrorToolbar a {

0 commit comments

Comments
 (0)