From 2b3e28e69d6f6ff4f79d1003393b076e2c4987e5 Mon Sep 17 00:00:00 2001 From: vipulg Date: Fri, 17 Jul 2026 19:43:10 +0530 Subject: [PATCH 1/2] [MWPW-198314] Fix pixel issues in inline-action widget --- .../widgets/inline-action/inline-action.css | 26 +++++++++++++------ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/unitylibs/core/widgets/inline-action/inline-action.css b/unitylibs/core/widgets/inline-action/inline-action.css index 4b3c826b..e7cad660 100644 --- a/unitylibs/core/widgets/inline-action/inline-action.css +++ b/unitylibs/core/widgets/inline-action/inline-action.css @@ -325,15 +325,22 @@ background: #1473e6; color: #fff; font-size: 17px; - font-weight: 600; + font-weight: 700; cursor: pointer; line-height: 26px; font-family: var(--body-font-family); } .ia-download-btn :is(svg, img) { - width: 18px; - height: 18px; + width: 21px; + height: 21px; +} + +.ia-download-btn span { + display: inline-block; + width: fit-content; + padding-right: 0.5px; + padding-left: 0.5px; } .ia-reupload-btn svg, @@ -425,6 +432,7 @@ } .unity-inline-action .action-button { + min-height: 26px; font-family: var(--body-font-family); border-radius: 999px; border: 0; @@ -723,14 +731,14 @@ margin: 0; margin-top: auto; align-self: flex-end; - padding: 7px 18px 8px 18px; + padding: 7px 16px 8px 16px; border: 2px solid var(--ia-white); border-radius: 999px; background: transparent; color: #fff; font-family: var(--body-font-family); font-size: 17px; - font-weight: 800; + font-weight: 700; cursor: pointer; appearance: none; line-height: 26px; @@ -743,13 +751,15 @@ .unity-inline-action .ia-edit-in-firefly > span { flex: 0 1 auto; + margin-left: 0.5px; + margin-right: 0.5px; } .unity-inline-action .ia-edit-in-firefly :is(picture, svg, img) { display: block; - flex: 0 0 18px; - width: 18px; - height: 18px; + flex: 0 0 21px; + width: 21px; + height: 21px; } .unity-inline-action .ia-edit-in-firefly svg { From 63b67397622622de09d86635b22aec3343565fdd Mon Sep 17 00:00:00 2001 From: vipulg Date: Tue, 21 Jul 2026 15:11:39 +0530 Subject: [PATCH 2/2] [MWPW-198094] Widget border is not as per the figma --- unitylibs/core/widgets/inline-action/inline-action.css | 1 + 1 file changed, 1 insertion(+) diff --git a/unitylibs/core/widgets/inline-action/inline-action.css b/unitylibs/core/widgets/inline-action/inline-action.css index e7cad660..5f129091 100644 --- a/unitylibs/core/widgets/inline-action/inline-action.css +++ b/unitylibs/core/widgets/inline-action/inline-action.css @@ -42,6 +42,7 @@ display: flex; box-sizing: border-box; padding: 16px; + border: 1px solid rgb(255 255 255 / 10%); border-radius: 20px; overflow: hidden; background: rgb(41 41 41 / 60%);