diff options
author | Thirumal S <thirumals@spritle.com> | 2015-10-30 19:26:56 +0530 |
---|---|---|
committer | Thirumal S <thirumals@spritle.com> | 2015-10-30 19:26:56 +0530 |
commit | 74416daa660a047d3a7cb00e11e1d775b4ea0937 (patch) | |
tree | c111d01c54f2b3827712a3c34c55f730809de789 | |
parent | 72ececfab18d4577fbd7e57d44b771576eb204bf (diff) | |
download | gitlab-ce-74416daa660a047d3a7cb00e11e1d775b4ea0937.tar.gz |
form group alignment issue fixed in webhook index page
-rw-r--r-- | app/assets/stylesheets/pages/projects.scss | 4 | ||||
-rw-r--r-- | app/views/projects/hooks/index.html.haml | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/app/assets/stylesheets/pages/projects.scss b/app/assets/stylesheets/pages/projects.scss index f7a22849003..b384e3fae6c 100644 --- a/app/assets/stylesheets/pages/projects.scss +++ b/app/assets/stylesheets/pages/projects.scss @@ -511,3 +511,7 @@ pre.light-well { margin-top: -1px; } } + +.form-control-padding-top { + padding-top: 10px; +} diff --git a/app/views/projects/hooks/index.html.haml b/app/views/projects/hooks/index.html.haml index 85dbfd67862..65e00b38ad4 100644 --- a/app/views/projects/hooks/index.html.haml +++ b/app/views/projects/hooks/index.html.haml @@ -19,7 +19,7 @@ = f.text_field :url, class: "form-control", placeholder: 'http://example.com/trigger-ci.json' .form-group = f.label :url, "Trigger", class: 'control-label' - .col-sm-10 + .col-sm-10.form-control-padding-top %div = f.check_box :push_events, class: 'pull-left' .prepend-left-20 |