dd0552c36d
The logo is now rendered as pure SVG, rather than image referencing a svg. The SVG has an id and the shapes of the logo have a shared class. The shapes change their fill color on hover with a transition.
21 lines
241 B
Ruby
21 lines
241 B
Ruby
module AppearancesHelper
|
|
def brand_item
|
|
nil
|
|
end
|
|
|
|
def brand_title
|
|
'GitLab Community Edition'
|
|
end
|
|
|
|
def brand_image
|
|
nil
|
|
end
|
|
|
|
def brand_text
|
|
nil
|
|
end
|
|
|
|
def brand_header_logo
|
|
render 'shared/logo.svg'
|
|
end
|
|
end
|