From 045eb766f1f4a560ffbf0f03634aa7de98cfb5ef Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Fri, 18 Mar 2011 02:14:22 +0100 Subject: [PATCH] Improve the rendering of the prev / next links in the issue view and note the change in NEWS. --- NEWS.mdtext | 1 + src/IDF/templates/idf/issues/view.html | 2 +- www/media/idf/css/style.css | 5 +++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/NEWS.mdtext b/NEWS.mdtext index a088c19..54b0622 100644 --- a/NEWS.mdtext +++ b/NEWS.mdtext @@ -12,6 +12,7 @@ - Forge-wide and per-project watch lists of starred issues (issue 589) - Configure a default issue template for each project (issues 212 and 540) - Pick default issue labels from the configured project settings (issue 556) + - Navigate to a preceding / following issue in the issue detail view - Many new text syntaxes to auto-link revisions (see [[AutomaticLinks]], issue 569) * _Documentation wiki_: diff --git a/src/IDF/templates/idf/issues/view.html b/src/IDF/templates/idf/issues/view.html index 4ad9e4e..050460d 100644 --- a/src/IDF/templates/idf/issues/view.html +++ b/src/IDF/templates/idf/issues/view.html @@ -1,7 +1,7 @@ {extends "idf/issues/base.html"} {block titleicon}{if $form}
{/if}{/block} {block body} -
+
{if $previous_issue_id} Previous issue {/if} diff --git a/www/media/idf/css/style.css b/www/media/idf/css/style.css index 832fffe..c1e3356 100644 --- a/www/media/idf/css/style.css +++ b/www/media/idf/css/style.css @@ -273,6 +273,11 @@ div.issue-changes-timeline { color: #888a85; } +div.issue-prev-next { + float: right; + margin-top: -25px; +} + div.issue-submit-info { background-color: #d3d7cf; -moz-border-radius: 3px;