Removed fixed height from profiler resume box.

This commit is contained in:
Adrian Olek 2014-10-07 21:09:06 +02:00
parent 46d18f44ce
commit e7ad1729fd
2 changed files with 10 additions and 4 deletions

View File

@ -17,9 +17,9 @@
<strong>Profile for:</strong>
{{ profile.method|upper }}
{% if profile.method|upper in ['GET', 'HEAD'] %}
<a href="{{ profile.url }}">{{ profile.url }}</a>
<a href="{{ profile.url }}" id="resume-url">{{ profile.url }}</a>
{% else %}
{{ profile.url }}
<span id="resume-url">{{ profile.url }}</span>
{% endif %}
<span class="date">
<em>by {{ profile.ip }}</em> at <em>{{ profile.time|date('r') }}</em>

View File

@ -209,12 +209,13 @@ li {
#resume {
background-color: #f6f6f6;
border-bottom: 1px solid #dfdfdf;
padding: 18px 10px 0px;
padding: 18px 10px 14px;
margin-left: 250px;
height: 34px;
min-height: 20px;
color: #313131;
font-size: 12px;
border-top-right-radius: 16px;
line-height: 18px;
}
a#resume-view-all {
display: inline-block;
@ -225,6 +226,11 @@ a#resume-view-all {
color: white;
font-weight: bold;
text-decoration: none;
line-height: 14px;
}
#resume-url {
word-wrap: break-word;
word-break: break-all;
}
table th.value {
width: 450px;