From 988f0a8bc97d28cec4920b7b92e412042223fb6d Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 25 Sep 2023 14:38:00 -0400 Subject: [PATCH] Give speaking border priority over hover border Because that's how it works in the designs --- src/video-grid/VideoTile.module.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/video-grid/VideoTile.module.css b/src/video-grid/VideoTile.module.css index 231aa138..6b302775 100644 --- a/src/video-grid/VideoTile.module.css +++ b/src/video-grid/VideoTile.module.css @@ -43,7 +43,8 @@ limitations under the License. } .videoTile.speaking { - outline: 4px solid var(--cpd-color-border-accent); + /* !important because speaking border should take priority over hover */ + outline: 4px solid var(--cpd-color-border-accent) !important; } @media (hover: hover) {