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
path: root/app/views
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2018-04-18 23:16:33 +0300
committerClement Ho <ClemMakesApps@gmail.com>2018-04-18 23:16:33 +0300
commitcdbab3b92e7e1c1da03d6719e24130193addb218 (patch)
tree4c9c27e4491cf8c8f84bec16a2c509fa06b76b3c /app/views
parentd7d3fe5c55f724dd3c2e678157900983f19c2094 (diff)
Fix edit milestone form
Diffstat (limited to 'app/views')
-rw-r--r--app/views/shared/milestones/_form_dates.html.haml9
1 files changed, 4 insertions, 5 deletions
diff --git a/app/views/shared/milestones/_form_dates.html.haml b/app/views/shared/milestones/_form_dates.html.haml
index b68da4a5b96..608dd35182d 100644
--- a/app/views/shared/milestones/_form_dates.html.haml
+++ b/app/views/shared/milestones/_form_dates.html.haml
@@ -1,12 +1,11 @@
.col-md-6
- .form-group
- = f.label :start_date, "Start Date", class: "col-form-label"
+ .form-group.row
+ = f.label :start_date, "Start Date", class: "col-form-label col-sm-2"
.col-sm-10
= f.text_field :start_date, class: "datepicker form-control", placeholder: "Select start date"
%a.inline.float-right.prepend-top-5.js-clear-start-date{ href: "#" } Clear start date
-.col-md-6
- .form-group
- = f.label :due_date, "Due Date", class: "col-form-label"
+ .form-group.row
+ = f.label :due_date, "Due Date", class: "col-form-label col-sm-2"
.col-sm-10
= f.text_field :due_date, class: "datepicker form-control", placeholder: "Select due date"
%a.inline.float-right.prepend-top-5.js-clear-due-date{ href: "#" } Clear due date