You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2009/09/23 09:02:56 UTC

svn commit: r817983 - /james/hupa/trunk/widgets/src/main/java/org/apache/hupa/widgets/ui/EnableHyperlink.java

Author: norman
Date: Wed Sep 23 07:02:56 2009
New Revision: 817983

URL: http://svn.apache.org/viewvc?rev=817983&view=rev
Log:
Use color code (HUPA-27)

Modified:
    james/hupa/trunk/widgets/src/main/java/org/apache/hupa/widgets/ui/EnableHyperlink.java

Modified: james/hupa/trunk/widgets/src/main/java/org/apache/hupa/widgets/ui/EnableHyperlink.java
URL: http://svn.apache.org/viewvc/james/hupa/trunk/widgets/src/main/java/org/apache/hupa/widgets/ui/EnableHyperlink.java?rev=817983&r1=817982&r2=817983&view=diff
==============================================================================
--- james/hupa/trunk/widgets/src/main/java/org/apache/hupa/widgets/ui/EnableHyperlink.java (original)
+++ james/hupa/trunk/widgets/src/main/java/org/apache/hupa/widgets/ui/EnableHyperlink.java Wed Sep 23 07:02:56 2009
@@ -54,7 +54,9 @@
 		
 		// mimic hyperlink 
 		html.getElement().getStyle().setProperty("textDecoration", "underline");
-		html.getElement().getStyle().setProperty("color", "grey");
+		
+		// use color code to workaround for https://issues.apache.org/jira/browse/HUPA-27
+		html.getElement().getStyle().setProperty("color", "#8d8d8d");
 		panel.setWidget(link);
 		initWidget(panel);
 	}



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org