3 Commits 5f318f3b16 ... 3d1d75d65a

Author SHA1 Message Date
  MHSanaei 3d1d75d65a Revert "build(deps-dev): bump vite from 8.0.13 to 8.0.14 in /frontend (#4487)" 23 hours ago
  Cheng Ho Ming, Eric 6e2816d035 fix(frontend): override browser default background color on autofilled login inputs (#4478) 23 hours ago
  dependabot[bot] 7fc7c14ac1 build(deps-dev): bump vite from 8.0.13 to 8.0.14 in /frontend (#4487) 1 day ago
1 changed files with 7 additions and 0 deletions
  1. 7 0
      frontend/src/pages/login/LoginPage.vue

+ 7 - 0
frontend/src/pages/login/LoginPage.vue

@@ -469,6 +469,13 @@ function cycleTheme() {
   font-weight: 500;
   font-weight: 500;
 }
 }
 
 
+.login-form :deep(input.ant-input:-webkit-autofill) {
+  -webkit-text-fill-color: var(--color-text) !important;
+  -webkit-box-shadow: 0 0 0 1000px var(--bg-card) inset !important;
+  box-shadow: 0 0 0 1000px var(--bg-card) inset !important;
+  transition: background-color 9999s ease-in-out 0s, color 9999s ease-in-out 0s;
+}
+
 .submit-row {
 .submit-row {
   margin-bottom: 0;
   margin-bottom: 0;
 }
 }