fix layout for Sharing settings
This commit is contained in:
parent
495562f40c
commit
908538d863
|
@ -2,20 +2,22 @@
|
||||||
/** @var OC_L10N $l */
|
/** @var OC_L10N $l */
|
||||||
/** @var array $_ */
|
/** @var array $_ */
|
||||||
?>
|
?>
|
||||||
<div id="fileSharingSettings" >
|
<div id="fileSharingSettings">
|
||||||
|
|
||||||
<h3><?php p($l->t('Federated Cloud Sharing'));?></h3>
|
<h3><?php p($l->t('Federated Cloud Sharing'));?></h3>
|
||||||
|
|
||||||
<input type="checkbox" name="outgoing_server2server_share_enabled" id="outgoingServer2serverShareEnabled"
|
<p>
|
||||||
value="1" <?php if ($_['outgoingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
|
<input type="checkbox" name="outgoing_server2server_share_enabled" id="outgoingServer2serverShareEnabled"
|
||||||
<label for="outgoingServer2serverShareEnabled">
|
value="1" <?php if ($_['outgoingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
|
||||||
<?php p($l->t('Allow users on this server to send shares to other servers'));?>
|
<label for="outgoingServer2serverShareEnabled">
|
||||||
</label><br/>
|
<?php p($l->t('Allow users on this server to send shares to other servers'));?>
|
||||||
|
</label>
|
||||||
<input type="checkbox" name="incoming_server2server_share_enabled" id="incomingServer2serverShareEnabled"
|
</p>
|
||||||
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="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>
|
</div>
|
||||||
|
|
|
@ -500,8 +500,9 @@ button.loading {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
.section h3 {
|
.section h3 {
|
||||||
font-size: 16px;
|
font-size: 15px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
margin: 12px 0;
|
||||||
}
|
}
|
||||||
/* slight position correction of checkboxes and radio buttons */
|
/* slight position correction of checkboxes and radio buttons */
|
||||||
.section input[type="checkbox"],
|
.section input[type="checkbox"],
|
||||||
|
|
Loading…
Reference in New Issue