ui: fix “Change Password” button sizing in User Panel

This commit is contained in:
Ryan
2025-10-23 01:54:32 -04:00
committed by GitHub
parent 30761b6dad
commit ebabb561d6
3 changed files with 7 additions and 4 deletions

View File

@@ -11,6 +11,10 @@ feat(i18n,auth): add Simplified Chinese (zh-CN) and expose in User Panel
- Wire zh-CN into Auth/User Panel (authModals) language dropdown.
- Fallback-safe rendering for language names when a key is missing.
ui: fix “Change Password” button sizing in User Panel
- Keep consistent padding and font size for cleaner layout
---
## Changes 10/23/2025 (v1.6.1)

View File

@@ -2036,10 +2036,9 @@ body.dark-mode .admin-panel-content label {
}
#openChangePasswordModalBtn {
width: auto;
padding: 5px 10px;
width: max-content;
padding: 6px 12px;
font-size: 14px;
margin-right: 300px;
}
#changePasswordModal {

View File

@@ -4,7 +4,7 @@ import { loadAdminConfigFunc } from './auth.js';
import { showToast, toggleVisibility, attachEnterKeyListener } from './domUtils.js';
import { sendRequest } from './networkUtils.js';
const version = "v1.6.1";
const version = "v1.6.2";
const adminTitle = `${t("admin_panel")} <small style="font-size:12px;color:gray;">${version}</small>`;