|
@ -56,7 +56,7 @@ |
|
|
/> |
|
|
/> |
|
|
<button |
|
|
<button |
|
|
href="" |
|
|
href="" |
|
|
class="text-md bg-gradient-to-b shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white px-1 py-1 ml-2 rounded-md" |
|
|
class="text-md bg-gradient-to-b shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white ml-2 px-1 py-1 rounded-md" |
|
|
:style=" |
|
|
:style=" |
|
|
contactsSelected.length > 0 |
|
|
contactsSelected.length > 0 |
|
|
? 'background-image: linear-gradient(to bottom, #3b82f6, #1e40af);' |
|
|
? 'background-image: linear-gradient(to bottom, #3b82f6, #1e40af);' |
|
@ -226,10 +226,21 @@ |
|
|
</ul> |
|
|
</ul> |
|
|
<p v-else>There are no contacts.</p> |
|
|
<p v-else>There are no contacts.</p> |
|
|
|
|
|
|
|
|
<div class="w-full text-left"> |
|
|
<div class="mt-2 w-full text-left"> |
|
|
|
|
|
<input |
|
|
|
|
|
type="checkbox" |
|
|
|
|
|
v-if="!showGiveNumbers" |
|
|
|
|
|
:checked="contactsSelected.length === contacts.length" |
|
|
|
|
|
@click=" |
|
|
|
|
|
contactsSelected.length === contacts.length |
|
|
|
|
|
? (contactsSelected = []) |
|
|
|
|
|
: (contactsSelected = contacts.map((contact) => contact.did)) |
|
|
|
|
|
" |
|
|
|
|
|
class="align-middle ml-2 h-6 w-6" |
|
|
|
|
|
/> |
|
|
<button |
|
|
<button |
|
|
href="" |
|
|
href="" |
|
|
class="text-md bg-gradient-to-b from-slate-400 to-slate-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white px-1 py-1 rounded-md" |
|
|
class="text-md bg-gradient-to-b from-slate-400 to-slate-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white ml-2 px-1 py-1 rounded-md" |
|
|
:style=" |
|
|
:style=" |
|
|
contactsSelected.length > 0 |
|
|
contactsSelected.length > 0 |
|
|
? 'background-image: linear-gradient(to bottom, #3b82f6, #1e40af);' |
|
|
? 'background-image: linear-gradient(to bottom, #3b82f6, #1e40af);' |
|
|