Properly display the version list

This commit is contained in:
Sven Slootweg 2012-05-27 14:11:30 +02:00
parent 5e642df6d3
commit a1fe5e86d4
2 changed files with 32 additions and 1 deletions

View file

@ -11,7 +11,11 @@
<h2>%(subject)s</h2>
<h3>%(version)s</h3>
%(versions)s
<div>
<div class="version">Available versions:</div>
%(versions)s
<div class="clear"></div>
</div>
<table class="message">
<tbody>

View file

@ -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;
}