From 6deb6923cb4b2b6e0062b4f7417e3bfc2f445118 Mon Sep 17 00:00:00 2001 From: DmitriyB Date: Tue, 16 Aug 2022 12:14:58 +0500 Subject: [PATCH] =?UTF-8?q?fix=20=D0=BF=D1=80=D0=B8=20=D0=B7=D0=B0=D0=BA?= =?UTF-8?q?=D1=80=D1=8B=D1=82=D0=BE=D0=BC=20=D1=82=D1=83=D0=BB=D0=B1=D0=B0?= =?UTF-8?q?=D1=80=D0=B5=20=D0=BD=D0=B0=20=D0=BC=D0=BE=D0=B1=D0=B8=D0=BB?= =?UTF-8?q?=D0=BA=D0=B5=20=D0=BA=D0=BD=D0=BE=D0=BF=D0=BA=D0=B8=20=D0=B2?= =?UTF-8?q?=D1=81=D0=B5=20=D1=80=D0=B0=D0=B2=D0=BD=D0=BE=20=D0=BF=D1=80?= =?UTF-8?q?=D0=BE=D0=B6=D0=B8=D0=BC=D0=B0=D0=BB=D0=B8=D1=81=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/mainScreen/toolbar/toolbar.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/mainScreen/toolbar/toolbar.css b/src/components/mainScreen/toolbar/toolbar.css index ec9abdc..645159c 100644 --- a/src/components/mainScreen/toolbar/toolbar.css +++ b/src/components/mainScreen/toolbar/toolbar.css @@ -532,23 +532,28 @@ .show-toolbar-enter .toolbar-field { opacity: 0; + pointer-events: none; } .show-toolbar-enter-done .toolbar-field { + pointer-events: all; opacity: 1; } .show-toolbar-enter-active .toolbar-field { opacity: 1; + pointer-events: all; transition: .3s; } .show-toolbar-exit-active .toolbar-field { opacity: 0; + pointer-events: none; transition: .3s; } .show-toolbar-exit-done .toolbar-field { - opacity: 0; + opacity: 0; + pointer-events: none; } } \ No newline at end of file