From 2f9725469d2984851cc441a7c3b8abb525d26390 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 3 Aug 2016 18:58:44 +0200 Subject: [PATCH 1/2] switch nested containers in update to semibold style --- core/css/update.css | 7 ++++++- core/templates/update.admin.php | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/core/css/update.css b/core/css/update.css index b1e086af3fd2d..0c42449b07fcb 100644 --- a/core/css/update.css +++ b/core/css/update.css @@ -4,6 +4,11 @@ background-size: 32px; } +#update-progress-message-error, +#update-progress-message-warnings { + font-weight: 600; +} + #update-progress-message { margin-bottom: 10px; } @@ -23,4 +28,4 @@ #body-login .warning.hidden { display: none; -} \ No newline at end of file +} diff --git a/core/templates/update.admin.php b/core/templates/update.admin.php index 87f93967d9105..967160af66cee 100644 --- a/core/templates/update.admin.php +++ b/core/templates/update.admin.php @@ -44,8 +44,8 @@
+ t('To avoid timeouts with larger installations, you can instead run the following command from your installation directory:')) ?>
./occ upgrade
+
@@ -48,6 +50,6 @@

t( 'Detailed logs' )); ?> - + diff --git a/lib/base.php b/lib/base.php index d22490ca5dc7e..4bb7052aa5dea 100644 --- a/lib/base.php +++ b/lib/base.php @@ -359,7 +359,7 @@ private static function printUpgradePage() { // render error page $template = new OC_Template('', 'update.use-cli', 'guest'); - $template->assign('productName', 'owncloud'); // for now + $template->assign('productName', 'nextcloud'); // for now $template->assign('version', OC_Util::getVersionString()); $template->assign('tooBig', $tooBig); @@ -390,7 +390,7 @@ private static function printUpgradePage() { $ocVersion = \OCP\Util::getVersion(); $tmpl->assign('appsToUpgrade', $appManager->getAppsNeedingUpgrade($ocVersion)); $tmpl->assign('incompatibleAppsList', $appManager->getIncompatibleApps($ocVersion)); - $tmpl->assign('productName', 'ownCloud'); // for now + $tmpl->assign('productName', 'Nextcloud'); // for now $tmpl->assign('oldTheme', $oldTheme); $tmpl->printPage(); }