diff options
3 files changed, 10 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/header.scss b/app/assets/stylesheets/framework/header.scss index 91a9b956d9d..5789c3fa1b1 100644 --- a/app/assets/stylesheets/framework/header.scss +++ b/app/assets/stylesheets/framework/header.scss @@ -539,6 +539,10 @@ display: block; } } + + svg { + vertical-align: text-top; + } } } diff --git a/app/views/layouts/header/_current_user_dropdown.html.haml b/app/views/layouts/header/_current_user_dropdown.html.haml index cdfd45fceb1..a74ea246eaf 100644 --- a/app/views/layouts/header/_current_user_dropdown.html.haml +++ b/app/views/layouts/header/_current_user_dropdown.html.haml @@ -20,7 +20,7 @@ %li = link_to "https://about.gitlab.com/contributing", target: '_blank', class: 'text-nowrap' do = _("Contribute to GitLab") - = icon('external-link') + = sprite_icon('external-link', size: 16) %li.divider - if current_user_menu?(:sign_out) %li diff --git a/changelogs/unreleased/update-external-link-icon-in-header-user-dropdown.yml b/changelogs/unreleased/update-external-link-icon-in-header-user-dropdown.yml new file mode 100644 index 00000000000..ee769f06379 --- /dev/null +++ b/changelogs/unreleased/update-external-link-icon-in-header-user-dropdown.yml @@ -0,0 +1,5 @@ +--- +title: Update external link icon in header user dropdown +merge_request: 20150 +author: George Tsiolis +type: changed |