v0.12.40 update

This commit is contained in:
2026-03-29 13:44:52 -04:00
parent 955f24d037
commit c378ec59e4
6 changed files with 59 additions and 14 deletions

View File

@@ -38,6 +38,29 @@ html {
font-size: 100%; /* inherits system font size — allows Android accessibility font scaling */
}
/* Aggressively disable Chrome autocomplete on Android */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0 1000px white inset !important;
background-color: white !important;
background-image: none !important;
transition: background-color 5000s ease-in-out 0s !important;
}
/* Disable autocomplete dropdown/panel */
input::-webkit-credentials-auto-fill-button,
input::-webkit-contacts-auto-fill-button {
display: none !important;
visibility: hidden !important;
pointer-events: none !important;
position: absolute !important;
right: 0 !important;
}
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea { font-family: var(--font); }
a { color: inherit; text-decoration: none; }