QTfrontend/about.cpp
changeset 1897 e9dcb47013c7
parent 1796 4bcdf0bf58b8
child 1949 9f3ea865f00c
--- a/QTfrontend/about.cpp	Mon Mar 16 14:43:15 2009 +0000
+++ b/QTfrontend/about.cpp	Mon Mar 16 19:55:56 2009 +0000
@@ -35,6 +35,10 @@
 
 	lbl1->setOpenExternalLinks(true);
 	lbl1->setText(
+            "<style type=\"text/css\">"
+            "a { color: #ffcc00; }"
+//            "a:hover { color: yellow; }"
+            "</style>" 
 			"<div align=\"center\"><h1>Hedgewars</h1>"
 			"<h3>" + QLabel::tr("Version") + " " + *cVersionString + "</h3>"
 			"<p><a href=\"http://www.hedgewars.org/\">http://www.hedgewars.org/</a></p><br>" +
@@ -47,7 +51,12 @@
 	QTextBrowser *lbl2 = new QTextBrowser(this);
 
 	lbl2->setOpenExternalLinks(true);
-	lbl2->setText(  QString("<h2>") +
+	lbl2->setText(
+            "<style type=\"text/css\">"
+            "a { color: #ffcc00; }"
+//            "a:hover { color: yellow; }"
+            "</style>" +
+            QString("<h2>") +
 			QLabel::tr("Developers:") +
 			"</h2><p>"
 			"Engine, frontend, net server: Andrey Korotaev &lt;<a href=\"mailto:unC0Rr@gmail.com\">unC0Rr@gmail.com</a>&gt;<br>"