Skip to content

Commit

Permalink
Update log.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
rap2hpoutre committed Dec 29, 2014
1 parent dcde89c commit 6d8bf82
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/views/log.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@
.stack {
font-size: 0.85em;
}
.date {
min-width: 75px;
}
.text {
word-break: break-all;
}
</style>
</head>
<body>
Expand Down Expand Up @@ -56,8 +62,8 @@
@foreach($logs as $key => $log)
<tr>
<td class="text-{{{$log['level_class']}}}"><span class="glyphicon glyphicon-{{{$log['level_img']}}}-sign" aria-hidden="true"></span> &nbsp;{{$log['level']}}</td>
<td>{{{$log['date']}}}</td>
<td style="word-break: break-all;">
<td class="date">{{{$log['date']}}}</td>
<td class="text">
@if ($log['stack'])
<a class="pull-right expand btn btn-default btn-xs" data-display="stack{{{$key}}}"><span class="glyphicon glyphicon-search"></span></a>
@endif
Expand Down

0 comments on commit 6d8bf82

Please sign in to comment.