OSDN Git Service

Started note attachment changes, and text changes
authorSteven Verbeek <dubcanada@gmail.com>
Sat, 24 Mar 2012 16:08:42 +0000 (13:08 -0300)
committerSteven Verbeek <dubcanada@gmail.com>
Sat, 24 Mar 2012 16:08:42 +0000 (13:08 -0300)
app/assets/javascripts/note.js
app/assets/stylesheets/common.scss
app/views/notes/_form.html.haml

index 4175967..b1be894 100644 (file)
@@ -37,6 +37,10 @@ init:
       $('.attach_holder').show();
     });
 
+    $("#note_attachment").change(function(e){
+        alert($('input[type=file]').val());
+    });
+
   },
 
 
index 5e14f3a..a041538 100644 (file)
@@ -1079,3 +1079,40 @@ p.time {
     border-bottom:2px solid $style_color;
   }
 }
+
+// Fixes alignment on notes.
+.new_note {
+  label {
+    text-align:left;
+  }
+}
+
+.issue_notes {
+  .input-file {
+    font: 500px monospace;
+    opacity:0;
+    filter: alpha(opacity=0);
+    position: absolute;
+    z-index: 1;
+    top:0;
+    right:0;
+    padding:0;
+    margin: 0;
+  }
+
+  .file_upload {
+    position: absolute;
+    width: 100%;
+    height: 100%;
+    background:url('http://viget.com/uploads/image/custom-file-input.png');
+    border:0;
+    text-indent:-9999px;
+  }
+
+  div.attachments {
+    position:relative;
+    width: 100px;
+    height: 30px;
+    overflow:hidden;
+  }
+}
\ No newline at end of file
index 0d20bb1..72fe9b3 100644 (file)
     .span4
       %h5 Attachment:
       .clearfix
-        = f.label :attachment, "Any file, < 10 MB"
-        .input= f.file_field :attachment, :class => "input-file"
+        = f.label :attachment, "Any file less then 10 MB"
+        .attachments
+          %button.file_upload
+          .input= f.file_field :attachment, :class => "input-file"
 
 
-  = f.submit 'Add note', :class => "btn primary", :id => "submit_note"
+  = f.submit 'Add Comment', :class => "btn primary", :id => "submit_note"