Commit 5f7db3e9 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix file upload for edit note. Better style for discussion form

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent d4ec23b8
...@@ -257,7 +257,8 @@ ul.notes { ...@@ -257,7 +257,8 @@ ul.notes {
.file, .file,
.discussion { .discussion {
.new_note { .new_note {
margin: 8px 5px 8px 0; margin: 0;
border: none;
} }
} }
.new_note { .new_note {
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
= markdown(note.note) = markdown(note.note)
.note-edit-form .note-edit-form
= form_for note, url: project_note_path(@project, note), method: :put, remote: true do |f| = form_for note, url: project_note_path(@project, note), method: :put, remote: true, authenticity_token: true do |f|
= f.text_area :note, class: 'note_text js-note-text js-gfm-input turn-on' = f.text_area :note, class: 'note_text js-note-text js-gfm-input turn-on'
.form-actions .form-actions
......
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