forked from jsnbuchanan/crowd-funder-for-time-pwa
change icons to font-awesome
This commit is contained in:
@@ -372,7 +372,7 @@
|
|||||||
<!-- Totals section -->
|
<!-- Totals section -->
|
||||||
<div class="mt-1 flex items-center min-h-[1.5rem]">
|
<div class="mt-1 flex items-center min-h-[1.5rem]">
|
||||||
<div v-if="loadingTotals" class="flex-1">
|
<div v-if="loadingTotals" class="flex-1">
|
||||||
<fa icon="spinner" class="fa-spin-pulse text-blue-500" />
|
<font-awesome icon="spinner" class="fa-spin-pulse text-blue-500" />
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="givesTotalsByUnit.length > 0" class="flex-1">
|
<div v-else-if="givesTotalsByUnit.length > 0" class="flex-1">
|
||||||
<span class="font-semibold mr-2 shrink-0">Totals</span>
|
<span class="font-semibold mr-2 shrink-0">Totals</span>
|
||||||
@@ -391,7 +391,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<span v-if="givesTotalsByUnit.length > 1">...</span>
|
<span v-if="givesTotalsByUnit.length > 1">...</span>
|
||||||
<span>
|
<span>
|
||||||
<fa
|
<font-awesome
|
||||||
:icon="totalsExpanded ? 'chevron-up' : 'chevron-right'"
|
:icon="totalsExpanded ? 'chevron-up' : 'chevron-right'"
|
||||||
class="fa-fw text-xs ml-1"
|
class="fa-fw text-xs ml-1"
|
||||||
/>
|
/>
|
||||||
@@ -404,7 +404,7 @@
|
|||||||
:key="total.unit"
|
:key="total.unit"
|
||||||
class="ml-2"
|
class="ml-2"
|
||||||
>
|
>
|
||||||
<fa
|
<font-awesome
|
||||||
:icon="libsUtil.iconForUnitCode(total.unit)"
|
:icon="libsUtil.iconForUnitCode(total.unit)"
|
||||||
class="fa-fw text-slate-400 mr-1"
|
class="fa-fw text-slate-400 mr-1"
|
||||||
/>
|
/>
|
||||||
@@ -431,7 +431,7 @@
|
|||||||
>
|
>
|
||||||
<div class="flex justify-between gap-4">
|
<div class="flex justify-between gap-4">
|
||||||
<span>
|
<span>
|
||||||
<fa icon="user" class="fa-fw text-slate-400" />
|
<font-awesome icon="user" class="fa-fw text-slate-400" />
|
||||||
{{
|
{{
|
||||||
serverUtil.didInfo(
|
serverUtil.didInfo(
|
||||||
give.agentDid,
|
give.agentDid,
|
||||||
@@ -442,23 +442,23 @@
|
|||||||
}}
|
}}
|
||||||
</span>
|
</span>
|
||||||
<span v-if="give.amount" class="whitespace-nowrap">
|
<span v-if="give.amount" class="whitespace-nowrap">
|
||||||
<fa
|
<font-awesome
|
||||||
:icon="libsUtil.iconForUnitCode(give.unit)"
|
:icon="libsUtil.iconForUnitCode(give.unit)"
|
||||||
class="fa-fw text-slate-400"
|
class="fa-fw text-slate-400"
|
||||||
/>{{ give.amount }}
|
/>{{ give.amount }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-slate-500">
|
<div class="text-slate-500">
|
||||||
<fa icon="calendar" class="fa-fw text-slate-400" />
|
<font-awesome icon="calendar" class="fa-fw text-slate-400" />
|
||||||
{{ give.issuedAt?.substring(0, 10) }}
|
{{ give.issuedAt?.substring(0, 10) }}
|
||||||
</div>
|
</div>
|
||||||
<div v-if="give.description" class="text-slate-500">
|
<div v-if="give.description" class="text-slate-500">
|
||||||
<fa icon="comment" class="fa-fw text-slate-400" />
|
<font-awesome icon="comment" class="fa-fw text-slate-400" />
|
||||||
{{ give.description }}
|
{{ give.description }}
|
||||||
</div>
|
</div>
|
||||||
<div class="flex justify-between">
|
<div class="flex justify-between">
|
||||||
<a @click="onClickLoadClaim(give.jwtId)">
|
<a @click="onClickLoadClaim(give.jwtId)">
|
||||||
<fa icon="file-lines" class="text-blue-500 cursor-pointer" />
|
<font-awesome icon="file-lines" class="text-blue-500 cursor-pointer" />
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
@@ -468,16 +468,16 @@
|
|||||||
"
|
"
|
||||||
@click="deepCheckConfirmable(give)"
|
@click="deepCheckConfirmable(give)"
|
||||||
>
|
>
|
||||||
<fa
|
<font-awesome
|
||||||
icon="circle-check"
|
icon="circle-check"
|
||||||
class="text-blue-500 cursor-pointer"
|
class="text-blue-500 cursor-pointer"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
<a v-else-if="checkingConfirmationForJwtId === give.jwtId">
|
<a v-else-if="checkingConfirmationForJwtId === give.jwtId">
|
||||||
<fa icon="spinner" class="fa-spin-pulse" />
|
<font-awesome icon="spinner" class="fa-spin-pulse" />
|
||||||
</a>
|
</a>
|
||||||
<a v-else @click="shallowNotifyWhyCannotConfirm(give)">
|
<a v-else @click="shallowNotifyWhyCannotConfirm(give)">
|
||||||
<fa
|
<font-awesome
|
||||||
icon="circle-check"
|
icon="circle-check"
|
||||||
class="text-slate-500 cursor-pointer"
|
class="text-slate-500 cursor-pointer"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user