[WebUI] Tidyup Add dialog margins

This commit is contained in:
Calum Lind 2016-05-16 13:27:00 +01:00
parent 2aa1ab2f2b
commit 590f077963
3 changed files with 11 additions and 11 deletions

View File

@ -96,7 +96,7 @@ Deluge.add.AddWindow = Ext.extend(Deluge.add.Window, {
this.add({
region: 'center',
items: [this.list],
margins: '5 5 5 5',
border: false,
bbar: new Ext.Toolbar({
items: [{
id: 'fileUploadForm',

View File

@ -15,7 +15,7 @@ Deluge.add.OptionsPanel = Ext.extend(Ext.TabPanel, {
// layout options
region: 'south',
margins: '5 5 5 5',
border: false,
activeTab: 0,
height: 265,

View File

@ -17,7 +17,6 @@ Deluge.add.OptionsTab = Ext.extend(Ext.form.FormPanel, {
title: _('Options'),
height: 170,
border: false,
bodyStyle: 'padding: 5px',
disabled: true,
@ -36,7 +35,7 @@ Deluge.add.OptionsTab = Ext.extend(Ext.form.FormPanel, {
defaultType: 'textfield',
labelWidth: 1,
fieldLabel: '',
style: 'padding-bottom: 5px; margin-bottom: 0px;'
style: 'padding: 5px 0; margin-bottom: 0;'
});
this.optionsManager.bind('download_location', fieldset.add({
fieldLabel: '',
@ -52,7 +51,7 @@ Deluge.add.OptionsTab = Ext.extend(Ext.form.FormPanel, {
defaultType: 'togglefield',
labelWidth: 1,
fieldLabel: '',
style: 'padding-bottom: 5px; margin-bottom: 0px;'
style: 'padding: 5px 0; margin-bottom: 0;'
});
var field = fieldset.add({
fieldLabel: '',
@ -72,10 +71,11 @@ Deluge.add.OptionsTab = Ext.extend(Ext.form.FormPanel, {
title: _('Bandwidth'),
border: false,
autoHeight: true,
bodyStyle: 'margin-left: 7px',
bodyStyle: 'padding: 2px 5px',
labelWidth: 105,
width: 200,
defaultType: 'spinnerfield'
defaultType: 'spinnerfield',
style: 'padding-right: 10px;'
});
this.optionsManager.bind('max_download_speed', fieldset.add({
fieldLabel: _('Max Down Speed'),