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:
authorTom de Bruijn <tom@tomdebruijn.com>2014-03-26 11:25:02 +0400
committerTom de Bruijn <tom@tomdebruijn.com>2014-03-28 16:22:43 +0400
commitce857b7cc983172e35dca36f950864d693cfdf2b (patch)
tree819e77d7d589e8424b82ab3499c450208bc1ab5d /app/views/admin/hooks
parentb7225bead8ecf8664c898029648925556be8553d (diff)
Improve alignment of labels in .well-list items
Diffstat (limited to 'app/views/admin/hooks')
-rw-r--r--app/views/admin/hooks/index.html.haml6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/admin/hooks/index.html.haml b/app/views/admin/hooks/index.html.haml
index ff90d513ca1..60773c20097 100644
--- a/app/views/admin/hooks/index.html.haml
+++ b/app/views/admin/hooks/index.html.haml
@@ -28,8 +28,10 @@
%ul.well-list
- @hooks.each do |hook|
%li
+ .list-item-name
+ = link_to admin_hook_path(hook) do
+ %strong= hook.url
+
.pull-right
= link_to 'Test Hook', admin_hook_test_path(hook), class: "btn btn-small"
= link_to 'Remove', admin_hook_path(hook), data: { confirm: 'Are you sure?' }, method: :delete, class: "btn btn-remove btn-small"
- = link_to admin_hook_path(hook) do
- %strong= hook.url