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>2016-04-27 14:17:17 +0300
committerPhil Hughes <me@iamphill.com>2016-05-16 12:21:51 +0300
commit99428f193b2fe51b16e43f7cd98029326b5c30f9 (patch)
tree0ba7639ef1f8d50840d9ee11479df8c93096a51c /app/views/projects/variables/_table.html.haml
parentbda2c44a0b2f032d8c3eb9b9b8d79933fb40e651 (diff)
Updated project variable tests
Diffstat (limited to 'app/views/projects/variables/_table.html.haml')
-rw-r--r--app/views/projects/variables/_table.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/variables/_table.html.haml b/app/views/projects/variables/_table.html.haml
index 1a733200098..f51a52d7cb3 100644
--- a/app/views/projects/variables/_table.html.haml
+++ b/app/views/projects/variables/_table.html.haml
@@ -1,4 +1,4 @@
-.table-responsive
+.table-responsive.variables-table
%table.table
%colgroup
%col
@@ -14,11 +14,11 @@
%td= variable.key
%td= variable.value
%td
- = link_to namespace_project_variable_path(@project.namespace, @project, variable), class: "btn btn-transparent" do
+ = link_to namespace_project_variable_path(@project.namespace, @project, variable), class: "btn btn-transparent btn-variable-edit" do
%span.sr-only
Update
= icon("pencil")
- = link_to namespace_project_variable_path(@project.namespace, @project, variable), class: "btn btn-transparent", method: :delete, data: { confirm: "Are you sure?" } do
+ = link_to namespace_project_variable_path(@project.namespace, @project, variable), class: "btn btn-transparent btn-variable-delete", method: :delete, data: { confirm: "Are you sure?" } do
%span.sr-only
Remove
= icon("trash")