diff --git a/fonts/GnuMICR.otf b/fonts/GnuMICR.otf new file mode 100644 index 0000000..8fd1823 Binary files /dev/null and b/fonts/GnuMICR.otf differ diff --git a/public/css/style.css b/public/css/style.css index 65b7af6..4ec67d1 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -53,6 +53,17 @@ header { cursor: pointer; } .account-switcher option { background: var(--header-bg); color: #fff; } +.btn-header-icon { + background: rgba(255,255,255,0.15); + border: 1px solid rgba(255,255,255,0.3); + color: #fff; + border-radius: 4px; + padding: 2px 7px; + font-size: 14px; + cursor: pointer; + line-height: 1.4; +} +.btn-header-icon:hover { background: rgba(255,255,255,0.28); } /* ── Toolbar ── */ .toolbar { @@ -492,8 +503,35 @@ input[type="file"] { .wizard-footer .btn-ghost { margin-right: auto; font-size: 12px; } .form-row-3 { grid-template-columns: 1fr 80px 100px; } +.form-row-4 { grid-template-columns: repeat(4, 1fr); } .field-hint { font-size: 11px; color: var(--text-muted); margin-top: 2px; } + +/* ── Account settings modal ── */ +.settings-section-label { + font-size: 10px; + font-weight: 700; + text-transform: uppercase; + letter-spacing: 0.06em; + color: var(--text-muted); + padding-bottom: 4px; + border-bottom: 1px solid var(--border); + margin-top: 4px; +} +.logo-preview { + margin-top: 6px; +} +.logo-preview img { + max-height: 60px; + max-width: 200px; + border: 1px solid var(--border); + border-radius: 3px; + padding: 3px; +} +#acct-settings-modal .modal-body { + max-height: calc(100vh - 160px); + overflow-y: auto; +} diff --git a/public/index.html b/public/index.html index cdefa7b..9a7cc99 100644 --- a/public/index.html +++ b/public/index.html @@ -11,6 +11,7 @@