Skip to content

Commit

Permalink
Fix inconsistent LESS behaviors
Browse files Browse the repository at this point in the history
  • Loading branch information
zquestz committed Sep 6, 2011
1 parent 0484b8d commit 24b8cbd
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions views/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,21 @@ body {
text-align: center;
}

a {
:link {
a:link {
text-decoration: none;
color: @link-color;
}

:visited {
color: @link-color;
}

:hover {
color: @highlight-color;
}

:active {
color: @highlight-color;
}
a:visited {
color: @link-color;
}

a:hover {
color: @highlight-color;
}

a:active {
color: @highlight-color;
}

#footer {
Expand Down

0 comments on commit 24b8cbd

Please sign in to comment.