diff --git a/web/index.html b/web/index.html
index d89cb8e76..560d8167a 100755
--- a/web/index.html
+++ b/web/index.html
@@ -60,6 +60,7 @@
Downloading
Seeding
Paused
+ Finished
diff --git a/web/stylesheets/common.css b/web/stylesheets/common.css
index 58d310411..92d1c2824 100644
--- a/web/stylesheets/common.css
+++ b/web/stylesheets/common.css
@@ -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;
}
diff --git a/web/stylesheets/iphone.css b/web/stylesheets/iphone.css
index 4c24dea46..8426852ca 100644
--- a/web/stylesheets/iphone.css
+++ b/web/stylesheets/iphone.css
@@ -197,6 +197,7 @@ div#torrent_filter_bar {
width: 100%;
z-index: 2;
text-align: center;
+ overflow: hidden;
}
div#torrent_filter_bar ul {
@@ -243,6 +244,10 @@ div#torrent_filter_bar ul li.selected a {
background-position: right top;
}
+div#torrent_filter_bar ul li a.finished {
+ display: none;
+}
+
div#torrent_filter_bar input#torrent_search {
position: absolute;
height: 20px;