summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-03-26 21:23:49 +0100
committerJoas Schilling <nickvergessen@owncloud.com>2015-03-27 09:38:13 +0100
commit908538d8638e901f391162a078cf476194f30eea (patch)
treef34f77e10c1b37c40e70d4796f3557de07cca2fb
parent495562f40cbafd459abd4862ad0b82157ad25459 (diff)
downloadnextcloud-server-908538d8638e901f391162a078cf476194f30eea.tar.gz
nextcloud-server-908538d8638e901f391162a078cf476194f30eea.zip
fix layout for Sharing settings
-rw-r--r--apps/files_sharing/templates/settings-admin.php28
-rw-r--r--core/css/apps.css3
2 files changed, 17 insertions, 14 deletions
diff --git a/apps/files_sharing/templates/settings-admin.php b/apps/files_sharing/templates/settings-admin.php
index 96d865ac5dd..bd803517597 100644
--- a/apps/files_sharing/templates/settings-admin.php
+++ b/apps/files_sharing/templates/settings-admin.php
@@ -2,20 +2,22 @@
/** @var OC_L10N $l */
/** @var array $_ */
?>
-<div id="fileSharingSettings" >
-
+<div id="fileSharingSettings">
<h3><?php p($l->t('Federated Cloud Sharing'));?></h3>
- <input type="checkbox" name="outgoing_server2server_share_enabled" id="outgoingServer2serverShareEnabled"
- value="1" <?php if ($_['outgoingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
- <label for="outgoingServer2serverShareEnabled">
- <?php p($l->t('Allow users on this server to send shares to other servers'));?>
- </label><br/>
-
- <input type="checkbox" name="incoming_server2server_share_enabled" id="incomingServer2serverShareEnabled"
- value="1" <?php if ($_['incomingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
- <label for="incomingServer2serverShareEnabled">
- <?php p($l->t('Allow users on this server to receive shares from other servers'));?>
- </label><br/>
+ <p>
+ <input type="checkbox" name="outgoing_server2server_share_enabled" id="outgoingServer2serverShareEnabled"
+ value="1" <?php if ($_['outgoingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
+ <label for="outgoingServer2serverShareEnabled">
+ <?php p($l->t('Allow users on this server to send shares to other servers'));?>
+ </label>
+ </p>
+ <p>
+ <input type="checkbox" name="incoming_server2server_share_enabled" id="incomingServer2serverShareEnabled"
+ value="1" <?php if ($_['incomingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
+ <label for="incomingServer2serverShareEnabled">
+ <?php p($l->t('Allow users on this server to receive shares from other servers'));?>
+ </label><br/>
+ </p>
</div>
diff --git a/core/css/apps.css b/core/css/apps.css
index 2bac961d36f..e8c60bd4773 100644
--- a/core/css/apps.css
+++ b/core/css/apps.css
@@ -500,8 +500,9 @@ button.loading {
font-weight: normal;
}
.section h3 {
- font-size: 16px;
+ font-size: 15px;
font-weight: normal;
+ margin: 12px 0;
}
/* slight position correction of checkboxes and radio buttons */
.section input[type="checkbox"],