Commit 799f004e authored by Jeremy Elder's avatar Jeremy Elder Committed by Kushal Pandya

Audit and update buttons on SessionsController#new

parent 558a94d5
...@@ -443,7 +443,7 @@ $gl-avatar-size: 40px; ...@@ -443,7 +443,7 @@ $gl-avatar-size: 40px;
$border-radius-default: 4px; $border-radius-default: 4px;
$border-radius-small: 2px; $border-radius-small: 2px;
$border-radius-large: 8px; $border-radius-large: 8px;
$default-icon-size: 18px; $default-icon-size: 16px;
$layout-link-gray: #7e7c7c; $layout-link-gray: #7e7c7c;
$btn-side-margin: 10px; $btn-side-margin: 10px;
$btn-sm-side-margin: 7px; $btn-sm-side-margin: 7px;
......
...@@ -32,11 +32,6 @@ ...@@ -32,11 +32,6 @@
@include media-breakpoint-down(md) { @include media-breakpoint-down(md) {
width: 100%; width: 100%;
} }
img {
width: $default-icon-size;
height: $default-icon-size;
}
} }
.decline-page { .decline-page {
......
...@@ -106,17 +106,6 @@ ...@@ -106,17 +106,6 @@
width: 100%; width: 100%;
} }
} }
.omniauth-btn {
width: 100%;
padding: $gl-padding-8;
img {
width: $default-icon-size;
height: $default-icon-size;
margin-right: $gl-padding;
}
}
} }
.new-session-tabs { .new-session-tabs {
......
...@@ -2142,11 +2142,6 @@ table.code { ...@@ -2142,11 +2142,6 @@ table.code {
width: 100%; width: 100%;
padding: 8px; padding: 8px;
} }
.login-page .omniauth-container .omniauth-btn img {
width: 1.125rem;
height: 1.125rem;
margin-right: 16px;
}
.login-page .new-session-tabs { .login-page .new-session-tabs {
display: flex; display: flex;
box-shadow: 0 0 0 1px #dbdbdb; box-shadow: 0 0 0 1px #dbdbdb;
......
...@@ -125,11 +125,11 @@ module AuthHelper ...@@ -125,11 +125,11 @@ module AuthHelper
label = label_for_provider(provider) label = label_for_provider(provider)
if provider_has_custom_icon?(provider) if provider_has_custom_icon?(provider)
image_tag(icon_for_provider(provider), alt: label, title: "Sign in with #{label}") image_tag(icon_for_provider(provider), alt: label, title: "Sign in with #{label}", class: "gl-button-icon")
elsif provider_has_builtin_icon?(provider) elsif provider_has_builtin_icon?(provider)
file_name = "#{provider.to_s.split('_').first}_#{size}.png" file_name = "#{provider.to_s.split('_').first}_#{size}.png"
image_tag("auth_buttons/#{file_name}", alt: label, title: "Sign in with #{label}") image_tag("auth_buttons/#{file_name}", alt: label, title: "Sign in with #{label}", class: "gl-button-icon")
else else
label label
end end
......
...@@ -20,4 +20,4 @@ ...@@ -20,4 +20,4 @@
= recaptcha_tags = recaptcha_tags
.submit-container.move-submit-down .submit-container.move-submit-down
= f.submit _('Sign in'), class: 'gl-button btn btn-success', data: { qa_selector: 'sign_in_button' } = f.submit _('Sign in'), class: 'gl-button btn btn-confirm', data: { qa_selector: 'sign_in_button' }
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
.d-flex.justify-content-between.flex-wrap .d-flex.justify-content-between.flex-wrap
- providers.each do |provider| - providers.each do |provider|
- has_icon = provider_has_icon?(provider) - has_icon = provider_has_icon?(provider)
= button_to omniauth_authorize_path(:user, provider), id: "oauth-login-#{provider}", class: "btn gl-button btn-default d-flex align-items-center omniauth-btn text-left oauth-login #{qa_class_for_provider(provider)}" do = button_to omniauth_authorize_path(:user, provider), id: "oauth-login-#{provider}", class: "btn gl-button btn-default omniauth-btn oauth-login #{qa_class_for_provider(provider)}" do
- if has_icon - if has_icon
= provider_image_tag(provider) = provider_image_tag(provider)
%span %span
......
---
title: Update the Sign In button to use the new confirm button variant, migrate OAuth
buttons to use the default variant of GlButton.
merge_request: 53254
author:
type: other
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment