Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2021-12-17 23:35:46 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-12-20 12:33:11 +0300
commit8d7822587a17da549a9c34a06a6351c7d3fc83bb (patch)
tree768d9659a4d23e3955cd0df5e884a0c000e1aac9 /apps/settings
parent1a6fc7f7b56107c49d926692709c777695ce7f2e (diff)
fix overlapping in the help settings section
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'apps/settings')
-rw-r--r--apps/settings/css/help.css4
-rw-r--r--apps/settings/templates/help.php16
2 files changed, 16 insertions, 4 deletions
diff --git a/apps/settings/css/help.css b/apps/settings/css/help.css
index 248647bef41..a18538c20e6 100644
--- a/apps/settings/css/help.css
+++ b/apps/settings/css/help.css
@@ -2,6 +2,10 @@
overflow: hidden !important;
}
+.help-list__text {
+ margin-left: 24px;
+}
+
.help-iframe {
width: 100%;
height: 100%;
diff --git a/apps/settings/templates/help.php b/apps/settings/templates/help.php
index 746338da3fc..6450b3a36ec 100644
--- a/apps/settings/templates/help.php
+++ b/apps/settings/templates/help.php
@@ -8,7 +8,9 @@
p('active');
} ?>"
href="<?php print_unescaped($_['urlUserDocs']); ?>">
- <?php p($l->t('User documentation')); ?>
+ <span class="help-list__text">
+ <?php p($l->t('User documentation')); ?>
+ </span>
</a>
</li>
<?php if ($_['admin']) { ?>
@@ -17,19 +19,25 @@
p('active');
} ?>"
href="<?php print_unescaped($_['urlAdminDocs']); ?>">
- <?php p($l->t('Administrator documentation')); ?>
+ <span class="help-list__text">
+ <?php p($l->t('Administrator documentation')); ?>
+ </span>
</a>
</li>
<?php } ?>
<li>
<a href="https://docs.nextcloud.com" class="icon-category-office" target="_blank" rel="noreferrer noopener">
- <?php p($l->t('Documentation')); ?> ↗
+ <span class="help-list__text">
+ <?php p($l->t('Documentation')); ?> ↗
+ </span>
</a>
</li>
<li>
<a href="https://help.nextcloud.com" class="icon-comment" target="_blank" rel="noreferrer noopener">
- <?php p($l->t('Forum')); ?> ↗
+ <span class="help-list__text">
+ <?php p($l->t('Forum')); ?> ↗
+ </span>
</a>
</li>
</div>