<div>
- <div class="list-inline justify-content-center d-flex align-items-center flex-wrap w-100 mb-3" id="login_auth_buttons">
+ <div class="justify-content-center d-flex align-items-center flex-wrap mb-3" id="login_auth_buttons">
<% prefered_auth_button_available = false %>
<% %w[google facebook microsoft github wikipedia].each do |provider| %>
<% end -%>
<% if prefered_auth_button_available %>
- <div class="list-inline justify-content-center d-flex align-items-center flex-wrap w-50">
+ <div class="justify-content-center d-flex align-items-center flex-wrap w-50">
<% %w[google facebook microsoft github wikipedia].each do |provider| %>
<% if Settings.key?("#{provider}_auth_id".to_sym) -%>
<% if @preferred_auth_provider == provider %>
<% end -%>
<% end -%>
</div>
- <div class="list-inline justify-content-center d-flex align-items-center flex-wrap gap-2 w-50 px-1">
+ <div class="justify-content-center d-flex align-items-center flex-wrap gap-2 w-50 px-1">
<% else %>
- <div class="list-inline justify-content-center d-flex align-items-center flex-wrap gap-2 w-100">
+ <div class="justify-content-center d-flex align-items-center flex-wrap gap-2">
<% end %>
<%= link_to image_tag("openid.svg",
"#",
:id => "openid_open_url",
:title => t("application.auth_providers.openid.title"),
- :class => "btn btn-light p-2 d-block" %>
+ :class => "btn btn-light p-2" %>
<% %w[google facebook microsoft github wikipedia].each do |provider| %>
<% unless @preferred_auth_provider == provider %>
<div id="login_openid_url" class="mb-3">
<label for="openid_url" class="form-label"><%= t ".openid_html", :logo => openid_logo %></label>
<%= hidden_field_tag("referer", params[:referer], :autocomplete => "off") %>
- <%= text_field_tag("openid_url", "", :tabindex => 20, :autocomplete => "on", :class => "openid_url form-control") %>
+ <%= text_field_tag("openid_url", "", :tabindex => 20, :autocomplete => "on", :class => "form-control") %>
<span class="form-text text-body-secondary">(<a href="<%= t "accounts.edit.openid.link" %>" target="_new"><%= t "accounts.edit.openid.link text" %></a>)</span>
</div>
def test_auth_button
button = auth_button("google", "google")
img_tag = "<img alt=\"Google logo\" class=\"rounded-1\" src=\"/images/google.svg\" width=\"36\" height=\"36\" />"
- assert_equal("<a class=\"auth_button btn btn-light p-2 d-block\" 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-light p-2\" title=\"Log in with Google\" rel=\"nofollow\" data-method=\"post\" href=\"/auth/google\">#{img_tag}</a>", button)
end
private