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 */
|
||||
#deluge-statusbar .x-not-connected {
|
||||
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-top.png
|
||||
- help.png
|
||||
- login.png
|
||||
- logout.png
|
||||
- pause.png
|
||||
- preferences.png
|
||||
- remove.png
|
||||
- start.png
|
||||
- up.png
|
||||
- warning.png
|
||||
|
|
Before Width: | Height: | Size: 761 B |
Before Width: | Height: | Size: 820 B |
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 |
After Width: | Height: | Size: 629 B |
|
@ -14,7 +14,8 @@ Deluge.Login = {
|
|||
msg: _('You entered an incorrect password'),
|
||||
buttons: Ext.MessageBox.OK,
|
||||
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,
|
||||
plain: true,
|
||||
title: _('Login'),
|
||||
iconCls: 'x-deluge-login-window-icon',
|
||||
items: Deluge.Login.Form,
|
||||
buttons: [{
|
||||
text: _('Login'),
|
||||
|
|