Fix: Input text color in team member modal - use pulse-dark/pulse-text

This commit is contained in:
FluxKit
2026-02-25 16:03:49 +00:00
parent 3d2c4e2f26
commit c5e41c2577

View File

@@ -362,7 +362,7 @@ onMounted(() => {
v-model="form.firstName"
type="text"
required
class="w-full px-3 py-2 bg-pulse-bg border border-pulse-border rounded-lg text-white focus:border-primary-500 focus:outline-none"
class="w-full px-3 py-2 bg-pulse-dark border border-pulse-border rounded-lg text-pulse-text placeholder-pulse-muted focus:border-primary-500 focus:outline-none"
/>
</div>
<div>
@@ -371,7 +371,7 @@ onMounted(() => {
v-model="form.lastName"
type="text"
required
class="w-full px-3 py-2 bg-pulse-bg border border-pulse-border rounded-lg text-white focus:border-primary-500 focus:outline-none"
class="w-full px-3 py-2 bg-pulse-dark border border-pulse-border rounded-lg text-pulse-text placeholder-pulse-muted focus:border-primary-500 focus:outline-none"
/>
</div>
</div>
@@ -382,7 +382,7 @@ onMounted(() => {
v-model="form.email"
type="email"
required
class="w-full px-3 py-2 bg-pulse-bg border border-pulse-border rounded-lg text-white focus:border-primary-500 focus:outline-none"
class="w-full px-3 py-2 bg-pulse-dark border border-pulse-border rounded-lg text-pulse-text placeholder-pulse-muted focus:border-primary-500 focus:outline-none"
/>
</div>
@@ -394,7 +394,7 @@ onMounted(() => {
required
minlength="8"
placeholder="Mind. 8 Zeichen"
class="w-full px-3 py-2 bg-pulse-bg border border-pulse-border rounded-lg text-white focus:border-primary-500 focus:outline-none"
class="w-full px-3 py-2 bg-pulse-dark border border-pulse-border rounded-lg text-pulse-text placeholder-pulse-muted focus:border-primary-500 focus:outline-none"
/>
</div>
@@ -403,7 +403,7 @@ onMounted(() => {
<select
v-model="form.role"
:disabled="editingUser?.role === 'owner'"
class="w-full px-3 py-2 bg-pulse-bg border border-pulse-border rounded-lg text-white focus:border-primary-500 focus:outline-none disabled:opacity-50"
class="w-full px-3 py-2 bg-pulse-dark border border-pulse-border rounded-lg text-pulse-text focus:border-primary-500 focus:outline-none disabled:opacity-50"
>
<option v-for="role in availableRoles" :key="role.value" :value="role.value">
{{ role.label }}