Skip to content

Commit

Permalink
more subtle look of closed issues links
Browse files Browse the repository at this point in the history
  • Loading branch information
mrliptontea committed Mar 3, 2015
1 parent 957040a commit 509d513
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
21 changes: 19 additions & 2 deletions src/sass/mixins/_issues.scss
Original file line number Diff line number Diff line change
Expand Up @@ -124,15 +124,32 @@
color: $color;
text-decoration: none;
}

&:focus,
&:active {
text-decoration: none;
}
}

a#{$parent} {
margin-right: 1px;
padding: $tracker-inline-padding;
font-weight: normal;

&.closed {
color: mix($color, $background, 50%);
text-decoration: $link-closed-decoration;
position: relative;
color: mix($color, $background, 75%);
text-decoration: none;

&:after {
display: block;
position: absolute;
top: 50%;
right: 5px;
left: 5px;
border-top: 1px solid rgba($color, .35);
content: "";
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion stylesheets/application.css

Large diffs are not rendered by default.

0 comments on commit 509d513

Please sign in to comment.