From 244a2ca011149db768eb988fc02a1e3fd241dc1a Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 1 May 2026 14:05:28 +0200 Subject: [PATCH] Show the right cursor when hovering over a space (#33351) Fixes a regression in b0ee6f5323400897dde29b9a715f16f59b91d731 where a 'grab' cursor would be shown when hovering over a space, even though the most salient way to interact with it is by clicking. --- apps/web/res/css/structures/_SpacePanel.pcss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/res/css/structures/_SpacePanel.pcss b/apps/web/res/css/structures/_SpacePanel.pcss index 448795a0d4..5b6acf7596 100644 --- a/apps/web/res/css/structures/_SpacePanel.pcss +++ b/apps/web/res/css/structures/_SpacePanel.pcss @@ -125,7 +125,8 @@ Please see LICENSE files in the repository root for full details. align-items: center; padding: 4px 4px 4px 0; width: 100%; - cursor: pointer; + /* Override the unlayered cursor: grab; rule from react-beautiful-dnd */ + cursor: pointer !important; &.mx_SpaceButton_active { &:not(.mx_SpaceButton_narrow) .mx_SpaceButton_selectionWrapper {