]> granicus.if.org Git - transmission/commitdiff
(web) Left out some stuff from the last commit
authorDaniel Lee <Longinus00@gmail.com>
Mon, 9 Aug 2010 21:05:56 +0000 (21:05 +0000)
committerDaniel Lee <Longinus00@gmail.com>
Mon, 9 Aug 2010 21:05:56 +0000 (21:05 +0000)
web/javascript/transmission.js
web/stylesheets/common.css

index d8fcece205eaadc93b2ed1a86fd48b330cee20de..3161690bb491330b2c1f1089d4fe0b15631982ea 100644 (file)
@@ -1428,7 +1428,7 @@ Transmission.prototype =
                                        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>';
index 0b175fc885129ee5a2d88caddb6e8949173b41d3..d00e6792e641b3b6acf2d6294b2dc6ee18ed9768 100644 (file)
@@ -309,12 +309,15 @@ div#torrent_filter_bar ul li.selected a {
 }
 
 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() {
@@ -578,7 +581,7 @@ div#torrent_inspector {
        top: 97px;
        bottom: 22px;
        right: 0px;
-       width: 500px;
+       width: 480px;
        background-color: #ddd;
        border-left: 1px solid #888;
        z-index: 2;
@@ -671,6 +674,7 @@ table.peer_list {
        text-align: left;
        cursor: default;
        clear: both;
+       table-layout: fixed;
 }
 
 .peer_list .encryptedCol {
@@ -704,6 +708,8 @@ table.peer_list {
 }
 
 .peer_list .clientCol {
+       white-space: nowrap;
+       overflow: hidden;
        text-overflow: ellipsis;
 }