Merges shell multi-profile support for desktop (FN-3403) — spanning new connection-manager flows, shell onboarding interoperability, mobile connection profiles, desktop IPC/shell-settings plumbing, and tokenized titlebar styles — with a secondary migration of the WhatsApp plugin to the Baileys pairi Fusion-Task-Id: FN-3403
69 lines
1.5 KiB
CSS
69 lines
1.5 KiB
CSS
.native-shell-connection-manager {
|
|
width: min(100%, 42rem);
|
|
}
|
|
|
|
.native-shell-connection-manager__mode-row {
|
|
display: flex;
|
|
gap: var(--space-sm);
|
|
padding: 0 var(--space-xl) var(--space-md);
|
|
}
|
|
|
|
.native-shell-connection-manager__profiles {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
padding: 0 var(--space-xl);
|
|
max-height: 16rem;
|
|
overflow: auto;
|
|
}
|
|
|
|
.native-shell-connection-manager__profile {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.native-shell-connection-manager__profile-actions {
|
|
display: inline-flex;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.native-shell-connection-manager__editor {
|
|
padding-top: var(--space-lg);
|
|
}
|
|
|
|
.native-shell-connection-manager__empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.native-shell-connection-manager__active-pill {
|
|
display: inline-flex;
|
|
margin-top: var(--space-xs);
|
|
padding: 0 var(--space-sm);
|
|
border-radius: var(--radius-pill);
|
|
color: var(--text);
|
|
background: var(--status-done-bg);
|
|
}
|
|
|
|
.native-shell-connection-manager__delete-confirm {
|
|
margin: 0 var(--space-xl);
|
|
padding: var(--space-md);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-md);
|
|
background: color-mix(in srgb, var(--color-warning) 8%, transparent);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.native-shell-connection-manager__profile {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.native-shell-connection-manager__mode-row {
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|