- Auto-focus password input when page loads - Move QR code above password input form (displays after generation) - Move explanation text below the form - Replace ncryptsec text output with clickable QR code button - Add hover/active effects and "Copy to clipboard" tooltip to QR code - Remove redundant copy button and text display Files modified: - package.json (version bump) - projects/chrome/public/manifest.json - projects/chrome/src/app/components/edit-identity/ncryptsec/* - projects/firefox/public/manifest.json - projects/firefox/src/app/components/edit-identity/ncryptsec/* 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
71 lines
1.1 KiB
SCSS
71 lines
1.1 KiB
SCSS
:host {
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-left: var(--size);
|
|
padding-right: var(--size);
|
|
|
|
.header-pane {
|
|
display: flex;
|
|
flex-direction: row;
|
|
column-gap: var(--size-h);
|
|
align-items: center;
|
|
padding-bottom: var(--size);
|
|
background-color: var(--background);
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
}
|
|
|
|
.description {
|
|
color: var(--text-muted);
|
|
font-size: 0.9rem;
|
|
margin-bottom: var(--size);
|
|
}
|
|
|
|
.password-section {
|
|
margin-bottom: var(--size);
|
|
|
|
label {
|
|
font-weight: 500;
|
|
margin-bottom: var(--size-q);
|
|
}
|
|
}
|
|
|
|
.generate-btn {
|
|
width: 100%;
|
|
margin-bottom: var(--size);
|
|
}
|
|
|
|
.qr-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: var(--size);
|
|
}
|
|
|
|
.qr-button {
|
|
background: white;
|
|
padding: var(--size);
|
|
border-radius: 8px;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: transform 0.15s ease, box-shadow 0.15s ease;
|
|
|
|
&:hover {
|
|
transform: scale(1.02);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
&:active {
|
|
transform: scale(0.98);
|
|
}
|
|
}
|
|
|
|
.qr-code {
|
|
width: 250px;
|
|
height: 250px;
|
|
display: block;
|
|
}
|