remove a bunch of the oxygen icons
add a titlebar icon to the login window
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
Before Width: | Height: | Size: 761 B |
Before Width: | Height: | Size: 820 B |
BIN
deluge/ui/web/icons/16/login.png
Normal file
After Width: | Height: | Size: 636 B |
Before Width: | Height: | Size: 874 B |
Before Width: | Height: | Size: 722 B |
Before Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 539 B |
Before Width: | Height: | Size: 775 B |
Before Width: | Height: | Size: 931 B |
BIN
deluge/ui/web/icons/16/warning.png
Normal file
After Width: | Height: | Size: 629 B |
|
@ -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'),
|
||||||
|
|