From 4eb9c0142d7016870431c565c8d9e207aebec0f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Thu, 23 Nov 2017 02:12:09 +0100 Subject: [PATCH] Fix contacts menu vertical position for comment authors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The contacts menu was being shown as "inline-block", which caused the top of the menu to be aligned to the top of the author row. Signed-off-by: Daniel Calviño Sánchez --- apps/comments/css/comments.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css index 1ed418df2fc..19c15786a51 100644 --- a/apps/comments/css/comments.css +++ b/apps/comments/css/comments.css @@ -112,7 +112,7 @@ background-repeat: no-repeat; } -#commentsTabView .authorRow>div { +#commentsTabView .authorRow>div:not(.contactsmenu-popover) { display: inline-block; vertical-align: middle; }