From 6eca039e832991a337510f12f05db6219ad0b536 Mon Sep 17 00:00:00 2001 From: igoradamenko Date: Sat, 24 Feb 2018 22:02:35 +0200 Subject: [PATCH] =?UTF-8?q?remove=20=E2=80=A2=20before=20admin=20actions?= =?UTF-8?q?=20when=20they=20are=20only=20ones=20in=20the=20list=20of=20con?= =?UTF-8?q?trols?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../_view/_admin/comment__controls_view_admin.scss | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/web/app/components/comment/__controls/_view/_admin/comment__controls_view_admin.scss b/web/app/components/comment/__controls/_view/_admin/comment__controls_view_admin.scss index 268536bf..3aebdc7e 100644 --- a/web/app/components/comment/__controls/_view/_admin/comment__controls_view_admin.scss +++ b/web/app/components/comment/__controls/_view/_admin/comment__controls_view_admin.scss @@ -1,6 +1,8 @@ .comment__controls_view_admin { - &::before { - content: '•'; - margin-right: 12px; + &:not(:first-child) { + &::before { + content: '•'; + margin-right: 12px; + } } }