Commit 1c2c860c22ee960c1db4e82cb34519425394713b
1 parent
c93fda27
Exists in
master
and in
4 other branches
Fixed css issues with issues :)
Showing
2 changed files
with
15 additions
and
2 deletions
Show diff stats
app/assets/stylesheets/common.scss
... | ... | @@ -935,3 +935,16 @@ p.time { |
935 | 935 | padding: 4px; |
936 | 936 | margin: 2px; |
937 | 937 | } |
938 | + | |
939 | +/* Issues Changed */ | |
940 | +/* Could probably rewrite this, a bit sloppy */ | |
941 | +.well { | |
942 | + .issue_status.span2 { | |
943 | + width:116px; | |
944 | + | |
945 | + .alert-message { | |
946 | + width:34px; | |
947 | + margin: 0 0 0 auto; | |
948 | + } | |
949 | + } | |
950 | +} | ... | ... |
app/views/issues/show.html.haml
... | ... | @@ -28,7 +28,7 @@ |
28 | 28 | |
29 | 29 | %div.well |
30 | 30 | %div |
31 | - %div.issue_meta | |
31 | + %div.issue_meta.span13 | |
32 | 32 | %cite.cgray Created by |
33 | 33 | = image_tag gravatar_icon(@issue.author_email), :width => 16, :class => "lil_av" |
34 | 34 | %strong.author= link_to_issue_author(@issue) |
... | ... | @@ -37,7 +37,7 @@ |
37 | 37 | = image_tag gravatar_icon(@issue.assignee_email), :width => 16, :class => "lil_av" |
38 | 38 | %strong.author= link_to_issue_assignee(@issue) |
39 | 39 | |
40 | - %div.issue_status | |
40 | + %div.issue_status.span2 | |
41 | 41 | - if @issue.closed |
42 | 42 | .alert-message.error Closed |
43 | 43 | - else | ... | ... |