Better white space and wrapping
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 12 Jun 2017 07:54:06 +0000 (07:54 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 12 Jun 2017 07:54:06 +0000 (07:54 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14675 7612ce4b-ef26-0410-bec9-ea0150e637f0

templates/default/read_toolbar.tpl

index d2d308b36a00de448701bf64c64e81e0f01943e4..395cd0fc3fdc23a6d1970e7064d8fde34be6b1bd 100644 (file)
@@ -34,14 +34,11 @@ extract($t);
         if (empty($link['Text']))
             continue;
             
-            ?>
- <a href="<?php echo $link['URL']; ?>"<?php echo (empty($link['Target'])?'':' target="' . $link['Target'] . '"')?>><?php echo $link['Text']; ?></a>
-            <?php
+            ?><a href="<?php echo $link['URL']; ?>"<?php echo (empty($link['Target'])?'':' target="' . $link['Target'] . '"')?> style="white-space: nowrap;"><?php echo $link['Text']; ?></a><?php
         
         # Spit out a divider between each element
         if ($count < count($links)-1) {
-            ?>
- &nbsp;|&nbsp;
+            ?>&nbsp;|
             <?php
         }
     }