Hi,
Not at the moment but it’s a nice idea – we’ll have a think about how to do something like this (i guess hover user feedback would be cool as well)
Jamie
Thanks for the quick reply, Jamie!
Yes, hover feedback would be cool as well. Perhaps making it possible to assign a css class to the row to make it consistent to whatever css is used on image links not placed in pootle.
I think hover fx are great for links to make the site more responsive to the users.
Here is the code I used for image links on a site, if there was an option for inline css for rows to use code like this I’d love it.
/* Imagelink FX hover */
a:link img {
position: relative;
opacity: 1.0;
filter: alpha(opacity=100); /* For IE8 and earlier */
}
a:hover img {
cursor: hand;
cursor: pointer;
opacity: 0.9;
filter: alpha(opacity=90); /* For IE8 and earlier */
}
img a.divLink {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
text-decoration: none;
/* Makes sure the link doesn’t get underlined */
z-index: 10;
/* raises anchor tag above everything else in div */
background-color: white;
/*workaround to make clickable in IE */
opacity: 0;
/*workaround to make clickable in IE */
filter: alpha(opacity=0);
/*workaround to make clickable in IE */
}
/* end Imagelink FX */