Closed (works as designed)
Project:
Gallery formatter
Version:
7.x-1.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
15 Nov 2012 at 22:37 UTC
Updated:
9 Feb 2013 at 14:25 UTC
after I installed gallery formatter 7x-1x2 on drupal 7.17 i tried to set up a test gallery.
now: when i point the mouse over the thumbs, i can see the various buttons flying around in the background. (the gallery basically works, but doesn't look good that way)
i tried to use other styles as well, but the problem remains (just the buttons change according to the style).
here is the link to the test gallery:
http://tinyurl.com/brrd7m2
i tried to uninstall and reinstall the gf module and the styles, but i can't get it running properly.
thanks for having look!
Comments
Comment #1
dan2k3k4 commentedI have the same issue with the thumbnails on highlight, trying to find out why it does that (must be a javascript issue with another module?).
Comment #2
dan2k3k4 commentedHmm seems to be a CSS issue with my theme.
In the style.css for my theme, I have:
a:hover {
-webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;
}
removing all that, makes it work fine, so I suppose I'll just have to "override" those values in the css for the gallery formatter style.
Comment #3
dan2k3k4 commented@freibadschwimmer - In your site example, you have this in your navigation.css (located in sites/all/themes/sky/css)
a {
text-decoration: none;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}
If you removed those transition effects then it works fine, so just overwrite those effects in your gallery formatter style.
Comment #4
freibadschwimmer commentedthanks a lot dan2k3k4,
indeed this solved my problem!
seems you are right that it is a css issue.
Comment #5
dan2k3k4 commentedI suppose this should be marked as "works as designed" - and anyone else who gets here just has to check the CSS for the theme they use