mirror of
https://github.com/sky-systems/sky_phone.git
synced 2026-08-28 17:01:18 +00:00
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:
@@ -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"')
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user