From c459eb6cee1e83995c425c3aa2175eee1dfdaa00 Mon Sep 17 00:00:00 2001 From: Allison Levine Date: Thu, 11 Jun 2026 17:04:06 -0400 Subject: [PATCH] Write: use progress cursor on Save buttons while saving MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Save Draft and Publish buttons are briefly disabled while a save is in flight (via state.isSaving), and .bw-btn:disabled was applying cursor: not-allowed. That's the wrong affordance: the action is succeeding, just in progress — matching the existing .bw-uploading pattern, we now use cursor: progress for the in-flight state. --- .../changelog/fix-rsm-4006-save-button-cursor | 4 ++++ .../packages/jetpack-mu-wpcom/src/features/write/style.css | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/fix-rsm-4006-save-button-cursor diff --git a/projects/packages/jetpack-mu-wpcom/changelog/fix-rsm-4006-save-button-cursor b/projects/packages/jetpack-mu-wpcom/changelog/fix-rsm-4006-save-button-cursor new file mode 100644 index 00000000000..667c774893c --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/fix-rsm-4006-save-button-cursor @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Write: show progress cursor (instead of not-allowed) on Save buttons while a save is in flight. diff --git a/projects/packages/jetpack-mu-wpcom/src/features/write/style.css b/projects/packages/jetpack-mu-wpcom/src/features/write/style.css index e2c99041711..90a00711e41 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/write/style.css +++ b/projects/packages/jetpack-mu-wpcom/src/features/write/style.css @@ -188,7 +188,7 @@ .bw-btn:disabled { opacity: 0.5; - cursor: not-allowed; + cursor: progress; } .bw-btn-draft {