diff --git a/core/css/guest.css b/core/css/guest.css
index 7fbab45b929fa690803b9fb7d7f5d982a4812a68..acdc232f52afc8a59c1ca7366becb4cb8ae8d684 100644
--- a/core/css/guest.css
+++ b/core/css/guest.css
@@ -649,6 +649,11 @@ form #selectDbType label span {
 	box-shadow: none !important;
 }
 
+#install-recommended-apps + label span {
+	display: inline-block;
+	opacity: .7;
+}
+
 /* Errors */
 /* Warnings and errors are the same */
 .body-login-container,
diff --git a/core/js/setup.js b/core/js/setup.js
index eb41795e427f1f56506e263a5c2e19b5cf1ae8c4..7cf4c38071e488bfcee437a6c7038d00d36c9bc2 100644
--- a/core/js/setup.js
+++ b/core/js/setup.js
@@ -123,18 +123,4 @@ $(document).ready(function() {
 		drawTitles: true,
 		nonce: btoa(OC.requestToken),
 	});
-
-	// centers the database chooser if it is too wide
-	if($('#databaseBackend').width() > 300) {
-		// this somehow needs to wait 250 milliseconds
-		// otherwise it gets overwritten
-		setTimeout(function(){
-			// calculate negative left margin
-			// half of the difference of width and default bix width of 300
-			// add 10 to clear left side padding of button group
-			var leftMargin = (($('#databaseBackend').width() - 300) / 2 + 10 ) * -1;
-
-			$('#databaseBackend').css('margin-left', Math.floor(leftMargin) + 'px');
-		}, 250);
-	}
 });
diff --git a/core/templates/installation.php b/core/templates/installation.php
index eb224364844ac39cbffd7784399f283388430119..4efcebec38c90493242ba610035728bcf42a24db 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -163,6 +163,7 @@ script('core', [
 			<input type="checkbox" id="install-recommended-apps" name="install-recommended-apps" class="checkbox checkbox--white" checked>
 			<label for="install-recommended-apps">
 				<?php p($l->t( 'Install recommended apps' )); ?>
+				<span><?php p($l->t( 'Calendar, Contacts, Talk & Mail' )); ?></span>
 			</label>
 		</p>
 	</fieldset>