diff options
author | Dan McGee <dan@archlinux.org> | 2010-03-22 23:24:51 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-03-22 23:24:54 -0500 |
commit | 6e331cc46224b27bdea89b02e05869f84cc27ea3 (patch) | |
tree | d7bc67b7768fc4016eb2856ebb0f8986988e057a /templates | |
parent | 7619b773eef604231b9b19d0d0e998f6a4711ce6 (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>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/public/index.html | 4 |
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> |