]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix overlapping in the help settings section 30322/head
authorszaimen <szaimen@e.mail.de>
Fri, 17 Dec 2021 20:35:46 +0000 (21:35 +0100)
committerszaimen <szaimen@e.mail.de>
Fri, 17 Dec 2021 20:35:46 +0000 (21:35 +0100)
Signed-off-by: szaimen <szaimen@e.mail.de>
apps/settings/css/help.css
apps/settings/templates/help.php

index 248647bef414420bd2fdb712279bbe0a4fce335b..a18538c20e662ca4dc517aa650d389bdd39d0aa3 100644 (file)
@@ -2,6 +2,10 @@
        overflow: hidden !important;
 }
 
+.help-list__text {
+       margin-left: 24px;
+}
+
 .help-iframe {
        width: 100%;
        height: 100%;
index 746338da3fcf8c0422a4c1d3b5b3badcf736b431..6450b3a36ecfa565c4f555e3ab06015e8c54d2c4 100644 (file)
@@ -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']) { ?>
        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>