Fix forward/back buttons not showing up on desktop for multiple screen shares

6667fc54c0 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.
This commit is contained in:
Robin
2026-04-17 12:20:07 +02:00
parent 8eccb95fd3
commit 96b343effc

View File

@@ -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;
}
}