summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-12-10 19:52:22 +0100
committerLukas Reschke <lukas@owncloud.com>2014-12-10 19:52:22 +0100
commit39b4888109fdc1e57e7395dc67c3b1da9134004b (patch)
tree22d323eda34e50425e703c181e893057754a967a
parente2c51308dfb8b72c4f0c2a39c09895915d59135f (diff)
parent880e653aefee9ddefbba6b1b58e5ba7dfff1f8ab (diff)
downloadnextcloud-server-39b4888109fdc1e57e7395dc67c3b1da9134004b.tar.gz
nextcloud-server-39b4888109fdc1e57e7395dc67c3b1da9134004b.zip
Merge pull request #12761 from owncloud/error-details2
improve update error page: remove box, make link visible, insert missing space, remove line break
-rw-r--r--core/css/styles.css6
-rw-r--r--core/js/update.js5
2 files changed, 8 insertions, 3 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index 2859399b59e..7badfca6c16 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -362,9 +362,15 @@ input[type="submit"].enabled {
#body-login .update h2 {
font-size: 20px;
+ line-height: 130%;
margin-bottom: 30px;
}
+#body-login .update a {
+ color: #fff;
+ border-bottom: 1px solid #aaa;
+}
+
#body-login .infogroup {
margin-bottom: 15px;
}
diff --git a/core/js/update.js b/core/js/update.js
index e5ce322df95..4899335f0ec 100644
--- a/core/js/update.js
+++ b/core/js/update.js
@@ -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);