From 2013ee4e36101634ff063205109aeb1889e1c830 Mon Sep 17 00:00:00 2001 From: hallgren Date: Fri, 26 Oct 2012 14:05:27 +0000 Subject: [PATCH] GF home page: avoid line breaks in dates in the news section --- css/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/css/style.css b/css/style.css index d450af107..5137e8159 100644 --- a/css/style.css +++ b/css/style.css @@ -20,6 +20,11 @@ table.news td { padding: 0.25ex 0.5ex; } +table.news td:nth-child(1) { + /* Don't want the hyphens in dates (2012-06-29) to cause line breaks */ + white-space: nowrap; +} + th,td { border: 1px solid #333; } td { background: white; }