mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
fix: Lighter placeholder text color
This commit is contained in:
parent
01f970953e
commit
528efc9b6b
@ -58,7 +58,7 @@ export default {
|
||||
'px-2 py-1': this.size === 'small',
|
||||
'bg-gray-100': this.background
|
||||
},
|
||||
'focus:outline-none focus:bg-gray-200 rounded w-full text-gray-900'
|
||||
'focus:outline-none focus:bg-gray-200 rounded w-full text-gray-900 placeholder-gray-400'
|
||||
];
|
||||
|
||||
return this.getInputClassesFromProp(classes);
|
||||
|
@ -23,7 +23,7 @@
|
||||
</option>
|
||||
</select>
|
||||
<div
|
||||
class="absolute left-0 pl-2 text-gray-600 pointer-events-none"
|
||||
class="absolute left-0 pl-2 text-gray-400 pointer-events-none"
|
||||
v-if="!value"
|
||||
>
|
||||
{{ inputPlaceholder }}
|
||||
|
@ -5,7 +5,7 @@
|
||||
<span v-if="value">
|
||||
{{ formatValue ? formatValue(value) : value }}
|
||||
</span>
|
||||
<span class="text-gray-600" v-else>
|
||||
<span class="text-gray-400" v-else>
|
||||
<template v-if="placeholder">
|
||||
{{ placeholder }}
|
||||
</template>
|
||||
|
Loading…
Reference in New Issue
Block a user