Changes the colors of the links in the chat.

This commit is contained in:
fo 2014-11-06 16:30:07 +02:00
parent 1057c6dd0d
commit 5c9f4ba65b
1 changed files with 16 additions and 0 deletions

View File

@ -221,3 +221,19 @@
#usermsg::-webkit-scrollbar-track-piece { #usermsg::-webkit-scrollbar-track-piece {
background: #3a3a3a; background: #3a3a3a;
} }
a:link {
color: rgb(184, 184, 184);
}
a:visited {
color: white;
}
a:hover {
color: rgb(213, 213, 213);
}
a:active {
color: black;
}