FIX - remove VaultX sign-out backdrop

Remove the navbar slot glass surface behind the profile sign-out action while preserving the styled button, hover state, and accessible touch target. Cover the transparent slot treatment with the VaultX contract test.
This commit is contained in:
smx.pusha
2026-08-18 12:56:28 +02:00
parent 6def666e1b
commit 0adb36b511
2 changed files with 12 additions and 0 deletions
@@ -197,6 +197,12 @@ describe('VaultX crypto app contracts', () => {
expect(source).toContain(':content-wrap="false"')
})
it('keeps the profile sign-out action free of a second navbar surface', () => {
expect(source).toContain('.crypto-app :deep(.sky-navbar__right)')
expect(source).toContain('background: transparent;')
expect(source).toContain('backdrop-filter: none;')
})
it('groups the activity summary and icon filters into one VaultX hub', () => {
expect(source).toContain('class="activity-overview"')
expect(source).toContain('class="activity-filter-panel"')
+6
View File
@@ -2723,6 +2723,12 @@ onUnmounted(() => {
background: #070b11;
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.crypto-app :deep(.sky-navbar__right) {
background: transparent;
box-shadow: none;
-webkit-backdrop-filter: none;
backdrop-filter: none;
}
.vault-header-brand {
display: inline-flex;
gap: 8px;