From 32e306f6e12bd3edf1ba4107831a89004cd6972e Mon Sep 17 00:00:00 2001 From: Ed Sanders Date: Fri, 3 Jun 2022 16:33:26 +0100 Subject: [PATCH] Hide icon in anon warning below tablet width Bug: T307709 Change-Id: I800153cabc1ba14fd249c106d57162fd0cd9dbe1 --- modules/dt.ui.ReplyWidget.less | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/modules/dt.ui.ReplyWidget.less b/modules/dt.ui.ReplyWidget.less index ac726844d..04b861c92 100644 --- a/modules/dt.ui.ReplyWidget.less +++ b/modules/dt.ui.ReplyWidget.less @@ -274,6 +274,13 @@ transform: scale( 1.5 ); transform-origin: 0 center; left: 1em; + + // Hide warning icon below tablet width + @media all and ( max-width: @width-breakpoint-tablet ) { + & { + display: none; + } + } } } @@ -281,6 +288,13 @@ flex-grow: 1; flex-basis: 20em; margin-left: 3em; + + // Hide warning icon below tablet width + @media all and ( max-width: @width-breakpoint-tablet ) { + & { + margin-left: 0; + } + } } .ext-discussiontools-ui-replyWidget-actions {