Commit b59d4e86 authored by Annabel Dunstone's avatar Annabel Dunstone

Change reply button to text field

parent 8419f355
...@@ -5,6 +5,11 @@ ...@@ -5,6 +5,11 @@
@extend .btn-primary; @extend .btn-primary;
margin: 10px $gl-padding; margin: 10px $gl-padding;
} }
.comment-btn {
@extend .btn-create;
}
.diff-file .diff-content { .diff-file .diff-content {
tr.line_holder:hover > td .line_note_link { tr.line_holder:hover > td .line_note_link {
opacity: 1.0; opacity: 1.0;
...@@ -118,8 +123,8 @@ ...@@ -118,8 +123,8 @@
} }
.discussion-reply-holder { .discussion-reply-holder {
background: $background-color; background-color: $white-light;
border-top: 1px solid $border-color; padding: 10px 16px;
} }
} }
...@@ -183,3 +188,12 @@ ...@@ -183,3 +188,12 @@
float: left; float: left;
} }
} }
.note-reply-field {
background-color: $background-color;
&:focus {
box-shadow: none;
border-color: $border-color;
}
}
...@@ -69,10 +69,8 @@ module NotesHelper ...@@ -69,10 +69,8 @@ module NotesHelper
line_type: line_type line_type: line_type
} }
button_tag class: 'btn btn-nr reply-btn js-discussion-reply-button', text_field_tag 'reply-field', nil, placeholder: 'Reply...',
data: data, title: 'Add a reply' do class: 'form-control note-reply-field js-discussion-reply-button',
link_text = icon('comment') data: data
link_text << ' Reply'
end
end end
end end
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