mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-10 10:28:39 +00:00
css
This commit is contained in:
parent
7a879b33c8
commit
622a0053d8
3 changed files with 10 additions and 6 deletions
|
@ -18,7 +18,7 @@ $def with (torrent)
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class="info_label">$('Save Path'):</td>
|
<td class="info_label"><a href="/torrent/move/$torrent.id" target="_top">$('Save Path'):</td>
|
||||||
<td class="info_value" title="$torrent.save_path">$crop_left(torrent.save_path, 200)</td>
|
<td class="info_value" title="$torrent.save_path">$crop_left(torrent.save_path, 200)</td>
|
||||||
</table>
|
</table>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -9,14 +9,12 @@ $altrow(True)
|
||||||
</tr>
|
</tr>
|
||||||
$for tracker in torrent.trackers:
|
$for tracker in torrent.trackers:
|
||||||
<tr class="$altrow()" >
|
<tr class="$altrow()" >
|
||||||
<td >
|
<td><input type="text" name="tier" value="$tracker['tier']" style="width:20px"/>
|
||||||
<input type="text" name="tier" value="$tracker['tier']" style="width:20px"/>
|
|
||||||
</td>
|
</td>
|
||||||
<td><input type="text" name="url" value="$tracker['url']" style="width:400px"//></td>
|
<td><input type="text" name="url" value="$tracker['url']" style="width:400px"//></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="tab_$altrow()" >
|
<tr class="$altrow()" >
|
||||||
<td >
|
<td><input type="text" name="tier" value="$(tracker['tier'] + 1)" style="width:20px"/>
|
||||||
<input type="text" name="tier" value="$(tracker['tier'] + 1)" style="width:20px"/>
|
|
||||||
</td>
|
</td>
|
||||||
<td><input type="text" name="url" value="" style="width:400px"//></td>
|
<td><input type="text" name="url" value="" style="width:400px"//></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -200,6 +200,7 @@ div.progress_bar{
|
||||||
}
|
}
|
||||||
|
|
||||||
/*info panel(inner):*/
|
/*info panel(inner):*/
|
||||||
|
|
||||||
#info_panel_div {
|
#info_panel_div {
|
||||||
width:100%;
|
width:100%;
|
||||||
margin-top:20px;
|
margin-top:20px;
|
||||||
|
@ -210,6 +211,9 @@ div.progress_bar{
|
||||||
-moz-border-radius:5px;
|
-moz-border-radius:5px;
|
||||||
/*float: right;*/
|
/*float: right;*/
|
||||||
}
|
}
|
||||||
|
#torrent_info_tabs {
|
||||||
|
background-color:#B5EDBC
|
||||||
|
}
|
||||||
|
|
||||||
#torrent_info tr.head{
|
#torrent_info tr.head{
|
||||||
background-color:#C3D9FF;
|
background-color:#C3D9FF;
|
||||||
|
@ -221,6 +225,8 @@ div.progress_bar{
|
||||||
background-color:#C3D9FF;
|
background-color:#C3D9FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
td.info_label {
|
td.info_label {
|
||||||
width:100px;
|
width:100px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue