From 96b343effcbde69136599a014e6434d004f9f2c8 Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 17 Apr 2026 12:20:07 +0200 Subject: [PATCH] Fix forward/back buttons not showing up on desktop for multiple screen shares 6667fc54c0a758531476f697022a0001654e1f17 changed this CSS selector that shows buttons on hover to only target the buttons in the bottom right corner of the spotlight tile, causing the forward/back buttons to stay invisible. --- src/tile/SpotlightTile.module.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tile/SpotlightTile.module.css b/src/tile/SpotlightTile.module.css index af0e0add..5448a155 100644 --- a/src/tile/SpotlightTile.module.css +++ b/src/tile/SpotlightTile.module.css @@ -153,10 +153,10 @@ Please see LICENSE in the repository root for full details. } @media (hover) { - .tile > div > button { + .tile button { opacity: 0; } - .tile:hover > div > button { + .tile:hover button { opacity: 1; } }