I've looked and looked but I can't figure it out.

I am doing this:

<g:Hyperlink ui:field='linkName' width='500px'
styleName='{res.style.lgLink}'/>


In my css I am doing this:

.lgLink{
        font:bold 20px arial, sans-serif;
        color:#555555;
        cursor:pointer;
        cursor:hand;
}

In my ClientBundle I have this:

public interface Style extends CssResource {
                String lgLink();
}

But it doesn't work with I use UiBinder.  How do I get the link to
change color?  On visited?  hover? etc?

I tried this but it doesn't work either:

.lgLink:visited{
        font:bold 20px arial, sans-serif;
        color:#555555;
        cursor:pointer;
        cursor:hand;
}

I also tried:

gwt-Hyperlink.lgLink:visited{
        font:bold 20px arial, sans-serif;
        color:#555555;
        cursor:pointer;
        cursor:hand;
}

But the ClientBundle doesn't link that.  Any ideas?  Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to