From 35ca6308481b6bf408cd1dc232636d95e5db6a98 Mon Sep 17 00:00:00 2001
From: nod_ <nod_@598310.no-reply.drupal.org>
Date: Mon, 10 Jun 2024 14:20:43 +0200
Subject: [PATCH] Issue #3291221 by Gauravvvv, pradipmodh13, rkoller,
 ahsannazir, smustgrave, quietone: When configuring a field on a content
 type's "manage display" tab the spinner shifts the label and format column

---
 core/themes/claro/css/theme/field-ui.admin.css      | 6 ++++--
 core/themes/claro/css/theme/field-ui.admin.pcss.css | 6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/core/themes/claro/css/theme/field-ui.admin.css b/core/themes/claro/css/theme/field-ui.admin.css
index c2f601c20c68..7e23831cc013 100644
--- a/core/themes/claro/css/theme/field-ui.admin.css
+++ b/core/themes/claro/css/theme/field-ui.admin.css
@@ -46,6 +46,7 @@
 /* Settings edit. */
 
 .field-plugin-settings-edit-wrapper {
+  position: relative;
   display: flex;
   align-items: center;
   justify-content: flex-end;
@@ -58,8 +59,9 @@
 }
 
 .field-plugin-settings-edit-wrapper .ajax-progress--throbber {
-  margin-right: 0;
-  margin-left: 0;
+  position: absolute;
+  inset-block-start: 1.5625rem;
+  margin-inline: 0;
 }
 
 /* Settings editing subform. */
diff --git a/core/themes/claro/css/theme/field-ui.admin.pcss.css b/core/themes/claro/css/theme/field-ui.admin.pcss.css
index eb8ab5cfb764..c88459d0f8c5 100644
--- a/core/themes/claro/css/theme/field-ui.admin.pcss.css
+++ b/core/themes/claro/css/theme/field-ui.admin.pcss.css
@@ -32,6 +32,7 @@
 
 /* Settings edit. */
 .field-plugin-settings-edit-wrapper {
+  position: relative;
   display: flex;
   align-items: center;
   justify-content: flex-end;
@@ -44,8 +45,9 @@
 }
 
 .field-plugin-settings-edit-wrapper .ajax-progress--throbber {
-  margin-right: 0;
-  margin-left: 0;
+  position: absolute;
+  inset-block-start: 25px;
+  margin-inline: 0;
 }
 
 /* Settings editing subform. */
-- 
GitLab