diff --git a/app/helpers/user_helper.rb b/app/helpers/user_helper.rb
index 0831cde6e2..e00a2253f7 100644
--- a/app/helpers/user_helper.rb
+++ b/app/helpers/user_helper.rb
@@ -60,7 +60,7 @@ def auth_button(provider, options = {})
:size => "36"),
auth_path(options.merge(:provider => provider)),
:method => :post,
- :class => "auth_button btn btn-light p-2",
+ :class => "auth_button btn btn-outline-secondary border p-2",
:title => t("application.auth_providers.#{provider}.title")
)
end
diff --git a/app/views/application/_auth_providers.html.erb b/app/views/application/_auth_providers.html.erb
index f6665cefec..3feda6139a 100644
--- a/app/views/application/_auth_providers.html.erb
+++ b/app/views/application/_auth_providers.html.erb
@@ -20,7 +20,7 @@
:data => { "bs-toggle" => "collapse",
"bs-target" => "#login_auth_buttons, #openid_login_form" },
:title => t(".openid.title"),
- :class => "btn btn-light p-2" %>
+ :class => "btn btn-outline-secondary border p-2" %>
<% elsif provider != @preferred_auth_provider %>
<%= auth_button provider %>
<% end -%>
diff --git a/test/helpers/user_helper_test.rb b/test/helpers/user_helper_test.rb
index 56f5776ad5..16c854a519 100644
--- a/test/helpers/user_helper_test.rb
+++ b/test/helpers/user_helper_test.rb
@@ -112,7 +112,7 @@ def test_user_image_sizes_gravatar
def test_auth_button
button = auth_button("google")
img_tag = ""
- assert_equal("#{img_tag}", button)
+ assert_equal("#{img_tag}", button)
end
private