X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2f66877696957886b9c75026c9133c1d5430d772..fff14c2fb0e0a512ec28b4cc44640cd88b6a67fc:/app/views/application/_auth_providers.html.erb?ds=sidebyside diff --git a/app/views/application/_auth_providers.html.erb b/app/views/application/_auth_providers.html.erb index 895a42eb0..3feda6139 100644 --- a/app/views/application/_auth_providers.html.erb +++ b/app/views/application/_auth_providers.html.erb @@ -2,7 +2,7 @@
<%= tag.div :id => "login_auth_buttons", - :class => ["row row-cols-1", { "row-cols-sm-2" => prefered_auth_button_available }, "g-2 mb-3"] do %> + :class => ["collapse show row row-cols-1", { "row-cols-sm-2" => prefered_auth_button_available }, "g-2 mb-3"] do %> <% if prefered_auth_button_available %>
@@ -13,13 +13,14 @@
<% Auth.providers.each_value do |provider| %> <% if provider == "openid" %> - <%= button_tag image_tag("openid.svg", + <%= button_tag image_tag("auth_providers/openid.svg", :alt => t(".openid.alt"), :size => "36"), :type => "button", - :id => "openid_open_url", + :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 -%> @@ -28,10 +29,10 @@ <% end %> <%# :tabindex starts high to allow rendering at the bottom of the template %> - <%= form_tag(auth_path(:provider => "openid"), :id => "openid_login_form") do %> + <%= form_tag auth_path(:provider => "openid"), :id => "openid_login_form", :class => "collapse" do %>
<%= hidden_field_tag("referer", params[:referer], :autocomplete => "off") %>