Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJob van der Voort <jobvandervoort@gmail.com>2015-10-09 08:45:37 +0300
committerJob van der Voort <jobvandervoort@gmail.com>2015-10-21 09:59:30 +0300
commitdd0552c36d0e043ae202c2fbb2927ffe99a6de79 (patch)
tree85716ca7b1f21f67d9f7c064ccec074ae9a5a7d1 /app/helpers/appearances_helper.rb
parent249a9476d44e89bf1ab12fbc40bf81478faafd12 (diff)
Animate the logo on hover
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.
Diffstat (limited to 'app/helpers/appearances_helper.rb')
-rw-r--r--app/helpers/appearances_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/appearances_helper.rb b/app/helpers/appearances_helper.rb
index 14df8d4cbd7..c5820bf4c50 100644
--- a/app/helpers/appearances_helper.rb
+++ b/app/helpers/appearances_helper.rb
@@ -16,6 +16,6 @@ module AppearancesHelper
end
def brand_header_logo
- image_tag 'logo.svg'
+ render 'shared/logo.svg'
end
end