git » wikiri » commit 81d5200

Use nowrap in the log view so long summaries are displayed properly.

author Alberto Bertogli
2008-01-01 16:23:35 UTC
committer Alberto Bertogli
2008-01-01 16:23:35 UTC
parent 12ee224398399edb63f32dd20a37ba345406ff8a

Use nowrap in the log view so long summaries are displayed properly.

Now the columns containing the date and the links are never wrapped, and
only the summary is.

The attribute definition can be found at
http://www.w3.org/TR/css3-text/#white-space.

Signed-off-by: Alberto Bertogli <albertito@gmail.com>

wikiri.cgi +2 -0

diff --git a/wikiri.cgi b/wikiri.cgi
index b90abba..0c31a1b 100755
--- a/wikiri.cgi
+++ b/wikiri.cgi
@@ -370,6 +370,7 @@ table.log td {
 }
 
 table.log td.date {
+	white-space: nowrap;
 	text-style: italic;
 }
 
@@ -378,6 +379,7 @@ table.log td.summary {
 }
 
 table.log td.links {
+	white-space: nowrap;
 	font-size: small;
 }