Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Mouseover animations from top-left #43

Closed
stefanobernardi opened this issue May 2, 2012 · 2 comments
Closed

Mouseover animations from top-left #43

stefanobernardi opened this issue May 2, 2012 · 2 comments

Comments

@stefanobernardi
Copy link

Hey, I'm using this awesome theme, but every mouseover action comes from the top left.
Please check it out here: http://bernardi.me

I can't find the code responsible for this. Do you have any ideas?
Thanks!

@sbaxter
Copy link
Contributor

sbaxter commented May 2, 2012

Stefano, it looks like this block of code from line 47 of style.css is causing the problem for you:

 47 /* for fun */
 48 * {
 49   -webkit-transition: all 0.2s ease;
 50   -moz-transition:    all 0.2s ease;
 51   -ms-transition:     all 0.2s ease;
 52   -o-transition:      all 0.2s ease;
 53 }

It is animating the change in absolute positioning for your addthis and disqus popovers.

The * selector is targeting ALL elements on the page. The all is applying the transition to everything that will take one.

@stefanobernardi
Copy link
Author

Thank you so much!
I was looking for "animate" and couldn't find it.

On Tue, May 1, 2012 at 7:48 PM, Seth Baxter <
reply@reply.github.com

wrote:

Stefano, it looks like this block of code from line 47 of style.css is
causing the problem for you:

 47 /* for fun */
 48 * {
 49   -webkit-transition: all 0.2s ease;
 50   -moz-transition:    all 0.2s ease;
 51   -ms-transition:     all 0.2s ease;
 52   -o-transition:      all 0.2s ease;
 53 }

It is animating the change in absolute positioning for your addthis and
disqus popovers.


Reply to this email directly or view it on GitHub:

#43 (comment)

@sbaxter sbaxter closed this as completed May 2, 2012
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants