add an icon to the connection manager window
This commit is contained in:
parent
22e3b34221
commit
1566091dd9
|
@ -92,6 +92,11 @@ html, body {
|
||||||
background: url('/icons/16/add.png') no-repeat 2px;
|
background: url('/icons/16/add.png') no-repeat 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Connect Window */
|
||||||
|
.x-deluge-connect-window-icon {
|
||||||
|
background: url('/icons/16/connection_manager.png') no-repeat 2px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Statusbar */
|
/* Statusbar */
|
||||||
#deluge-statusbar .x-not-connected {
|
#deluge-statusbar .x-not-connected {
|
||||||
background: url('/icons/16/error.png') no-repeat 2px;
|
background: url('/icons/16/error.png') no-repeat 2px;
|
||||||
|
|
|
@ -139,6 +139,7 @@ Deluge.Connections.Window = new Ext.Window({
|
||||||
closable: true,
|
closable: true,
|
||||||
plain: true,
|
plain: true,
|
||||||
title: _('Connection Manager'),
|
title: _('Connection Manager'),
|
||||||
|
iconCls: 'x-deluge-connect-window-icon',
|
||||||
items: [Deluge.Connections.Grid],
|
items: [Deluge.Connections.Grid],
|
||||||
buttons: [{
|
buttons: [{
|
||||||
text: _('Close'),
|
text: _('Close'),
|
||||||
|
|
Loading…
Reference in New Issue