Another try.
This commit is contained in:
parent
edfa7d3c0f
commit
918f5426ad
|
|
@ -39,7 +39,8 @@ table.list tr.total th { border: none; border-top: 1px solid #bbb; text-align: r
|
|||
|
||||
div.section table.list, div.section-hidden table.list { margin-bottom: 0; }
|
||||
|
||||
sub { display: block; color: #888; }
|
||||
sub { display: block; font-size: 0.8em; color: #888; }
|
||||
small { font-size: 0.8em; color: #888; }
|
||||
.unknown { color: #888; }
|
||||
|
||||
table.facts { float: left; margin-right: 50px; }
|
||||
|
|
|
|||
|
|
@ -321,7 +321,7 @@ function fmt_node_host(node_host) {
|
|||
var both = node_host.split('@');
|
||||
var node = both.slice(0, 1);
|
||||
var host = both.slice(1);
|
||||
return host + '<sub>' + node_host + '</sub>';
|
||||
return host + ' <small>(' + node_host + ')</small>';
|
||||
}
|
||||
|
||||
function alt_rows(i) {
|
||||
|
|
|
|||
|
|
@ -139,7 +139,7 @@
|
|||
<tr>
|
||||
<th>Protocol</th>
|
||||
<% if (nodes_interesting) { %>
|
||||
<th>Host</th>
|
||||
<th>Host <small>(node)</small></th>
|
||||
<% } %>
|
||||
<th>Bound to</th>
|
||||
<th>Port</th>
|
||||
|
|
@ -163,7 +163,7 @@
|
|||
<tr>
|
||||
<th>Context</th>
|
||||
<% if (nodes_interesting) { %>
|
||||
<th>Host</th>
|
||||
<th>Host <small>(node)</small></th>
|
||||
<% } %>
|
||||
<th>Bound to</th>
|
||||
<th>Port</th>
|
||||
|
|
|
|||
Loading…
Reference in New Issue