From 7b1b1584f102ced70054605666a019dd152cfd39 Mon Sep 17 00:00:00 2001 From: Jamie Kyle <113370520+jamiebuilds-signal@users.noreply.github.com> Date: Tue, 7 Mar 2023 14:10:54 -0800 Subject: [PATCH] set speaking indicator to fade in instantly --- stylesheets/_modules.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index 9c90eaba3a1f..ed402c8d4bc6 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -3981,7 +3981,7 @@ button.module-image__border-overlay:focus { border: 0 solid transparent; border-radius: 5px; transition-property: border-width, border-color; - // Slow down the transition when the user stops speaking. + // Turn on the transition when the user stops speaking to fade out. transition-duration: 300ms; transition-delay: 1000ms; transition-timing-function: ease-in-out; @@ -3989,8 +3989,8 @@ button.module-image__border-overlay:focus { &--speaking:after { border-width: 3px; border-color: $color-white; - // Speed up the transition when the user starts speaking. - transition-duration: 50ms; + // Turn off the transition when the user starts speaking to appear instantly + transition-duration: 0ms; transition-delay: 0ms; }