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

This commit is contained in:
mconnor%myrealbox.com 2004-07-06 04:27:35 +00:00
Родитель 29c9192902
Коммит 7eaacea91e
1 изменённых файлов: 30 добавлений и 1 удалений

Просмотреть файл

@ -227,4 +227,33 @@
.caption-text
{
margin: 0px 2px 0px 1px !important;
}
}
/* 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;
}