samchen2009 / ekanban

a kanban plugin for redmine
102 stars 42 forks source link

[PATCH] Text in tip is aligned incorrectly #60

Closed mickem closed 10 years ago

mickem commented 10 years ago

The text in the tip is missaligned (Status is not on a line of its own). I also feelt it made sense to have the title in bold.

--- a/app/views/kanbans/_kanban_pane.html.haml
+++ b/app/views/kanbans/_kanban_pane.html.haml
@@ -18,11 +18,11 @@
       = hidden_field_tag :created_on, i.created_on.utc.strftime("%Y/%m/%d %H:%M:%S UTC")
       = hidden_field_tag :tracker_id, i.tracker_id
       %span.tip{:style => "font-weight: normal; font-size:11px"}
-        = link_to "##{i.id}", issue_path(i)
-        = i.subject
+        %strong= link_to "##{i.id} #{i.subject}", issue_path(i)
         %br
         %strong Assignee:
         = assignee_name
+        %br
         %strong   Status:
         = i.status.name
         %br
samchen2009 commented 10 years ago

Yes, looks much better now! Really appreciate!