Issue #2790 - Part 7: Setting of contrasting color and fixing of last commit's issues

This commit is contained in:
MeladJM 2025-07-29 04:52:30 +08:00 committed by roytam1
commit 61f92f89ea

View file

@ -106,6 +106,14 @@ input {
overflow-clip-box: content-box;
}
/* Autofill highlight - placed immediately after base input styles */
input:-moz-autofill-highlight,
select:-moz-autofill-highlight,
textarea:-moz-autofill-highlight {
background-color: #fffcd0 !important;
color: #090909;
}
input > .anonymous-div,
input::placeholder {
word-wrap: normal !important;
@ -1148,22 +1156,4 @@ input[type="number"] > div > div > div:hover {
input[type="date"],
input[type="time"] {
overflow: hidden !important;
}
input[type="text"]:-moz-autofill-highlight,
input[type="email"]:-moz-autofill-highlight,
input[type="password"]:-moz-autofill-highlight,
input[type="search"]:-moz-autofill-highlight,
input[type="tel"]:-moz-autofill-highlight,
input[type="url"]:-moz-autofill-highlight,
input[type="number"]:-moz-autofill-highlight,
input[type="date"]:-moz-autofill-highlight,
input[type="time"]:-moz-autofill-highlight,
input[type="datetime-local"]:-moz-autofill-highlight,
input[type="month"]:-moz-autofill-highlight,
input[type="week"]:-moz-autofill-highlight,
select:-moz-autofill-highlight,
textarea:-moz-autofill-highlight {
background-color: #fffcd0 !important;
}
}