(web) Left out some stuff from the last commit

This commit is contained in:
Daniel Lee
2010-08-09 21:05:56 +00:00
parent 595ad6eb2e
commit b5dbdfd25b
2 changed files with 9 additions and 3 deletions

View File

@@ -1428,7 +1428,7 @@ Transmission.prototype =
html += '<td class="percentCol">' + Math.floor(peer.progress*100) + '%' + '</td>'; html += '<td class="percentCol">' + Math.floor(peer.progress*100) + '%' + '</td>';
html += '<td>' + peer.flagStr + '</td>'; html += '<td>' + peer.flagStr + '</td>';
html += '<td>' + peer.address + '</td>'; html += '<td>' + peer.address + '</td>';
html += '<td>' + peer.clientName + '</td>'; html += '<td class="clientCol">' + peer.clientName + '</td>';
html += '</tr>'; html += '</tr>';
} }
html += '</table></div>'; html += '</table></div>';

View File

@@ -309,12 +309,15 @@ div#torrent_filter_bar ul li.selected a {
} }
div#torrent_filter_bar input#torrent_search { div#torrent_filter_bar input#torrent_search {
float: right;
height: 15px; height: 15px;
width: 100px; width: 100px;
border: solid 0 #fff; border: solid 0 #fff;
padding: 0 2px; padding: 0 2px;
margin: 4px 5px 0 0; margin: 4px 5px 0 0;
position:absolute;
right: 0px;
top: 0px;
border-radius: 10px;
} }
/* Safari-look filter input for Firefox */ /* Safari-look filter input for Firefox */
@-moz-document url-prefix() { @-moz-document url-prefix() {
@@ -578,7 +581,7 @@ div#torrent_inspector {
top: 97px; top: 97px;
bottom: 22px; bottom: 22px;
right: 0px; right: 0px;
width: 500px; width: 480px;
background-color: #ddd; background-color: #ddd;
border-left: 1px solid #888; border-left: 1px solid #888;
z-index: 2; z-index: 2;
@@ -671,6 +674,7 @@ table.peer_list {
text-align: left; text-align: left;
cursor: default; cursor: default;
clear: both; clear: both;
table-layout: fixed;
} }
.peer_list .encryptedCol { .peer_list .encryptedCol {
@@ -704,6 +708,8 @@ table.peer_list {
} }
.peer_list .clientCol { .peer_list .clientCol {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }