From 7eaacea91e67fe1acf5dea24d2779ece7d49f1d3 Mon Sep 17 00:00:00 2001 From: "mconnor%myrealbox.com" Date: Tue, 6 Jul 2004 04:27:35 +0000 Subject: [PATCH] Bug 207403 URLs in the js console are not formatted like a link (blue, underlined) anymore, patch by Steffen Wilberg (steffen.wilberg@web.de), r=me --- .../themes/winstripe/global/formatting.css | 31 ++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/toolkit/themes/winstripe/global/formatting.css b/toolkit/themes/winstripe/global/formatting.css index 3264a194f83..e8afac39fc9 100644 --- a/toolkit/themes/winstripe/global/formatting.css +++ b/toolkit/themes/winstripe/global/formatting.css @@ -227,4 +227,33 @@ .caption-text { margin: 0px 2px 0px 1px !important; - } \ No newline at end of file + } + + +/* class for text with a 'link' appearance */ + .text-link + { + color : blue; + text-decoration : underline; + } + + .text-link:focus + { + color : red; + -moz-outline: 1px dotted invert; + } + + .text-link:hover + { + cursor : pointer; + } + + .text-link:hover:active + { + color : red; + } + + .text-link[visited="true"] + { + color : purple; + }