summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-03-22 23:24:51 -0500
committerDan McGee <dan@archlinux.org>2010-03-22 23:24:54 -0500
commit6e331cc46224b27bdea89b02e05869f84cc27ea3 (patch)
treed7bc67b7768fc4016eb2856ebb0f8986988e057a
parent7619b773eef604231b9b19d0d0e998f6a4711ce6 (diff)
Make sure 'More' links don't wrap
They look kind of silly on the front page when they are wrapped even though the text is extremely short. Add a CSS property to hopefully prevent wrapping. Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--templates/public/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/public/index.html b/templates/public/index.html
index 25c76abd..7bc22c02 100644
--- a/templates/public/index.html
+++ b/templates/public/index.html
@@ -64,8 +64,8 @@
</tr>
{% endfor %}
<tr>
- <td style="font-size:x-small"><br /><a href="{% url feeds-list %}">More Feeds...</a></td>
- <td style="text-align:right;font-size:x-small"><br /><a href="/packages/?sort=-last_update">More Updates...</a></td>
+ <td style="font-size:x-small;white-space:nowrap;"><br /><a href="{% url feeds-list %}">More Feeds...</a></td>
+ <td style="text-align:right;font-size:x-small;white-space:nowrap;"><br /><a href="/packages/?sort=-last_update">More Updates...</a></td>
</tr>
</table>
</div>