From a1fe5e86d4f94da37a57bab7bc587804b0c51c2a Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sun, 27 May 2012 14:11:30 +0200 Subject: [PATCH] Properly display the version list --- templates/message.html | 6 +++++- templates/style.css | 27 +++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/templates/message.html b/templates/message.html index 913289f..443c403 100644 --- a/templates/message.html +++ b/templates/message.html @@ -11,7 +11,11 @@

%(subject)s

%(version)s

- %(versions)s +
+
Available versions:
+ %(versions)s +
+
diff --git a/templates/style.css b/templates/style.css index 2295600..8e665ba 100644 --- a/templates/style.css +++ b/templates/style.css @@ -14,6 +14,11 @@ pre { word-wrap: break-word; } +.clear +{ + clear: both; +} + h1 { margin: 0px; @@ -71,3 +76,25 @@ table td.body border: 2px solid #313131; padding: 16px 13px; } + +.version +{ + display: block; + margin: 2px 6px 8px 0px; + padding: 4px 0px; + float: left; + font-weight: bold; +} + +a.version +{ + padding: 4px 6px; + background-color: #464646; + color: white; + text-decoration: none; +} + +a.version:hover +{ + background-color: #333333; +}