summaryrefslogtreecommitdiff
path: root/app/views/profiles/keys
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-12-02 14:54:50 +0100
committerDouwe Maan <douwe@gitlab.com>2015-12-02 14:54:50 +0100
commit90df3701e753257a7b71d97c8eec590cc148f409 (patch)
treeaedd7dbb47b4df64a8edf02912d79e71082c9068 /app/views/profiles/keys
parent40760d3f7bc1b5fbed17bff2f185e92538590484 (diff)
downloadgitlab-ce-90df3701e753257a7b71d97c8eec590cc148f409.tar.gz
Add plus icon to all "Add X" buttons
Diffstat (limited to 'app/views/profiles/keys')
-rw-r--r--app/views/profiles/keys/index.html.haml4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/profiles/keys/index.html.haml b/app/views/profiles/keys/index.html.haml
index 14adba1c797..17a4195030e 100644
--- a/app/views/profiles/keys/index.html.haml
+++ b/app/views/profiles/keys/index.html.haml
@@ -3,7 +3,9 @@
.gray-content-block.top-block
.pull-right
- = link_to "Add SSH Key", new_profile_key_path, class: "btn btn-new"
+ = link_to new_profile_key_path, class: "btn btn-new" do
+ = icon('plus')
+ Add SSH Key
.oneline
Before you can add an SSH key you need to
= link_to "generate it.", help_page_path("ssh", "README")