From 5c36b0bf5daaaa5e2283cec148e7901db2caa100 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 10 Dec 2014 13:29:40 +0100 Subject: [PATCH 1/2] improve update error page: remove box, make link visible, insert missing space, remove line break --- core/css/styles.css | 5 +++++ core/js/update.js | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 2859399b59..f29444e80d 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -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; } diff --git a/core/js/update.js b/core/js/update.js index e5ce322df9..4899335f0e 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -47,9 +47,8 @@ updateEventSource.listen('failure', function(message) { $('').addClass('error').append(message).append('
').appendTo($el); $('') - .addClass('error bold') - .append('
') - .append(t('core', 'The update was unsuccessful.' + + .addClass('bold') + .append(t('core', 'The update was unsuccessful. ' + 'Please report this issue to the ' + 'ownCloud community.')) .appendTo($el); From 880e653aefee9ddefbba6b1b58e5ba7dfff1f8ab Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 10 Dec 2014 13:39:30 +0100 Subject: [PATCH 2/2] improve update error page: adjust line height of h2 --- core/css/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/styles.css b/core/css/styles.css index f29444e80d..7badfca6c1 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -362,6 +362,7 @@ input[type="submit"].enabled { #body-login .update h2 { font-size: 20px; + line-height: 130%; margin-bottom: 30px; }