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:
authorPhil Hughes <me@iamphill.com>2017-06-09 14:06:35 +0300
committerPhil Hughes <me@iamphill.com>2017-06-20 14:32:52 +0300
commitc1cc700584559034b5334ba8f965324401d5ccec (patch)
tree355c040643097720d97bfb237fb89477632b57b1 /app/views/projects/hooks
parent529eede8498127c969cc823638d0c85567e354e4 (diff)
Added limited width container to project settings
Diffstat (limited to 'app/views/projects/hooks')
-rw-r--r--app/views/projects/hooks/_index.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/hooks/_index.html.haml b/app/views/projects/hooks/_index.html.haml
index 676b7c345bc..776681ea09a 100644
--- a/app/views/projects/hooks/_index.html.haml
+++ b/app/views/projects/hooks/_index.html.haml
@@ -1,12 +1,12 @@
.row.prepend-top-default
- .col-lg-3
+ .col-lg-4
%h4.prepend-top-0
= page_title
%p
#{link_to 'Webhooks', help_page_path('user/project/integrations/webhooks')} can be
used for binding events when something is happening within the project.
- .col-lg-9.append-bottom-default
+ .col-lg-8.append-bottom-default
= form_for @hook, as: :hook, url: polymorphic_path([@project.namespace.becomes(Namespace), @project, :hooks]) do |f|
= render partial: 'shared/web_hooks/form', locals: { form: f, hook: @hook }
= f.submit 'Add webhook', class: 'btn btn-create'