improve update error page: remove box, make link visible, insert missing space, remove line break

This commit is contained in:
Jan-Christoph Borchardt 2014-12-10 13:29:40 +01:00
parent 269ae49c1c
commit 5c36b0bf5d
2 changed files with 7 additions and 3 deletions

View file

@ -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;
}

View file

@ -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);