Skip to content

Commit

Permalink
Merge pull request #5333 from AntonKhorev/auth-buttons-same-as-preferred
Browse files Browse the repository at this point in the history
Style small auth buttons similarly to preferred auth buttons
  • Loading branch information
gravitystorm authored Nov 15, 2024
2 parents 377391e + 24ccba6 commit 22942b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/helpers/user_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion app/views/application/_auth_providers.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -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 -%>
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/user_helper_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def test_user_image_sizes_gravatar
def test_auth_button
button = auth_button("google")
img_tag = "<img alt=\"Google logo\" class=\"rounded-1\" src=\"/images/auth_providers/google.svg\" width=\"36\" height=\"36\" />"
assert_equal("<a class=\"auth_button btn btn-light p-2\" title=\"Log in with Google\" rel=\"nofollow\" data-method=\"post\" href=\"/auth/google\">#{img_tag}</a>", button)
assert_equal("<a class=\"auth_button btn btn-outline-secondary border p-2\" title=\"Log in with Google\" rel=\"nofollow\" data-method=\"post\" href=\"/auth/google\">#{img_tag}</a>", button)
end

private
Expand Down

0 comments on commit 22942b1

Please sign in to comment.