This commit is contained in:
oliver
2026-06-09 13:51:41 -03:00
parent d0c5c1285b
commit 59871432b9
3 changed files with 376 additions and 91 deletions
+156
View File
@@ -1438,6 +1438,162 @@ body::after {
gap: 10px;
}
/* ─── Account Modal ────────────────────────────────────────────────── */
.account-modal {
max-width: 760px;
width: 100%;
}
.account-modal .modal-header {
display: flex;
align-items: center;
justify-content: space-between;
}
.modal-close-btn {
background: none;
border: none;
color: var(--text-muted);
font-size: 16px;
cursor: pointer;
padding: 0 2px;
line-height: 1;
transition: color 0.15s;
}
.modal-close-btn:hover {
color: var(--text);
}
.account-modal-body {
display: flex;
min-height: 320px;
}
.account-col {
display: flex;
flex-direction: column;
}
.account-col--settings {
width: 260px;
flex-shrink: 0;
padding: 18px 20px;
}
.account-col-divider {
width: 1px;
background: var(--border);
flex-shrink: 0;
}
.account-col--invoices {
flex: 1;
padding: 18px 20px;
min-width: 0;
overflow: hidden;
}
.acct-section {
padding: 4px 0 10px;
}
.acct-divider {
height: 1px;
background: var(--border);
margin: 6px 0 14px;
}
.acct-field-label {
font-size: 11px;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 4px;
}
.acct-field-val {
font-size: 13px;
color: var(--text);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.acct-invoices-title {
font-size: 11px;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 14px;
}
.invoice-list {
display: flex;
flex-direction: column;
gap: 2px;
max-height: 360px;
overflow-y: auto;
}
.invoice-row {
display: grid;
grid-template-columns: 100px 1fr 1fr 80px;
gap: 10px;
align-items: center;
padding: 7px 10px;
border-radius: var(--radius);
font-size: 12px;
}
.invoice-row--head {
color: var(--text-muted);
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
background: none;
padding-bottom: 4px;
margin-bottom: 2px;
border-bottom: 1px solid var(--border);
}
.invoice-row:not(.invoice-row--head) {
background: var(--bg-inner);
border: 1px solid var(--border);
color: var(--text);
}
.invoice-row:not(.invoice-row--head):hover {
border-color: var(--border-hi);
}
.invoice-date {
color: var(--text-muted);
white-space: nowrap;
}
.invoice-uuid {
color: var(--accent);
font-weight: 500;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.invoice-product {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.invoice-price {
text-align: right;
font-weight: 600;
color: var(--success);
white-space: nowrap;
}
/* ─── Credits Modal ────────────────────────────────────────── */
.credits-key-label {
font-size: 12px;