Refactors the address-book detail partial (templates/partials/app-user-profile.phtml) toward a Stripe/Linear aesthetic: the banner + avatar still carry identity, but the header now also carries meta chips (primary tenant, department, hire date) and primary CTAs (Send email, Call). Email/phone/mobile move out of a tab into an always-visible contact stack directly under the identity block, with icon-led rows and a hover-revealed copy button. Tabs reduce to Address / About / Organization, with Organization only appearing for multi-tenant users — single-tenant assignments are fully communicated through chips. The detail aside is gone; main content is single-column and more focused. Introduces web/js/components/app-copy-field.js — a generic, server- markup-driven copy-to-clipboard button component wired from app-init.js. The markup is rendered by the PHP partial (role-compatible, SSR-safe); the component only attaches the click handler and drives icon-swap feedback via an is-copied class. Address-book index page now loads the 'address-book' CSS group alongside 'address-book-index' so the detail drawer (which mounts the same profile partial inline) gets the correct styles. Contact rows use inline-block + vertical-align centering inside the clickable link; the field-label tooltip lives on a <span> wrapper rather than the <i> itself (Bootstrap icons render their glyph via ::before, and the tooltip rule would otherwise cap it). Hover reveals the copy button on pointer devices; @media (hover: none) shows it permanently on touch. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
374 lines
10 KiB
CSS
374 lines
10 KiB
CSS
@layer pages {
|
|
/* ──────────────────────────────────────────────────────────────────────
|
|
Profile Card (address-book detail view)
|
|
Stripe-inspired header: banner + avatar overlap, meta chips, primary
|
|
CTAs above the fold, always-visible contact list with copy affordance.
|
|
────────────────────────────────────────────────────────────────────── */
|
|
|
|
.app-profile-card-container {
|
|
margin-top: var(--app-spacing);
|
|
}
|
|
|
|
.app-profile-card {
|
|
border: 1px solid var(--app-border);
|
|
background: var(--app-card-background-color);
|
|
border-radius: var(--app-border-radius);
|
|
margin-bottom: var(--app-spacing);
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Header grid: avatar | identity | actions. Only the avatar overlaps the
|
|
banner via negative margin-top — identity and actions stay at the card's
|
|
natural top edge so their vertical rhythm is predictable and doesn't need
|
|
hand-tuned padding-top compensation. */
|
|
.app-profile-header {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
grid-template-areas: "avatar identity actions";
|
|
gap: calc(var(--app-spacing) * 1.25);
|
|
align-items: start;
|
|
padding: calc(var(--app-spacing) * 1.25);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.app-profile-avatar {
|
|
grid-area: avatar;
|
|
margin-top: -48px;
|
|
}
|
|
|
|
.app-profile-identity {
|
|
grid-area: identity;
|
|
min-width: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.6rem;
|
|
padding-top: 0.15rem;
|
|
}
|
|
|
|
.app-profile-identity-name {
|
|
margin: 0;
|
|
}
|
|
|
|
.app-profile-identity-name h2 {
|
|
margin: 0;
|
|
font-size: 1.6rem;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.app-profile-identity-name p {
|
|
margin: 0.15rem 0 0;
|
|
color: var(--app-muted-color);
|
|
font-size: 0.95rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Chip container — core `.badge` already owns display/gap/padding/radius.
|
|
We only define row/wrap layout and a slightly richer `small` inside the
|
|
primary-tenant chip to soften the "· Primary" suffix. */
|
|
.app-profile-chips {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.4rem;
|
|
margin: 0;
|
|
}
|
|
|
|
.app-profile-chips .badge small {
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.app-profile-actions {
|
|
grid-area: actions;
|
|
display: inline-flex;
|
|
gap: 0.4rem;
|
|
flex-shrink: 0;
|
|
padding-top: 0.15rem;
|
|
}
|
|
|
|
.app-profile-action-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.35rem;
|
|
text-decoration: none;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* ──────────────────────────────────────────────────────────────────────
|
|
Always-visible Contact list with copy affordance
|
|
────────────────────────────────────────────────────────────────────── */
|
|
|
|
/* Stripe-style contact list: vertical stack, icon + value only (label
|
|
communicated by icon), entire row is the action target. Subtle hairline
|
|
dividers between rows keep density high and reading quick. */
|
|
.app-profile-contact-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
border-top: 1px solid var(--app-border);
|
|
}
|
|
|
|
.app-profile-contact-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.15rem calc(var(--app-spacing) * 1.25);
|
|
min-width: 0;
|
|
}
|
|
|
|
.app-profile-contact-row + .app-profile-contact-row {
|
|
border-top: 1px solid var(--app-border);
|
|
}
|
|
|
|
.app-profile-contact-value {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.7rem;
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
padding: 0.55rem 0;
|
|
color: var(--app-color);
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.app-profile-contact-icon {
|
|
color: var(--app-muted-color);
|
|
font-size: 1rem;
|
|
line-height: 1;
|
|
flex-shrink: 0;
|
|
transition: color 0.12s ease;
|
|
}
|
|
|
|
.app-profile-contact-text {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.app-profile-contact-value:hover,
|
|
.app-profile-contact-value:focus-visible {
|
|
color: var(--app-primary);
|
|
outline: none;
|
|
}
|
|
|
|
.app-profile-contact-value:hover .app-profile-contact-icon,
|
|
.app-profile-contact-value:focus-visible .app-profile-contact-icon {
|
|
color: var(--app-primary);
|
|
}
|
|
|
|
.app-profile-contact-value:hover .app-profile-contact-text,
|
|
.app-profile-contact-value:focus-visible .app-profile-contact-text {
|
|
text-decoration: underline;
|
|
text-underline-offset: 3px;
|
|
}
|
|
|
|
/* Copy button — hover-revealed on pointer devices, always visible on touch
|
|
(no :hover) so the affordance stays discoverable. */
|
|
.app-copy-button {
|
|
--app-background-color: transparent;
|
|
--app-border-color: transparent;
|
|
--app-color: var(--app-muted-color);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 1.75rem;
|
|
height: 1.75rem;
|
|
padding: 0;
|
|
margin: 0;
|
|
border-radius: calc(var(--app-border-radius) * 0.8);
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
transition: opacity 0.12s ease, background-color 0.12s ease, color 0.12s ease;
|
|
}
|
|
|
|
.app-profile-contact-row:hover .app-copy-button,
|
|
.app-profile-contact-row:focus-within .app-copy-button,
|
|
.app-copy-button:focus-visible {
|
|
opacity: 1;
|
|
}
|
|
|
|
@media (hover: none) {
|
|
.app-copy-button {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.app-copy-button:hover,
|
|
.app-copy-button:focus-visible {
|
|
--app-background-color: color-mix(in srgb, var(--app-primary) 10%, transparent);
|
|
--app-color: var(--app-primary);
|
|
}
|
|
|
|
.app-copy-button [data-copy-icon-done] {
|
|
display: none;
|
|
}
|
|
|
|
.app-copy-button.is-copied {
|
|
--app-color: var(--app-primary);
|
|
opacity: 1;
|
|
}
|
|
|
|
.app-copy-button.is-copied [data-copy-icon-idle] {
|
|
display: none;
|
|
}
|
|
|
|
.app-copy-button.is-copied [data-copy-icon-done] {
|
|
display: inline-block;
|
|
}
|
|
|
|
/* ──────────────────────────────────────────────────────────────────────
|
|
Tabs — stronger typography + primary-colored active indicator
|
|
────────────────────────────────────────────────────────────────────── */
|
|
|
|
.app-profile-body {
|
|
border: 1px solid var(--app-border);
|
|
background: var(--app-card-background-color);
|
|
border-radius: var(--app-border-radius);
|
|
margin-bottom: var(--app-spacing);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.app-profile-tabs [data-tab-panel] {
|
|
padding: var(--app-spacing) calc(var(--app-spacing) * 1.25);
|
|
}
|
|
|
|
.app-profile-panel {
|
|
min-height: 0;
|
|
}
|
|
|
|
.app-profile-tabs .app-tabs-nav button[data-tab] {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.app-profile-tabs .app-tabs-nav button[data-tab][aria-selected="true"],
|
|
.app-profile-tabs .app-tabs-nav button[data-tab].is-active {
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Address block — semantic element, block layout */
|
|
.app-profile-address {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.2rem;
|
|
font-style: normal;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.app-profile-key-value {
|
|
margin-bottom: 0.9rem;
|
|
}
|
|
|
|
.app-profile-key-value:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.app-profile-key-value small {
|
|
display: block;
|
|
color: var(--app-muted-color);
|
|
font-size: 0.78rem;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
margin-bottom: 0.15rem;
|
|
}
|
|
|
|
.app-profile-key-value p {
|
|
margin: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.app-profile-about-description p {
|
|
margin: 0 0 0.4rem;
|
|
}
|
|
|
|
.app-profile-about-description p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* ──────────────────────────────────────────────────────────────────────
|
|
Organization tab — multi-tenant overview
|
|
────────────────────────────────────────────────────────────────────── */
|
|
|
|
.app-profile-tenant-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.9rem;
|
|
}
|
|
|
|
.app-profile-tenant-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.15rem;
|
|
}
|
|
|
|
.app-profile-tenant-label {
|
|
display: inline-flex;
|
|
align-items: baseline;
|
|
gap: 0.4rem;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.app-profile-tenant-label strong {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.app-profile-tenant-primary {
|
|
color: var(--app-muted-color);
|
|
}
|
|
|
|
.app-profile-tenant-departments {
|
|
color: var(--app-muted-color);
|
|
font-size: 0.88rem;
|
|
padding-left: 1.3rem;
|
|
}
|
|
|
|
/* ──────────────────────────────────────────────────────────────────────
|
|
Mobile — stack header, show copy buttons, keep chips readable
|
|
────────────────────────────────────────────────────────────────────── */
|
|
|
|
@media (max-width: 768px) {
|
|
.app-profile-header {
|
|
grid-template-columns: auto 1fr;
|
|
grid-template-areas:
|
|
"avatar identity"
|
|
"actions actions";
|
|
row-gap: 0.9rem;
|
|
padding: var(--app-spacing);
|
|
}
|
|
|
|
.app-profile-avatar {
|
|
margin-top: -36px;
|
|
}
|
|
|
|
.app-profile-identity {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.app-profile-actions {
|
|
padding-top: 0;
|
|
flex-wrap: wrap;
|
|
width: 100%;
|
|
}
|
|
|
|
.app-profile-action-button {
|
|
flex: 1 1 auto;
|
|
justify-content: center;
|
|
}
|
|
|
|
.app-profile-contact-row {
|
|
padding-inline: var(--app-spacing);
|
|
}
|
|
|
|
.app-profile-identity-name h2 {
|
|
font-size: 1.35rem;
|
|
}
|
|
}
|
|
}
|