mirror of
https://github.com/transmission/transmission
synced 2024-12-23 00:04:06 +00:00
and the css and index.html change
This commit is contained in:
parent
d3f755957c
commit
ea3db15ccb
3 changed files with 14 additions and 2 deletions
|
@ -60,6 +60,7 @@
|
|||
<li><a href="#downloading" id="filter_downloading_link">Downloading</a></li>
|
||||
<li><a href="#seeding" id="filter_seeding_link">Seeding</a></li>
|
||||
<li><a href="#paused" id="filter_paused_link">Paused</a></li>
|
||||
<li><a href="#finished" id="filter_finished_link" class="finished">Finished</a></li>
|
||||
</ul>
|
||||
<input type="search" id="torrent_search" placeholder="Filter" results="0" />
|
||||
</div>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue