diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2016-09-26 12:13:45 +0100 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2016-09-26 12:13:45 +0100 |
commit | b24d053493ec2faf4053268beeb72862a024476c (patch) | |
tree | d76910b8c3d6c8e7e0daaaed1a16e8452d47939f | |
parent | ebc4299d8c025601a0e6ca8066252b3132349291 (diff) | |
download | gitlab-ce-b24d053493ec2faf4053268beeb72862a024476c.tar.gz |
Removes class 'btn-link' of Revoke button
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | app/views/doorkeeper/authorized_applications/_delete_form.html.haml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG index 463b07b635e..3357c04505a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -6,6 +6,7 @@ v 8.13.0 (unreleased) v 8.12.2 (unreleased) - Fix Import/Export not recognising correctly the imported services. + - Revoke button in Applications Settings underlines on hover. v 8.12.1 - Fix a memory leak in HTML::Pipeline::SanitizationFilter::WHITELIST diff --git a/app/views/doorkeeper/authorized_applications/_delete_form.html.haml b/app/views/doorkeeper/authorized_applications/_delete_form.html.haml index bfa95ce79a7..9f02a8d2ed9 100644 --- a/app/views/doorkeeper/authorized_applications/_delete_form.html.haml +++ b/app/views/doorkeeper/authorized_applications/_delete_form.html.haml @@ -6,4 +6,4 @@ = form_tag path do %input{:name => "_method", :type => "hidden", :value => "delete"}/ - = submit_tag 'Revoke', onclick: "return confirm('Are you sure?')", class: 'btn btn-link btn-remove btn-sm' + = submit_tag 'Revoke', onclick: "return confirm('Are you sure?')", class: 'btn btn-remove btn-sm' |