diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-26 09:45:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-26 09:45:01 +0200 |
commit | bec9f18a0f88a60b687d97b279e371984663febc (patch) | |
tree | b52cbfc8a2bdc4842980c268c2cc16133c6ca6ca /apps/sharebymail | |
parent | 7386bea23fc7bb95ec4073a33abc9069b587581e (diff) | |
parent | 3bb41f414448ae116e8c36a72f8724b374119f53 (diff) | |
download | nextcloud-server-bec9f18a0f88a60b687d97b279e371984663febc.tar.gz nextcloud-server-bec9f18a0f88a60b687d97b279e371984663febc.zip |
Merge pull request #4478 from nextcloud/improve_settings_help
adding some documentation hints and some smaller cleanup
Diffstat (limited to 'apps/sharebymail')
-rw-r--r-- | apps/sharebymail/css/settings-admin.css | 2 | ||||
-rw-r--r-- | apps/sharebymail/templates/settings-admin.php | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/apps/sharebymail/css/settings-admin.css b/apps/sharebymail/css/settings-admin.css index c7bfb122f3e..fc6093ad525 100644 --- a/apps/sharebymail/css/settings-admin.css +++ b/apps/sharebymail/css/settings-admin.css @@ -1,3 +1,3 @@ #ncShareByMailSettings p { - padding-top: 10px; + padding-bottom: 10px; } diff --git a/apps/sharebymail/templates/settings-admin.php b/apps/sharebymail/templates/settings-admin.php index 3af98741e52..50fede86685 100644 --- a/apps/sharebymail/templates/settings-admin.php +++ b/apps/sharebymail/templates/settings-admin.php @@ -8,7 +8,7 @@ style('sharebymail', 'settings-admin'); ?> <div id="ncShareByMailSettings" class="section"> <h2><?php p($l->t('Share by mail')); ?></h2> - <em><?php p($l->t('Send a personalized link to a file or folder by mail.')); ?></em> + <p class="settings-hint"><?php p($l->t('Allows users to share a personalized link to a file or folder by putting in an email address.')); ?></p> <p> <input id="sendPasswordMail" type="checkbox" class="checkbox" <?php if($_['sendPasswordMail']) p('checked'); ?> /> @@ -18,4 +18,3 @@ style('sharebymail', 'settings-admin'); </p> </div> - |