From bddd6f5fb1e23211583e0e0f0c07508a8493e430 Mon Sep 17 00:00:00 2001 From: Jason Ng Date: Wed, 28 Jan 2026 13:31:49 -0500 Subject: [PATCH] [PM-31253] Desktop Footer Tooltip Updates (#18580) * update desktop archive and delete btns so tooltip shows on hover consistently. --- .../app/vault/item-footer.component.html | 109 +++++++++--------- 1 file changed, 57 insertions(+), 52 deletions(-) diff --git a/apps/desktop/src/vault/app/vault/item-footer.component.html b/apps/desktop/src/vault/app/vault/item-footer.component.html index 0af73bf7d8a..5e3de1e6a14 100644 --- a/apps/desktop/src/vault/app/vault/item-footer.component.html +++ b/apps/desktop/src/vault/app/vault/item-footer.component.html @@ -11,61 +11,66 @@ > {{ submitButtonText() }} - - - + @if (!cipher.isDeleted && action === "view") { + + } + + @if (action === "edit" || action === "clone" || action === "add") { + + } + + @if (cipher.isDeleted && cipher.permissions.restore) { + + } + @if (showCloneOption) { } -
- - - -
+ @if (hasFooterAction) { +
+ @if (showArchiveButton) { + + } + + @if (showUnarchiveButton) { + + } + + +
+ }