update some of the icons in the webui

This commit is contained in:
Damien Churchill 2009-12-10 18:24:31 +00:00
parent b47f6badd7
commit f7b3e11729
6 changed files with 11 additions and 6 deletions

View File

@ -41,10 +41,14 @@ input {
.x-deluge-dht, .x-btn .x-deluge-dht { background-image: url('/icons/dht.png'); }
.x-deluge-preferences, .x-btn .x-deluge-preferences { background-image: url('/icons/preferences.png') }
.x-deluge-connections, .x-btn .x-deluge-connections { background-image: url('/icons/connections.png') }
.x-deluge-connection-manager, .x-btn .x-deluge-connection-manager { background-image: url('/icons/connection_manager.png') }
.x-deluge-traffic, .x-btn .x-deluge-traffic { background-image: url('/icons/traffic.png') }
.x-deluge-edit-trackers, .x-btn .x-deluge-edit-trackers {background-image: url('/icons/edit_trackers.png'); }
.x-deluge-freespace, .x-btn .x-deluge-freespace {background-image: url('/icons/drive.png'); }
.x-deluge-install-plugin, .x-btn .x-deluge-install-plugin {background-image: url('/icons/install_plugin.png'); }
.x-deluge-find-more, .x-btn .x-deluge-find-more {background-image: url('/icons/find_more.png'); }
/* Torrent Details */
#torrentDetails dl, dl.singleline {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 657 B

After

Width:  |  Height:  |  Size: 654 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 850 B

View File

@ -44,7 +44,7 @@ Ext.deluge.preferences.InstallPlugin = Ext.extend(Ext.Window, {
closeAction: 'hide',
iconCls: 'x-deluge-add-file',
iconCls: 'x-deluge-install-plugin',
layout: 'fit',
@ -61,7 +61,7 @@ Ext.deluge.preferences.InstallPlugin = Ext.extend(Ext.Window, {
this.form = this.add({
xtype: 'form',
baseCls: 'x-plain',
labelWidth: 55,
labelWidth: 70,
autoHeight: true,
fileUpload: true,
items: [{
@ -182,13 +182,14 @@ Ext.deluge.preferences.Plugins = Ext.extend(Ext.Panel, {
bbar: new Ext.Toolbar({
items: [{
cls: 'x-btn-text-icon',
iconCls: 'x-deluge-add',
iconCls: 'x-deluge-install-plugin',
text: _('Install'),
handler: this.onInstallPlugin,
scope: this
}, '->', {
cls: 'x-btn-text-icon',
text: _('Find More'),
iconCls: 'x-deluge-find-more',
handler: this.onFindMorePlugins,
scope: this
}]

View File

@ -90,14 +90,14 @@ Copyright:
id: 'preferences',
cls: 'x-btn-text-icon',
text: _('Preferences'),
icon: '/icons/preferences.png',
iconCls: 'x-deluge-preferences',
handler: this.onPreferencesClick,
scope: this
},{
id: 'connectionman',
cls: 'x-btn-text-icon',
text: _('Connection Manager'),
iconCls: 'x-deluge-connections',
iconCls: 'x-deluge-connection-manager',
handler: this.onConnectionManagerClick,
scope: this
},'->',{
@ -200,4 +200,4 @@ Copyright:
});
Deluge.Toolbar = new Ext.deluge.Toolbar();
})();
})();