From 067a70d19f6cd44f09339bacf141ffa6ade39baf Mon Sep 17 00:00:00 2001 From: Johannes Marbach Date: Mon, 1 Jun 2026 09:19:33 +0200 Subject: [PATCH] Fix corner radius on screenshare overlay in widget mode Signed-off-by: Johannes Marbach --- src/grid/TileWrapper.module.css | 2 +- src/tile/GridTile.module.css | 1 + src/tile/SpotlightTile.module.css | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/grid/TileWrapper.module.css b/src/grid/TileWrapper.module.css index 2147b194..ba973b8c 100644 --- a/src/grid/TileWrapper.module.css +++ b/src/grid/TileWrapper.module.css @@ -7,7 +7,7 @@ Please see LICENSE in the repository root for full details. .tile.draggable { cursor: grab; - box-shadow: var(--big-drop-shadow); + --draggable-shadow: var(--big-drop-shadow); } .tile.draggable:active { diff --git a/src/tile/GridTile.module.css b/src/tile/GridTile.module.css index 7ffe67d4..971b5690 100644 --- a/src/tile/GridTile.module.css +++ b/src/tile/GridTile.module.css @@ -10,6 +10,7 @@ Please see LICENSE in the repository root for full details. --hover-space-margin: var(--cpd-space-1x); transition: outline-color ease 0.15s; outline: var(--cpd-border-width-2) solid rgb(0 0 0 / 0); + box-shadow: var(--draggable-shadow); } /* Use a pseudo-element to create the expressive speaking border, since CSS diff --git a/src/tile/SpotlightTile.module.css b/src/tile/SpotlightTile.module.css index 54e31106..1e728ba1 100644 --- a/src/tile/SpotlightTile.module.css +++ b/src/tile/SpotlightTile.module.css @@ -10,6 +10,7 @@ Please see LICENSE in the repository root for full details. inline-size: 100%; display: flex; border-radius: var(--cpd-space-6x); + box-shadow: var(--draggable-shadow); contain: strict; overflow-x: auto; overflow-y: hidden;