Skip to content

Commit e60ae8a

Browse files
authored
Merge pull request #30322 from nextcloud/enh/noid/fix-help-settings-overlapping
fix overlapping in the help settings section
2 parents b5ae67a + 526f2a1 commit e60ae8a

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

apps/settings/css/help.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
overflow: hidden !important;
33
}
44

5+
.help-list__text {
6+
margin-left: 24px;
7+
}
8+
59
.help-iframe {
610
width: 100%;
711
height: 100%;

apps/settings/templates/help.php

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
p('active');
99
} ?>"
1010
href="<?php print_unescaped($_['urlUserDocs']); ?>">
11-
<?php p($l->t('User documentation')); ?>
11+
<span class="help-list__text">
12+
<?php p($l->t('User documentation')); ?>
13+
</span>
1214
</a>
1315
</li>
1416
<?php if ($_['admin']) { ?>
@@ -17,19 +19,25 @@
1719
p('active');
1820
} ?>"
1921
href="<?php print_unescaped($_['urlAdminDocs']); ?>">
20-
<?php p($l->t('Administrator documentation')); ?>
22+
<span class="help-list__text">
23+
<?php p($l->t('Administrator documentation')); ?>
24+
</span>
2125
</a>
2226
</li>
2327
<?php } ?>
2428

2529
<li>
2630
<a href="https://docs.nextcloud.com" class="icon-category-office" target="_blank" rel="noreferrer noopener">
27-
<?php p($l->t('Documentation')); ?>
31+
<span class="help-list__text">
32+
<?php p($l->t('Documentation')); ?>
33+
</span>
2834
</a>
2935
</li>
3036
<li>
3137
<a href="https://help.nextcloud.com" class="icon-comment" target="_blank" rel="noreferrer noopener">
32-
<?php p($l->t('Forum')); ?>
38+
<span class="help-list__text">
39+
<?php p($l->t('Forum')); ?>
40+
</span>
3341
</a>
3442
</li>
3543
</div>

0 commit comments

Comments
 (0)