Skip to content

Commit

Permalink
Updated color of visited links
Browse files Browse the repository at this point in the history
  • Loading branch information
sushant-hiray committed Dec 16, 2013
1 parent ab07ccb commit 14e099c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
<link href="./css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./css/sticky-footer.css"rel="stylesheet">

<style>
a.hnlink:visited{color:#AE3910;}
</style>
</head>

<body>
Expand Down
6 changes: 3 additions & 3 deletions js/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ $(document).ready(function(){
var template_row = Mustache.compile(" \
<tr> \
<td>{{ idx }}</td> \
<td><a href=\"{{ url }}\" target=\"_blank\">{{ title }} <small>({{ domain }})</small></a></td> \
<td><a href=\"http://news.ycombinator.com/user?id={{ user }}\" target=\"_blank\">{{ user }}</a></td> \
<td><p class=\"text-center\"><a href=\"http://news.ycombinator.com/item?id={{ thread_id }}\" target=\"_blank\">{{ num_comments }}</a></p></td> \
<td><a href=\"{{ url }}\" class=\" hnlink \" target=\"_blank\">{{ title }} <small>({{ domain }})</small></a></td> \
<td><a href=\"http://news.ycombinator.com/user?id={{ user }}\" class=\" hnlink \" target=\"_blank\">{{ user }}</a></td> \
<td><p class=\"text-center\"><a href=\"http://news.ycombinator.com/item?id={{ thread_id }}\" class=\" hnlink \" target=\"_blank\">{{ num_comments }}</a></p></td> \
<td><p class=\"text-center\">{{ points }}</p></td> \
<td><small>{{ posted_time_string }}</small></td> \
</tr>");
Expand Down

0 comments on commit 14e099c

Please sign in to comment.