Ajusta cores de fundo preta dos inputs no modo claro (light theme)
This commit is contained in:
+13
-2
@@ -46,6 +46,7 @@
|
||||
--bg-secondary: #ffffff;
|
||||
--bg-tertiary: #e8e8e8;
|
||||
--bg-accent: #dcdcdc;
|
||||
--bg-input: #ffffff;
|
||||
|
||||
--text-primary: #1a1a1a;
|
||||
--text-secondary: #4a4a4a;
|
||||
@@ -2389,7 +2390,12 @@ code {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.settings-group input[type="text"] {
|
||||
.settings-group input[type="text"],
|
||||
.settings-group input[type="date"],
|
||||
.settings-group input[type="password"],
|
||||
.settings-group input[type="number"],
|
||||
.settings-group textarea,
|
||||
.settings-group select {
|
||||
background-color: var(--bg-secondary, #1a1a1a);
|
||||
border: 1px solid var(--border-light, #262626);
|
||||
border-radius: 8px;
|
||||
@@ -2400,7 +2406,12 @@ code {
|
||||
transition: border-color var(--transition-fast);
|
||||
}
|
||||
|
||||
.settings-group input[type="text"]:focus {
|
||||
.settings-group input[type="text"]:focus,
|
||||
.settings-group input[type="date"]:focus,
|
||||
.settings-group input[type="password"]:focus,
|
||||
.settings-group input[type="number"]:focus,
|
||||
.settings-group textarea:focus,
|
||||
.settings-group select:focus {
|
||||
border-color: var(--brand-green, #0ea5e9);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user