UI Fix: Ensure text is dark and visible on white backgrounds (fixes macOS dark mode issues)

This commit is contained in:
mstfyldz
2026-02-22 17:21:44 +03:00
parent a8a4777a72
commit 8b9d1891fa
2 changed files with 8 additions and 0 deletions

View File

@@ -24,6 +24,7 @@
.login-container { .login-container {
background: white; background: white;
color: #333;
border-radius: 20px; border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
padding: 50px 40px; padding: 50px 40px;
@@ -84,6 +85,9 @@
border-radius: 10px; border-radius: 10px;
font-size: 14px; font-size: 14px;
transition: all 0.3s; transition: all 0.3s;
color: #333;
background-color: #fff;
color-scheme: light;
} }
.form-group input:focus { .form-group input:focus {

View File

@@ -25,6 +25,7 @@ if (!isset($_SESSION['admin_logged_in']) || $_SESSION['admin_logged_in'] !== tru
max-width: 1400px; max-width: 1400px;
margin: 0 auto; margin: 0 auto;
background: white; background: white;
color: #333;
border-radius: 12px; border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.3);
overflow: hidden; overflow: hidden;
@@ -89,6 +90,9 @@ if (!isset($_SESSION['admin_logged_in']) || $_SESSION['admin_logged_in'] !== tru
border-radius: 6px; border-radius: 6px;
font-size: 14px; font-size: 14px;
transition: all 0.3s; transition: all 0.3s;
color: #333;
background-color: #fff;
color-scheme: light;
} }
.form-group input:focus, .form-group input:focus,