diff --git a/deluge/ui/web/css/deluge.css b/deluge/ui/web/css/deluge.css index 10aaca0b0..a5539f59d 100644 --- a/deluge/ui/web/css/deluge.css +++ b/deluge/ui/web/css/deluge.css @@ -65,8 +65,9 @@ button::-moz-focus-inner { .x-deluge-find-more, .x-btn .x-deluge-find-more {background-image: url('../icons/find_more.png'); } + /* Torrent Details */ -#torrentDetails dl, dl.singleline { +#torrentDetails dl, #torrentDetails dl.singleline { float: left; min-height: 120px; } @@ -83,6 +84,10 @@ button::-moz-focus-inner { height: 19px; } +dl.singleline { + float: left; +} + dl.singleline dt { width: 80px; } diff --git a/deluge/ui/web/js/deluge-all/preferences/PluginsPage.js b/deluge/ui/web/js/deluge-all/preferences/PluginsPage.js index b91ce4659..83f951953 100644 --- a/deluge/ui/web/js/deluge-all/preferences/PluginsPage.js +++ b/deluge/ui/web/js/deluge-all/preferences/PluginsPage.js @@ -18,7 +18,6 @@ Deluge.preferences.Plugins = Ext.extend(Ext.Panel, { layout: 'border', title: _('Plugins'), border: false, - height: 400, cls: 'x-deluge-plugins', pluginTemplate: new Ext.Template( @@ -27,7 +26,7 @@ Deluge.preferences.Plugins = Ext.extend(Ext.Panel, { '
' + _('Version:') + '
{version}
' + '
' + _('Author Email:') + '
{email}
' + '
' + _('Homepage:') + '
{homepage}
' + - '
' + _('Details:') + '
{details}
' + + '
' + _('Details:') + '
{details}
' + '' ), @@ -82,7 +81,6 @@ Deluge.preferences.Plugins = Ext.extend(Ext.Panel, { this.panel = this.add({ region: 'center', autoScroll: true, - margins: '5 5 5 5', items: [this.list], bbar: new Ext.Toolbar({ items: [{ @@ -102,25 +100,14 @@ Deluge.preferences.Plugins = Ext.extend(Ext.Panel, { }); var pp = this.pluginInfo = this.add({ - xtype: 'panel', - border: true, - height: 160, - region: 'south', - margins: '0 5 5 5' - }); - var fieldset = pp.add({ - xtype: 'fieldset', - title: _('Info'), - border: false, - autoHeight: true, - labelWidth: 1, - style: 'margin-top: 5px;' - }); - this.pluginInfo = fieldset.add({ xtype: 'panel', border: false, + height: 100, + region: 'south', + padding: '5', + autoScroll: true, bodyCfg: { - style: 'margin-left: 10px' + style: 'white-space: nowrap' } });