You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2007/01/11 21:33:32 UTC

svn commit: r495387 - /incubator/xap/trunk/css/xapDefault.css

Author: mturyn
Date: Thu Jan 11 13:33:32 2007
New Revision: 495387

URL: http://svn.apache.org/viewvc?view=rev&rev=495387
Log:
http://issues.apache.org/jira/browse/XAP-259

Altered style names to map to the entire link, tinkered with styles for the 
normal, mouseover, and mousedown states.

Modified:
    incubator/xap/trunk/css/xapDefault.css

Modified: incubator/xap/trunk/css/xapDefault.css
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/css/xapDefault.css?view=diff&rev=495387&r1=495386&r2=495387
==============================================================================
--- incubator/xap/trunk/css/xapDefault.css (original)
+++ incubator/xap/trunk/css/xapDefault.css Thu Jan 11 13:33:32 2007
@@ -31,20 +31,26 @@
 
 /* LINK */
 .xapLinkContents{
-	padding: 0px;
-	margin: 0px;	
-	cursor: pointer;
-	color: blue;
+	cursor:pointer;
 	text-align: left;
+	text-decoration:underline;
 }
 
-.xapLinkContentsMouseOver{
+.xapLink{
+	cursor:pointer;
+	text-align: left;
+	text-decoration:underline;
+}
+
+.xapLinkMouseOver{
+	color: blue;
 }
 
-.xapLinkContentsDown{
+.xapLinkMouseDown{
+	color: black;
 }
 
-.xapLinkContentsDisabled{
+.xapLinkDisabled{
 	color : gray;
 	cursor: default;
 }