diff --git a/app/assets/images/Thumbs.db b/app/assets/images/Thumbs.db
new file mode 100644
index 0000000000000000000000000000000000000000..a0bc9eae3bab637c7d37d00f6d4a34ae681158e2
Binary files /dev/null and b/app/assets/images/Thumbs.db differ
diff --git a/app/assets/images/icon-attachment.png b/app/assets/images/icon-attachment.png
new file mode 100644
index 0000000000000000000000000000000000000000..ded6d145858563d0c65232baf5932605a5c6c698
Binary files /dev/null and b/app/assets/images/icon-attachment.png differ
diff --git a/app/assets/javascripts/note.js b/app/assets/javascripts/note.js
index 12f904ae7dfb73a1b4867a825e00baaa7abd6460..c45cdd90b4f8e742da9d9244652d7a25e57405d4 100644
--- a/app/assets/javascripts/note.js
+++ b/app/assets/javascripts/note.js
@@ -40,7 +40,6 @@ init:
     $("#note_attachment").change(function(e){
         var val = $('.input-file').val();
         var filename = val.replace(/^.*[\\\/]/, '');
-        console.log(filename,val);
         $(".file_name").text(filename);
     });
 
diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss
index 009790e596684f26f3e13c73783b8e543ceaca67..77ff641fac13108eee522d7032b4a16a31a425c4 100644
--- a/app/assets/stylesheets/common.scss
+++ b/app/assets/stylesheets/common.scss
@@ -1117,6 +1117,20 @@ p.time {
   .file_name {
     line-height:30px;
     width:240px;
+    height:28px;
     overflow:hidden;
   }
+}
+
+// Fix issue with notes & lists creating a bunch of bottom borders.
+li.note {
+  .note-title {
+    li {
+      border-bottom:none !important;
+    }
+    .file {
+      padding-left:20px;
+      background:url("icon-attachment.png") no-repeat left center;
+    }
+  }
 }
\ No newline at end of file
diff --git a/app/views/notes/_show.html.haml b/app/views/notes/_show.html.haml
index 6da1d5904bf0a88dd45d470b15185acf51703381..916fda062712d52759c884181f4e346b82e195ce 100644
--- a/app/views/notes/_show.html.haml
+++ b/app/views/notes/_show.html.haml
@@ -12,6 +12,6 @@
     = markdown(note.note)
     - if note.attachment.url
       .right
-        %span.file
-        = link_to note.attachment_identifier, note.attachment.url, :target => "_blank"
+        %div.file
+          = link_to note.attachment_identifier, note.attachment.url, :target => "_blank"
   .clear