html += '<td class="percentCol">' + Math.floor(peer.progress*100) + '%' + '</td>';
html += '<td>' + peer.flagStr + '</td>';
html += '<td>' + peer.address + '</td>';
- html += '<td>' + peer.clientName + '</td>';
+ html += '<td class="clientCol">' + peer.clientName + '</td>';
html += '</tr>';
}
html += '</table></div>';
}
div#torrent_filter_bar input#torrent_search {
- float: right;
height: 15px;
width: 100px;
border: solid 0 #fff;
padding: 0 2px;
margin: 4px 5px 0 0;
+ position:absolute;
+ right: 0px;
+ top: 0px;
+ border-radius: 10px;
}
/* Safari-look filter input for Firefox */
@-moz-document url-prefix() {
top: 97px;
bottom: 22px;
right: 0px;
- width: 500px;
+ width: 480px;
background-color: #ddd;
border-left: 1px solid #888;
z-index: 2;
text-align: left;
cursor: default;
clear: both;
+ table-layout: fixed;
}
.peer_list .encryptedCol {
}
.peer_list .clientCol {
+ white-space: nowrap;
+ overflow: hidden;
text-overflow: ellipsis;
}