Commit 504777ec20f006fd92cc948c03d35df3e1df4d3b
1 parent
8907a958
Exists in
spb-stable
and in
3 other branches
Fix onion image control
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
app/views/projects/commits/_image.html.haml
| ... | ... | @@ -15,7 +15,7 @@ |
| 15 | 15 | %span.meta-filesize= "#{number_to_human_size old_file.size}" |
| 16 | 16 | | |
| 17 | 17 | %b W: |
| 18 | - %span.meta-width | |
| 18 | + %span.meta-width | |
| 19 | 19 | | |
| 20 | 20 | %b H: |
| 21 | 21 | %span.meta-height |
| ... | ... | @@ -27,7 +27,7 @@ |
| 27 | 27 | %span.meta-filesize= "#{number_to_human_size file.size}" |
| 28 | 28 | | |
| 29 | 29 | %b W: |
| 30 | - %span.meta-width | |
| 30 | + %span.meta-width | |
| 31 | 31 | | |
| 32 | 32 | %b H: |
| 33 | 33 | %span.meta-height |
| ... | ... | @@ -49,7 +49,7 @@ |
| 49 | 49 | %img{src: "data:#{old_file.mime_type};base64,#{Base64.encode64(old_file.data)}"} |
| 50 | 50 | .frame.added |
| 51 | 51 | %img{src: "data:#{file.mime_type};base64,#{Base64.encode64(file.data)}"} |
| 52 | - .col-sm-10 | |
| 52 | + .controls | |
| 53 | 53 | .transparent |
| 54 | 54 | .drag-track |
| 55 | 55 | .dragger{:style => "left: 0px;"} | ... | ... |