Commit 8ffb6126 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

slim comment form

parent a76adfa4
...@@ -169,30 +169,38 @@ td .line_note_link { ...@@ -169,30 +169,38 @@ td .line_note_link {
margin: 0; margin: 0;
} }
.file_upload {
position: absolute;
right:14px;
top:7px;
}
.note_advanced_opts { .note_advanced_opts {
h6 { h6 {
line-height: 32px; line-height: 32px;
margin-right: 12px; padding-right: 15px;
} }
} }
div.attachments { .attachments {
position:relative; position:relative;
width: 350px; width: 350px;
height: 50px; height: 50px;
overflow:hidden; overflow:hidden;
margin:0 0 5px !important; margin:0 0 5px !important;
}
.file_name { .input_file {
line-height:30px; .file_upload {
width:240px; position: absolute;
height:28px; right:14px;
overflow:hidden; top:7px;
}
.file_name {
line-height:30px;
width:240px;
height:28px;
overflow:hidden;
}
.input-file {
width: 260px;
height: 41px;
float: right;
}
}
} }
} }
...@@ -13,6 +13,8 @@ ...@@ -13,6 +13,8 @@
is enabled. is enabled.
.row.note_advanced_opts.hide .row.note_advanced_opts.hide
.span2
= f.submit 'Add Comment', :class => "btn primary submit_note", :id => "submit_note"
.span4.notify_opts .span4.notify_opts
%h6.left Notify via email: %h6.left Notify via email:
= label_tag :notify do = label_tag :notify do
...@@ -23,11 +25,12 @@ ...@@ -23,11 +25,12 @@
= label_tag :notify_author do = label_tag :notify_author do
= check_box_tag :notify_author, 1 , @note.noteable_type == "Commit" = check_box_tag :notify_author, 1 , @note.noteable_type == "Commit"
%span Commit author %span Commit author
.span8.attachments .span6.attachments
%h6.left Attachment: %h6.left Attachment:
%span.file_name File name... %span.file_name File name...
%button.file_upload.btn.small Upload File
.input= f.file_field :attachment, :class => "input-file" .input.input_file
%a.file_upload.btn.small Upload File
= f.file_field :attachment, :class => "input-file"
%span.hint Any file less than 10 MB %span.hint Any file less than 10 MB
= f.submit 'Add Comment', :class => "btn primary submit_note", :id => "submit_note"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment