improve update error page: remove box, make link visible, insert missing space, remove line break
This commit is contained in:
parent
269ae49c1c
commit
5c36b0bf5d
2 changed files with 7 additions and 3 deletions
|
@ -365,6 +365,11 @@ input[type="submit"].enabled {
|
|||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
#body-login .update a {
|
||||
color: #fff;
|
||||
border-bottom: 1px solid #aaa;
|
||||
}
|
||||
|
||||
#body-login .infogroup {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
|
|
@ -47,9 +47,8 @@
|
|||
updateEventSource.listen('failure', function(message) {
|
||||
$('<span>').addClass('error').append(message).append('<br />').appendTo($el);
|
||||
$('<span>')
|
||||
.addClass('error bold')
|
||||
.append('<br />')
|
||||
.append(t('core', 'The update was unsuccessful.' +
|
||||
.addClass('bold')
|
||||
.append(t('core', 'The update was unsuccessful. ' +
|
||||
'Please report this issue to the ' +
|
||||
'<a href="https://github.com/owncloud/core/issues" target="_blank">ownCloud community</a>.'))
|
||||
.appendTo($el);
|
||||
|
|
Loading…
Reference in a new issue