Merge branch 'brand_header_change' into 'master'

When a custom header logo is present, don't show GitLab type logo

See merge request gitlab-org/gitlab-ce!15410
This commit is contained in:
Annabel Dunstone Gray 2017-11-16 15:32:50 +00:00
commit 5b57f72de9
4 changed files with 14 additions and 2 deletions

View File

@ -30,4 +30,11 @@ module AppearancesHelper
render 'shared/logo.svg'
end
end
# Skip the 'GitLab' type logo when custom brand logo is set
def brand_header_logo_type
unless brand_item && brand_item.header_logo?
render 'shared/logo_type.svg'
end
end
end

View File

@ -43,7 +43,7 @@
= f.hidden_field :header_logo_cache
= f.file_field :header_logo, class: ""
.hint
Maximum file size is 1MB. Pages are optimized for a 72x72 px header logo
Maximum file size is 1MB. Pages are optimized for a 28px tall header logo
.form-actions
= f.submit 'Save', class: 'btn btn-save append-right-10'

View File

@ -7,7 +7,7 @@
= link_to root_path, title: 'Dashboard', id: 'logo' do
= brand_header_logo
%span.logo-text.hidden-xs
= render 'shared/logo_type.svg'
= brand_header_logo_type
- if current_user
= render "layouts/nav/dashboard"

View File

@ -0,0 +1,5 @@
---
title: When a custom header logo is present, don't show GitLab type logo
merge_request:
author:
type: changed