summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/views/projects/changelog.rhtml4
-rw-r--r--public/images/22x22/package.pngbin0 -> 679 bytes
-rw-r--r--public/stylesheets/application.css3
3 files changed, 4 insertions, 3 deletions
diff --git a/app/views/projects/changelog.rhtml b/app/views/projects/changelog.rhtml
index 250957a8c..c75c256ca 100644
--- a/app/views/projects/changelog.rhtml
+++ b/app/views/projects/changelog.rhtml
@@ -4,7 +4,7 @@
<div class="rightbox" style="width:140px;">
<%= start_form_tag %>
-<strong><%=l(:label_tracker_plural)%></strong><br />
+<p><strong><%=l(:label_tracker_plural)%></strong></p>
<% @trackers.each do |tracker| %>
<%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
<%= tracker.name %><br />
@@ -17,7 +17,7 @@
@fixed_issues.each do |issue| %>
<% unless ver_id == issue.fixed_version_id %>
<% if ver_id %></ul><% end %>
- <h3><%= issue.fixed_version.name %></h3>
+ <h3 class="icon22 icon22-package"><%= issue.fixed_version.name %></h3>
<p><%= format_date(issue.fixed_version.effective_date) %><br />
<%=h issue.fixed_version.description %></p>
<ul>
diff --git a/public/images/22x22/package.png b/public/images/22x22/package.png
new file mode 100644
index 000000000..f1a98dcde
--- /dev/null
+++ b/public/images/22x22/package.png
Binary files differ
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 1e78b3321..bb18b5fbb 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -141,7 +141,7 @@ background-position: 4px 50%;
.icon22 {
background-position: 0% 40%;
background-repeat: no-repeat;
-padding-left: 24px;
+padding-left: 26px;
line-height: 22px;
vertical-align: middle;
}
@@ -175,6 +175,7 @@ vertical-align: middle;
.icon22-authent { background-image: url(../images/22x22/authent.png); }
.icon22-info { background-image: url(../images/22x22/info.png); }
.icon22-comment { background-image: url(../images/22x22/comment.png); }
+.icon22-package { background-image: url(../images/22x22/package.png); }
/**************** Content styles ****************/