@@ -185,6 +214,27 @@ export function ImageCanvasTopbarView({
/>
{walletDisplayLabel}
+
);
diff --git a/src/index.css b/src/index.css
index 61ba236fd..a6088efc0 100644
--- a/src/index.css
+++ b/src/index.css
@@ -5207,6 +5207,81 @@ html[data-mobile-keyboard-open='true'] .platform-mobile-bottom-dock {
mix-blend-mode: multiply;
}
+.image-canvas-editor__account-chip {
+ display: inline-flex;
+ min-width: 0;
+ height: 2.04rem;
+ flex: 0 1 auto;
+ align-items: center;
+ gap: 0.42rem;
+ border: 1px solid rgba(214, 184, 159, 0.72);
+ border-radius: 999px;
+ background: rgba(255, 250, 244, 0.82);
+ padding: 0 0.68rem 0 0.24rem;
+ color: #4f2f23;
+ line-height: 1;
+ transition:
+ transform 160ms ease,
+ background-color 160ms ease,
+ border-color 160ms ease,
+ box-shadow 160ms ease;
+}
+
+.image-canvas-editor__account-chip:hover,
+.image-canvas-editor__account-chip:focus-visible {
+ transform: translateY(-1px);
+ border-color: rgba(214, 184, 159, 0.92);
+ background: rgba(255, 250, 244, 0.96);
+ box-shadow: 0 0.28rem 0.78rem rgba(112, 62, 32, 0.12);
+}
+
+.image-canvas-editor__account-avatar {
+ display: inline-grid;
+ width: 1.66rem;
+ height: 1.66rem;
+ flex: 0 0 auto;
+ place-items: center;
+ overflow: hidden;
+ border-radius: 999px;
+ background: var(--platform-profile-avatar-fill);
+ color: #ffffff;
+ font-size: 0.76rem;
+ font-weight: 900;
+ box-shadow: var(--platform-profile-avatar-shadow);
+}
+
+.image-canvas-editor__account-avatar img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+}
+
+.image-canvas-editor__account-meta {
+ display: grid;
+ min-width: 0;
+ max-width: 8.4rem;
+ gap: 0.12rem;
+ text-align: left;
+}
+
+.image-canvas-editor__account-meta span {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+.image-canvas-editor__account-meta span:first-child {
+ color: #4f2f23;
+ font-size: 0.76rem;
+ font-weight: 880;
+}
+
+.image-canvas-editor__account-meta span:last-child {
+ color: #8a6d5c;
+ font-size: 0.66rem;
+ font-weight: 760;
+}
+
.image-canvas-editor__zoom-menu-wrap {
margin-left: auto;
position: relative;
@@ -8987,6 +9062,23 @@ button.image-canvas-editor__reference-chip:disabled {
height: 1.02rem;
}
+ .image-canvas-editor__account-chip {
+ width: 1.94rem;
+ height: 1.94rem;
+ padding: 0;
+ justify-content: center;
+ }
+
+ .image-canvas-editor__account-avatar {
+ width: 1.38rem;
+ height: 1.38rem;
+ font-size: 0.68rem;
+ }
+
+ .image-canvas-editor__account-meta {
+ display: none;
+ }
+
.image-canvas-editor__floating-toolbar button,
.image-canvas-editor__bottom-toolbar button,
.image-canvas-editor__reset-button {