Commit 0521a852 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'update-social-profile-icon-colors-from-yo' into 'master'

Update profile social icons to their brand colors

See merge request gitlab-org/gitlab!77673
parents b970ed80 7b39f61a
......@@ -610,6 +610,14 @@ $pagination-disabled-color: #cdcdcd;
*/
$status-icon-size: 22px;
/*
* Social Icons
*/
$twitter: #1d9bf0;
$skype: #0078d7;
$linkedin: #2867b2;
/*
* Award emoji
*/
......
......@@ -383,3 +383,15 @@ table.u2f-registrations {
width: 100%;
max-width: $add-to-slack-popup-max-width;
}
.skype-icon {
color: $skype;
}
.linkedin-icon {
color: $linkedin;
}
.twitter-icon {
color: $twitter;
}
......@@ -98,15 +98,15 @@
- unless @user.skype.blank?
= render 'middle_dot_divider' do
= link_to "skype:#{@user.skype}", class: 'gl-hover-text-decoration-none', title: "Skype" do
= sprite_icon('skype')
= sprite_icon('skype', css_class: 'skype-icon')
- unless @user.linkedin.blank?
= render 'middle_dot_divider' do
= link_to linkedin_url(@user), class: 'gl-hover-text-decoration-none', title: "LinkedIn", target: '_blank', rel: 'noopener noreferrer nofollow' do
= sprite_icon('linkedin')
= sprite_icon('linkedin', css_class: 'linkedin-icon')
- unless @user.twitter.blank?
= render 'middle_dot_divider', breakpoint: 'sm' do
= link_to twitter_url(@user), class: 'gl-hover-text-decoration-none', title: "Twitter", target: '_blank', rel: 'noopener noreferrer nofollow' do
= sprite_icon('twitter')
= sprite_icon('twitter', css_class: 'twitter-icon')
- unless @user.website_url.blank?
= render 'middle_dot_divider', stacking: true do
- if Feature.enabled?(:security_auto_fix) && @user.bot?
......
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