Feature #5284 » feature-5284.patch
app/helpers/queries_helper.rb | ||
---|---|---|
221 | 221 |
when :last_notes |
222 | 222 |
item.last_notes.present? ? content_tag('div', textilizable(item, :last_notes), :class => "wiki") : '' |
223 | 223 |
when :done_ratio |
224 |
progress_bar(value)
|
|
224 |
content_tag('div', progress_bar(value, :legend => "#{value}%"))
|
|
225 | 225 |
when :relations |
226 | 226 |
content_tag('span', |
227 | 227 |
value.to_s(item) {|other| link_to_issue(other, :subject => false, :tracker => false)}.html_safe, |
public/stylesheets/application.css | ||
---|---|---|
258 | 258 |
tr.issue { text-align: center; white-space: nowrap; } |
259 | 259 |
tr.issue td.subject, tr.issue td.category, td.assigned_to, td.last_updated_by, tr.issue td.string, tr.issue td.text, tr.issue td.list, tr.issue td.relations, tr.issue td.parent { white-space: normal; } |
260 | 260 |
tr.issue td.relations { text-align: left; } |
261 |
tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;} |
|
261 |
tr.issue td.done_ratio table.progress { margin-left:auto;} |
|
262 |
tr.issue td.done_ratio { padding-right: 40px; } |
|
262 | 263 |
tr.issue td.relations span {white-space: nowrap;} |
263 | 264 |
table.issues td.block_column {color:#777; font-size:90%; padding:4px 4px 4px 24px; text-align:left; white-space:normal;} |
264 | 265 |
table.issues td.block_column span {font-weight: bold; display: block; margin-bottom: 4px;} |