Merge pull request #4427 from xfalcox/patch-1

[WIP] Add text on last-visit line
This commit is contained in:
Jeff Atwood 2016-08-30 15:40:42 -07:00 committed by GitHub
commit 329faae3e0

View file

@ -34,6 +34,15 @@ html.anon .topic-list a.title:visited:not(.badge-notification) {color: dark-ligh
&.last-visit { &.last-visit {
border-bottom: 1px solid scale-color($danger, $lightness: 60%); border-bottom: 1px solid scale-color($danger, $lightness: 60%);
+ tr::after {
content: attr(data-last-visit-text);
color: scale-color($danger, $lightness: 50%);
position: absolute;
left: 50%;
margin-top: -10px;
padding: 0 10px;
background: $secondary;
}
} }
} }