From a6d6f6b42a938892cd4a798aa10296cb6cad96f1 Mon Sep 17 00:00:00 2001
From: lidlanca <lidlanca@yahoo.com>
Date: Thu, 2 Oct 2014 23:47:34 -0400
Subject: [PATCH] Fix: CSS to reveal hidden or partially visible avatars on 2nd
 line

clear:left was added to an existing selector that match other elements that may no need it.

in case of a negative affect it should be moved to its own selector
.topic-map .links {
}
---
 app/assets/stylesheets/desktop/topic-post.scss | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app/assets/stylesheets/desktop/topic-post.scss b/app/assets/stylesheets/desktop/topic-post.scss
index 42a526e3b..1f2c38ee5 100644
--- a/app/assets/stylesheets/desktop/topic-post.scss
+++ b/app/assets/stylesheets/desktop/topic-post.scss
@@ -384,7 +384,7 @@ a.star {
 
     /* limit to one line of avatars for now */
     height:30px;
-    overflow:hidden;
+    overflow:visible;
   }
 
   .avatar {
@@ -415,6 +415,7 @@ a.star {
   .avatars,
   .links,
   .information {
+    clear:left;
     padding: 7px 10px 15px 10px;
     color: $primary;
   }