Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-31 03:27:02 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-31 03:27:02 +0400
commit16eb3ac360df60469cc9b1a93870c0273c7fe78f (patch)
tree9aff8fff986e9868b1500001d00968f469f73067 /app/views/projects/blob/_remove.html.haml
parent2ecf83191d4ae7a158d70f8cfa11ec9f2744b0ce (diff)
Update form classes
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/projects/blob/_remove.html.haml')
-rw-r--r--app/views/projects/blob/_remove.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/projects/blob/_remove.html.haml b/app/views/projects/blob/_remove.html.haml
index 735863acd4f..582105a94a9 100644
--- a/app/views/projects/blob/_remove.html.haml
+++ b/app/views/projects/blob/_remove.html.haml
@@ -8,12 +8,12 @@
.modal-body
= form_tag project_blob_path(@project, @id), method: :delete do
- .control-group.commit_message-group
+ .form-group.commit_message-group
= label_tag 'commit_message', class: "control-label" do
Commit message
- .controls
+ .col-sm-10
= text_area_tag 'commit_message', params[:commit_message], placeholder: "Removed this file because...", required: true, rows: 3
- .control-group
- .controls
+ .form-group
+ .col-sm-10
= submit_tag 'Remove file', class: 'btn btn-remove'
= link_to "Cancel", '#', class: "btn btn-cancel", "data-dismiss" => "modal"