[#7648] fixed firefox autoexpandable input and updated dark theme colors

This commit is contained in:
Gani Georgiev
2026-04-19 23:44:04 +03:00
parent c3a53cb183
commit 93e6ebfe49
11 changed files with 83 additions and 38 deletions

View File

@@ -1242,6 +1242,7 @@ function authFieldPassword(collection, data) {
id: uniqueId + "_password",
spellcheck: false,
name: "password",
className: "inline-error",
autocomplete: "new-password",
required: () => local.isNew || local.changePassword,
value: () => data.record.password || "",
@@ -1268,6 +1269,7 @@ function authFieldPassword(collection, data) {
id: uniqueId + "_password_confirm",
spellcheck: false,
name: "passwordConfirm",
className: "inline-error",
autocomplete: "new-password",
required: () => local.isNew || local.changePassword,
value: () => data.record.passwordConfirm || "",