Improve styling of summary titles

This commit is contained in:
Chris 2018-10-01 22:06:41 +01:00
parent 48794959c4
commit 293344e09d
4 changed files with 7 additions and 2 deletions

View File

@ -69,7 +69,8 @@ sub _generate_summaries {
$self -> {"template"} -> load_template("summary/content.tem", {"%(added)s" => $self -> _build_summary_list("added"), $self -> {"template"} -> load_template("summary/content.tem", {"%(added)s" => $self -> _build_summary_list("added"),
"%(viewed)s" => $self -> _build_summary_list("viewed"), "%(viewed)s" => $self -> _build_summary_list("viewed"),
"%(updated)s" => $self -> _build_summary_list("updated"), "%(updated)s" => $self -> _build_summary_list("updated"),
}) }),
$self -> {"template"} -> load_template("summary/extrahead.tem"),
); );
} }

View File

@ -0,0 +1,3 @@
td.title {
white-space: nowrap;
}

View File

@ -0,0 +1 @@
<link rel="stylesheet" href="{V_[csspath]}summary.css" />

View File

@ -1,4 +1,4 @@
<tr> <tr>
<td>%(type)s</td> <td class="title">%(type)s</td>
<td><a href="%(url)s">%(name)s</a></td> <td><a href="%(url)s">%(name)s</a></td>
</tr> </tr>