Started note attachment changes, and text changes

This commit is contained in:
Steven Verbeek 2012-03-24 13:08:42 -03:00
parent 6c40e89853
commit 46605c9175
3 changed files with 46 additions and 3 deletions

View file

@ -37,6 +37,10 @@ init:
$('.attach_holder').show();
});
$("#note_attachment").change(function(e){
alert($('input[type=file]').val());
});
},

View 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;
}
}

View file

@ -24,8 +24,10 @@
.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"