From: Sarah Conway Date: Sat, 21 Apr 2018 02:34:38 +0000 (-0700) Subject: Change colors for visited links. X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=36b55798243f9aa4706b2e38fa248be994ac1893;p=pgweb.git Change colors for visited links. This changes the color for visited links to be a darker blue shade in order to make it easier to distinguish between visited/unvisited URLs. --- diff --git a/media/css/main.css b/media/css/main.css index 9149e5cd..4cfb64a4 100644 --- a/media/css/main.css +++ b/media/css/main.css @@ -111,8 +111,8 @@ a, .news a { transition: color .2s ease-in-out; } -a:hover, a:active { - color: #515151; +a:hover, a:active, #pgContentWrap a:visited, .feature a:visited { + color: #193145; text-decoration: none; }