remove a bunch of the oxygen icons

add a titlebar icon to the login window
This commit is contained in:
Damien Churchill 2009-02-19 21:50:30 +00:00
commit 566c6adf3a
13 changed files with 10 additions and 1 deletions

View file

@ -70,6 +70,11 @@ html, body {
} }
/* Login */
.x-deluge-login-window-icon {
background: url('/icons/16/login.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;

View file

@ -19,9 +19,11 @@ Licensed under the Creative Common Attribution-ShareAlike 3.0 License.
- go-bottom.png - go-bottom.png
- go-top.png - go-top.png
- help.png - help.png
- login.png
- logout.png - logout.png
- pause.png - pause.png
- preferences.png - preferences.png
- remove.png - remove.png
- start.png - start.png
- up.png - up.png
- warning.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 761 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 820 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 636 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 874 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 722 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 525 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 539 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 775 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 931 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B

View file

@ -14,7 +14,8 @@ Deluge.Login = {
msg: _('You entered an incorrect password'), msg: _('You entered an incorrect password'),
buttons: Ext.MessageBox.OK, buttons: Ext.MessageBox.OK,
modal: false, modal: false,
icon: Ext.MessageBox.WARNING icon: Ext.MessageBox.WARNING,
iconCls: '.x-deluge-warning'
}); });
} }
} }
@ -65,6 +66,7 @@ Deluge.Login.Window = new Ext.Window({
modal: true, modal: true,
plain: true, plain: true,
title: _('Login'), title: _('Login'),
iconCls: 'x-deluge-login-window-icon',
items: Deluge.Login.Form, items: Deluge.Login.Form,
buttons: [{ buttons: [{
text: _('Login'), text: _('Login'),