Commit f248e4f57a5f7c22e629668aa74f5fba5a270805

Authored by Dmitriy Zaporozhets
2 parents eb7cf9ba 29d400ba

Merge pull request #6359 from jasonblanchard/comment-attachment-filename

Fixed attachment identifier displaying underneath note text
CHANGELOG
... ... @@ -36,6 +36,7 @@ v 6.6.0
36 36 - Restyle Issue#show page and MR#show page
37 37 - Ability to filter by multiple labels for Issues page
38 38 - Rails version to 4.0.3
  39 + - Fixed attachment identifier displaying underneath note text (Jason Blanchard)
39 40  
40 41 v 6.5.1
41 42 - Fix branch selectbox when create merge request from fork
... ...
app/assets/stylesheets/sections/notes.scss
... ... @@ -87,7 +87,6 @@ ul.notes {
87 87 }
88 88 .attachment {
89 89 font-size: 14px;
90   - margin-top: -20px;
91 90 }
92 91 .note-body {
93 92 @include md-typography;
... ... @@ -305,6 +304,7 @@ ul.notes {
305 304 @extend .col-md-4;
306 305 @extend .thumbnail;
307 306 margin-left: 45px;
  307 + float: none;
308 308 }
309 309  
310 310  
... ...