design the options tab of the add torrent window

This commit is contained in:
Damien Churchill 2008-11-13 22:38:38 +00:00
parent af85f56b98
commit fb3e51d3e9
2 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,42 @@
<form>
<fieldset>
<legend>$_('Allocation')</legend>
<label class="fluid">
<input type="radio" name="allocation" />
$_('Full')
</label><br />
<label class="fluid">
<input type="radio" name="allocation" />
$_('Compact')
</label>
</fieldset>
<fieldset>
<legend>$_('Bandwidth')</legend>
<label>$_('Max Down Speed'):</label>
<input type="text" class="moouiSpinner" /><br/>
<label>$_('Max Up Speed'):</label>
<input type="text" class="moouiSpinner" /><br/>
<label>$_('Max Connections'):</label>
<input type="text" class="moouiSpinner" /><br/>
<label>$_('Max Upload Slots'):</label>
<input type="text" class="moouiSpinner" />
</fieldset>
<fieldset>
<legend>$_('General')</legend>
<label class="fluid">
<input type="checkbox" />
$_('Add in Paused State')
</label><br/>
<label class="fluid">
<input type="checkbox" />
$_('Prioritize First/Last Pieces')
</label>
</fieldset>
<br style="clear: both;" />
<button>$_('Revert To Defaults')</button>
<button>$_('Apply To All')</button>
</form>

View File

@ -365,6 +365,24 @@ label.fluid {
float: right;
}
#addTorrent form {
margin-top: 20px;
}
#addTorrent form label {
width: 100px;
}
#addTorrent form label.fluid {
width: auto;
}
#addTorrent form button {
position: relative;
top: 40px;
float: right;
}
#urlInput {
margin-top: 5px;
margin-bottom: 10px;