Commit 29d400ba0d67b282144e04610ab23f45b21fcc41

Authored by Jason Blanchard
1 parent dad6b021

Fixed attachment identifier displaying underneath note text

CHANGELOG
... ... @@ -21,6 +21,7 @@ v 6.6.0
21 21 - Restyle Issue#show page and MR#show page
22 22 - Ability to filter by multiple labels for Issues page
23 23 - Rails version to 4.0.3
  24 + - Fixed attachment identifier displaying underneath note text (Jason Blanchard)
24 25  
25 26 v 6.5.1
26 27 - 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;
... ... @@ -302,6 +301,7 @@ ul.notes {
302 301 @extend .col-md-4;
303 302 @extend .thumbnail;
304 303 margin-left: 45px;
  304 + float: none;
305 305 }
306 306  
307 307  
... ...