From 84066eaca3a8985b504311f01b251872db79b327 Mon Sep 17 00:00:00 2001 From: Lephe Date: Thu, 26 May 2022 20:07:50 +0100 Subject: [PATCH] css: fix antibot field being visible --- app/static/css/form.css | 2 +- app/static/less/form.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/static/css/form.css b/app/static/css/form.css index 23dff8a..b780e4a 100644 --- a/app/static/css/form.css +++ b/app/static/css/form.css @@ -95,7 +95,7 @@ font-weight: 400; margin-top: 5px; } -.form .abfield { +.form input[type='email'].abfield { display: none; } .form.filter { diff --git a/app/static/less/form.less b/app/static/less/form.less index c391989..36e37b4 100644 --- a/app/static/less/form.less +++ b/app/static/less/form.less @@ -109,7 +109,7 @@ } /* anti-bots field */ - .abfield { + input[type='email'].abfield { display: none; } }