From f843764365e834be748245a8456c087cd284a340 Mon Sep 17 00:00:00 2001 From: Clark Winkelmann Date: Wed, 1 May 2019 22:54:13 +0200 Subject: [PATCH] Fix dropdown icon not showing in UserCard when on UserPage The rule hiding the icon in the UserHero was too broad and applied to UserCard in the list of posts as well The float rule was redundant --- framework/core/less/forum/UserPage.less | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/framework/core/less/forum/UserPage.less b/framework/core/less/forum/UserPage.less index b2a2af3cf..e351dfcd6 100644 --- a/framework/core/less/forum/UserPage.less +++ b/framework/core/less/forum/UserPage.less @@ -1,10 +1,5 @@ .UserPage { - .UserCard-controls { - float: right; - - .Dropdown-toggle .Button-icon { - display: none; - } + .UserHero .Dropdown-toggle .Button-icon { + display: none; } } -