日历tip文字加大

This commit is contained in:
Tim 2016-10-25 13:36:18 +08:00
parent e3ddfd1841
commit d72993b76c
1 changed files with 6 additions and 6 deletions

View File

@ -49,12 +49,12 @@ module IssuesHelper
@cached_label_project ||= l(:field_project)
link_to_issue(issue) + "<br /><br />".html_safe +
"<strong>#{@cached_label_project}</strong>: #{link_to_project(issue.project)}<br />".html_safe +
"<strong>#{@cached_label_status}</strong>: #{h(issue.status.name)}<br />".html_safe +
"<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />".html_safe +
"<strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}<br />".html_safe +
"<strong>#{@cached_label_assigned_to}</strong>: #{h(issue.assigned_to)}<br />".html_safe +
"<strong>#{@cached_label_priority}</strong>: #{h(issue.priority.name)}".html_safe
"<div class='f12'><strong>#{@cached_label_project}</strong>: #{link_to_project(issue.project)}</div>".html_safe +
"<div class='f12'><strong>#{@cached_label_status}</strong>: #{h(issue.status.name)}</div>".html_safe +
"<div class='f12'><strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}</div>".html_safe +
"<div class='f12'><strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}</div>".html_safe +
"<div class='f12'><strong>#{@cached_label_assigned_to}</strong>: #{h(issue.assigned_to)}</div>".html_safe +
"<div class='f12'><strong>#{@cached_label_priority}</strong>: #{h(issue.priority.name)}</div>".html_safe
end
def states_done_ratio(issue)