Fix: Input text color in team member modal - use pulse-dark/pulse-text
This commit is contained in:
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user