diff options
author | Jacob Schatz <jschatz1@gmail.com> | 2017-10-23 14:37:01 -0400 |
---|---|---|
committer | Jacob Schatz <jschatz1@gmail.com> | 2017-10-23 14:37:01 -0400 |
commit | 6d3fa89eb6b191c194cd355bd52b1d4564398189 (patch) | |
tree | f001b4e3b36c2f98699db03180e3fa642d937741 | |
parent | 4adab046ea011f2fc01d312fdc28ab1b8fce7321 (diff) | |
download | gitlab-ce-6d3fa89eb6b191c194cd355bd52b1d4564398189.tar.gz |
Update buttons
-rw-r--r-- | app/views/admin/deploy_keys/index.html.haml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin/deploy_keys/index.html.haml b/app/views/admin/deploy_keys/index.html.haml index 92370034baa..1f88decacaa 100644 --- a/app/views/admin/deploy_keys/index.html.haml +++ b/app/views/admin/deploy_keys/index.html.haml @@ -3,7 +3,7 @@ %h3.page-title.deploy-keys-title Public deploy keys (#{@deploy_keys.count}) .pull-right - = link_to 'New deploy key', new_admin_deploy_key_path, class: 'btn btn-new btn-sm btn-inverted' + = link_to 'New deploy key', new_admin_deploy_key_path, class: 'btn btn-success' - if @deploy_keys.any? .table-holder.deploy-keys-list @@ -32,5 +32,5 @@ added #{time_ago_with_tooltip(deploy_key.created_at)} %td .pull-right - = link_to 'Edit', edit_admin_deploy_key_path(deploy_key), class: 'btn btn-sm' - = link_to 'Remove', admin_deploy_key_path(deploy_key), data: { confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-sm btn-remove delete-key' + = link_to 'Edit', edit_admin_deploy_key_path(deploy_key), class: 'btn btn-default' + = link_to 'Remove', admin_deploy_key_path(deploy_key), data: { confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-danger delete-key' |