diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2020-01-13 23:18:39 +0100 |
---|---|---|
committer | Backportbot <backportbot-noreply@rullzer.com> | 2020-01-15 06:25:50 +0000 |
commit | 0915c6223d4cef8dbe0a2c7b10de2bef203443c5 (patch) | |
tree | a263688c5aa9487c9fc133f3e038c737272204eb | |
parent | b75d4c08dc3b96d317d39c1199cf232e6af6a290 (diff) | |
download | nextcloud-server-0915c6223d4cef8dbe0a2c7b10de2bef203443c5.tar.gz nextcloud-server-0915c6223d4cef8dbe0a2c7b10de2bef203443c5.zip |
Add explanatory bit for recommended apps, fix #18631
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r-- | core/css/guest.css | 5 | ||||
-rw-r--r-- | core/templates/installation.php | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 26c8fbc9ccd..cfe6d385cbc 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -645,6 +645,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/templates/installation.php b/core/templates/installation.php index eb224364844..4efcebec38c 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> |