mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-09 14:42:01 -03:30
div margin top adjustment
This commit is contained in:
parent
9099aa8828
commit
84cfedffbe
@ -1087,6 +1087,10 @@ select {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content-box {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.config-box-info-txt {
|
||||
white-space: pre-wrap;
|
||||
text-align: center;
|
||||
@ -1173,7 +1177,7 @@ select {
|
||||
.icon-info {
|
||||
background-image: url('../img/info.svg');
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
top: 1em;
|
||||
right: 1em;
|
||||
}
|
||||
|
||||
|
||||
@ -127,8 +127,7 @@ function print_config_forms( $l /* translations l10n object */ )
|
||||
if (array_key_exists('app',$_GET) && $_GET['app'] == $ncp_app)
|
||||
$hidden = '';
|
||||
$ret .= <<<HTML
|
||||
<div id="$cfg[id]-config-box" class="$hidden">
|
||||
<br/>
|
||||
<div id="$cfg[id]-config-box" class="content-box $hidden">
|
||||
<h2 class="text-title">$cfg[description]</h2>
|
||||
<div class="config-box-info-txt">$cfg[info]</div>
|
||||
<a href="https://github.com/nextcloud/nextcloudpi/wiki/Configuration-Reference#$ncp_app" target="_blank">
|
||||
|
||||
@ -204,14 +204,14 @@ HTML;
|
||||
<?php echo print_config_forms($l); ?>
|
||||
</div>
|
||||
|
||||
<div id="dashboard-wrapper" <?php if(array_key_exists('app',$_GET) && ($_GET['app'] != 'dashboard')) echo 'class="hidden"'; ?>>
|
||||
<div id="dashboard-wrapper" class="content-box <?php if(array_key_exists('app',$_GET) && ($_GET['app'] != 'dashboard')) echo 'hidden';?>">
|
||||
<h2 class="text-title"><?php echo $l->__("System Info"); ?></h2>
|
||||
<div id="dashboard-suggestions" class="table-wrapper"></div>
|
||||
<div id="dashboard-table" class="outputbox table-wrapper"></div>
|
||||
<div id="loading-info-gif"> <img src="img/loading-small.gif"> </div>
|
||||
</div>
|
||||
|
||||
<div id="nc-config-wrapper" <?php if($_GET['app'] != 'config') echo 'class="hidden"';?>>
|
||||
<div id="nc-config-wrapper" class="content-box <?php if($_GET['app'] != 'config') echo 'hidden';?>">
|
||||
<h2 class="text-title"><?php echo $l->__("Nextcloud configuration"); ?></h2>
|
||||
<div id="nc-config-box" class="table-wrapper">
|
||||
<?php
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user