2
0
mirror of https://github.com/frappe/books.git synced 2025-01-22 22:58:28 +00:00

Updated the layout of checkbox

This commit is contained in:
Piyush Singhania 2022-01-11 22:32:54 +05:30 committed by Alan
parent c8d2edd188
commit ee42005d87
2 changed files with 9 additions and 5 deletions

View File

@ -35,7 +35,7 @@
width="14"
height="14"
viewBox="0 0 14 14"
fill="none"
:fill="offColor"
xmlns="http://www.w3.org/2000/svg"
>
<rect
@ -44,7 +44,7 @@
width="13"
height="13"
rx="3.5"
:stroke="color"
:stroke="offBorderColor"
/>
</svg>
@ -71,7 +71,11 @@ export default {
name: 'Check',
extends: Base,
data() {
return { color: '#A1ABB4' };
return {
offBorderColor: 'rgba(17, 43, 66, 0.201322)',
offColor: '#FFFFFF',
color: '#2490EF'
};
},
computed: {
inputClasses() {

View File

@ -22,12 +22,12 @@
class="w-40 ml-2 first:ml-0"
:class="
df.fieldtype === 'Check' &&
'flex justify-between items-center bg-gray-100 px-2 overflow-scroll rounded'
'flex justify-start items-center px-2 rounded'
"
v-for="df in report.filterFields"
:key="df.fieldname"
>
<div v-if="df.fieldtype === 'Check'" class="text-sm">
<div v-if="df.fieldtype === 'Check'" class="text-sm mr-2">
{{ df.label }}
</div>
<FormControl