Fix block view in explorer

This commit is contained in:
Martin Boehm 2018-09-18 12:44:07 +02:00
parent c5ada602d4
commit 8c1ccda82e
2 changed files with 4 additions and 5 deletions

View File

@ -182,7 +182,6 @@ h3 {
} }
.ellipsis { .ellipsis {
display: block;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;

View File

@ -44,7 +44,7 @@
<tbody> <tbody>
<tr> <tr>
<td style="width: 25%;">Version</td> <td style="width: 25%;">Version</td>
<td class="data">{{$b.Version}}</td> <td class="data ellipsis">{{$b.Version}}</td>
</tr> </tr>
<tr> <tr>
<td>Merkle Root</td> <td>Merkle Root</td>
@ -52,15 +52,15 @@
</tr> </tr>
<tr> <tr>
<td>Nonce</td> <td>Nonce</td>
<td class="data">{{$b.Nonce}}</td> <td class="data ellipsis">{{$b.Nonce}}</td>
</tr> </tr>
<tr> <tr>
<td>Bits</td> <td>Bits</td>
<td class="data">{{$b.Bits}}</td> <td class="data ellipsis">{{$b.Bits}}</td>
</tr> </tr>
<tr> <tr>
<td>Difficulty</td> <td>Difficulty</td>
<td class="data">{{$b.Difficulty}}</td> <td class="data ellipsis">{{$b.Difficulty}}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>