Skip to content

Commit

Permalink
Use bootstrap utility class instead of custom css
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitystorm committed Dec 16, 2020
1 parent aad1c1b commit c192bd0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions app/assets/stylesheets/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1338,10 +1338,6 @@ tr.turn:hover {
float: left;
padding: $lineheight/4 $lineheight/2;
}

li a img {
border-radius: 4px;
}
}

/* Rules for the account confirmation page */
Expand Down
2 changes: 1 addition & 1 deletion app/helpers/user_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def openid_logo

def auth_button(name, provider, options = {})
link_to(
image_tag("#{name}.svg", :alt => t("users.login.auth_providers.#{name}.alt")),
image_tag("#{name}.svg", :alt => t("users.login.auth_providers.#{name}.alt"), :class => "rounded-lg"),
auth_path(options.merge(:provider => provider)),
:class => "auth_button",
:title => t("users.login.auth_providers.#{name}.title")
Expand Down
4 changes: 2 additions & 2 deletions test/helpers/user_helper_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ def test_openid_logo

def test_auth_button
button = auth_button("google", "google")
assert_equal("<a class=\"auth_button\" title=\"Login with Google\" href=\"/auth/google\"><img alt=\"Login with a Google OpenID\" src=\"/images/google.svg\" /></a>", button)
assert_equal("<a class=\"auth_button\" title=\"Login with Google\" href=\"/auth/google\"><img alt=\"Login with a Google OpenID\" class=\"rounded-lg\" src=\"/images/google.svg\" /></a>", button)

button = auth_button("yahoo", "openid", :openid_url => "yahoo.com")
assert_equal("<a class=\"auth_button\" title=\"Login with Yahoo\" href=\"/auth/openid?openid_url=yahoo\.com\"><img alt=\"Login with a Yahoo OpenID\" src=\"/images/yahoo.svg\" /></a>", button)
assert_equal("<a class=\"auth_button\" title=\"Login with Yahoo\" href=\"/auth/openid?openid_url=yahoo\.com\"><img alt=\"Login with a Yahoo OpenID\" class=\"rounded-lg\" src=\"/images/yahoo.svg\" /></a>", button)
end

private
Expand Down

0 comments on commit c192bd0

Please sign in to comment.