From b65c4b241f54bc052b1bf63576288bf8e7149f6f Mon Sep 17 00:00:00 2001 From: psychobunny Date: Thu, 2 Apr 2015 16:15:12 -0400 Subject: [PATCH] closes #38 --- less/topic.less | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/less/topic.less b/less/topic.less index 3a734d1..2d7dff0 100644 --- a/less/topic.less +++ b/less/topic.less @@ -292,32 +292,36 @@ } .thread_active_users { + text-transform: initial; + a[data-uid] { + position: relative; + margin-left: 14px; + img { border-radius: 50%; width: 20px; height: 20px; - margin-right: -12px; vertical-align: middle; } &::after { + position: absolute; z-index: 0; opacity: 0; font-family: "FontAwesome"; content: "\f11c"; padding: 4px 0.25em; - position: relative; top: 0px; - left: -7px; + left: 0px; .transition(~"opacity ease 250ms, top ease 250ms") } &.replying::after { opacity: 1; - top: -16px; + top: -24px; .animation(topic-reply-pulse 2s ease-in infinite); } }