SVG rocket graphic, cosmetic bug on the download site blender.org #72116

Closed
opened 2019-12-02 14:47:18 +01:00 by Kai Müri · 9 comments

System Information
Operating system: Darwin-17.7.0-x86_64-i386-64bit 64 Bits
Graphics card: AMD Radeon HD - FirePro D500 OpenGL Engine ATI Technologies Inc. 4.1 ATI-1.68.24

Blender Version
Broken: version: 2.81 (sub 16), branch: master, commit date: 2019-11-20 14:27, hash: blender/blender@26bd5ebd42
Worked: (optional)

Short description of error
It's just a cosmetic bug on the website, but it bothers me every time I click on the experimental build link.
More precisely, it's about the rocket SVG graphic on the bottom of the site: https://www.blender.org/download

On a mouseover the SVG changes it's opacity from 0.5 to 1 but how the SVG is drawn, it's overlapping itself.

.dl-bleeding-icon svg {
    display: block;
    fill: rgba(255,255,255,0.5);
    margin: auto;
    -webkit-transition: -webkit-transform 250ms ease-out;
    transition: -webkit-transform 250ms ease-out;
    -o-transition: transform 250ms ease-out;
    transition: transform 250ms ease-out;
    transition: transform 250ms ease-out, -webkit-transform 250ms ease-out;
}

{F8185038, size=full}

**System Information** Operating system: Darwin-17.7.0-x86_64-i386-64bit 64 Bits Graphics card: AMD Radeon HD - FirePro [D500](https://archive.blender.org/developer/D500) OpenGL Engine ATI Technologies Inc. 4.1 ATI-1.68.24 **Blender Version** Broken: version: 2.81 (sub 16), branch: master, commit date: 2019-11-20 14:27, hash: `blender/blender@26bd5ebd42` Worked: (optional) **Short description of error** It's just a cosmetic bug on the website, but it bothers me every time I click on the experimental build link. More precisely, it's about the rocket SVG graphic on the bottom of the site: https://www.blender.org/download On a mouseover the SVG changes it's opacity from 0.5 to 1 but how the SVG is drawn, it's overlapping itself. ``` .dl-bleeding-icon svg { display: block; fill: rgba(255,255,255,0.5); margin: auto; -webkit-transition: -webkit-transform 250ms ease-out; transition: -webkit-transform 250ms ease-out; -o-transition: transform 250ms ease-out; transition: transform 250ms ease-out; transition: transform 250ms ease-out, -webkit-transform 250ms ease-out; } ``` {[F8185038](https://archive.blender.org/developer/F8185038/svg_bug.jpg), size=full}
Author

Added subscriber: @kaimueri

Added subscriber: @kaimueri
Author

I edited the SVG file that it's not overlapping any more.

rocket_fixed.svg

I edited the SVG file that it's not overlapping any more. ![rocket_fixed.svg](https://archive.blender.org/developer/F8185049/rocket_fixed.svg)

Added subscribers: @pablovazquez, @lichtwerk

Added subscribers: @pablovazquez, @lichtwerk

Thx for this!

CC @pablovazquez

Thx for this! CC @pablovazquez

Added subscriber: @jenkm

Added subscriber: @jenkm

Just use opacity instead of changing fill.

lang=css
svg {
  fill: white;
  opacity: 0.5;
}
svg:hover {
  opacity: 1;
}
Just use `opacity` instead of changing `fill`. ``` lang=css svg { fill: white; opacity: 0.5; } svg:hover { opacity: 1; } ```

This issue was referenced by 29443ac123

This issue was referenced by 29443ac123636f71f9f480b10c2cd1aef79719c0

Changed status from 'Confirmed' to: 'Resolved'

Changed status from 'Confirmed' to: 'Resolved'
Pablo Vazquez self-assigned this 2022-03-22 11:39:18 +01:00

Thanks for working on this!

It's fixed now in production at https://www.blender.org/download/
I went with the simpler solution by @jenkm (thanks!)

Thanks for working on this! It's fixed now in production at https://www.blender.org/download/ I went with the simpler solution by @jenkm (thanks!)
Sign in to join this conversation.
No description provided.