2
0
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:
Faris Ansari 2020-01-29 00:16:31 +05:30
parent 01f970953e
commit 528efc9b6b
3 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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 }}

View File

@ -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>