Skip to content

Commit

Permalink
fix: colour scheme for + (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
motorina0 authored Nov 6, 2023
1 parent 39fb662 commit 0c44024
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions templates/satspay/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ <h5 class="text-subtitle1 q-my-none">Charges</h5>
<q-td auto-width>
<q-btn
size="sm"
color="accent"
color="primary"
round
dense
@click="props.row.expanded= !props.row.expanded"
Expand All @@ -106,10 +106,10 @@ <h5 class="text-subtitle1 q-my-none">Charges</h5>
<q-td auto-width>
<q-badge
v-if="props.row.time_elapsed && props.row.balance < props.row.amount"
color="red"
outline
color="primary"
>
<a
class="text-secondary"
:href="props.row.displayUrl"
target="_blank"
style="color: unset; text-decoration: none"
Expand All @@ -119,20 +119,19 @@ <h5 class="text-subtitle1 q-my-none">Charges</h5>

<q-badge
v-else-if="props.row.balance >= props.row.amount"
color="green"
outline
color="primary"
>
<a
class="text-secondary"
:href="props.row.displayUrl"
target="_blank"
style="color: unset; text-decoration: none"
>paid</a
>
</q-badge>

<q-badge v-else color="blue"
<q-badge v-else outline color="primary"
><a
class="text-secondary"
:href="props.row.displayUrl"
target="_blank"
style="color: unset; text-decoration: none"
Expand All @@ -142,7 +141,6 @@ <h5 class="text-subtitle1 q-my-none">Charges</h5>
</q-td>
<q-td key="description" :props="props" :class="">
<a
class="text-secondary"
:href="props.row.displayUrl"
target="_blank"
style="color: unset; text-decoration: none"
Expand Down Expand Up @@ -253,7 +251,6 @@ <h5 class="text-subtitle1 q-my-none">Charges</h5>
<div class="col-6 q-pr-lg">
<q-btn
unelevated
color="gray"
outline
type="a"
:href="props.row.displayUrl"
Expand All @@ -263,7 +260,6 @@ <h5 class="text-subtitle1 q-my-none">Charges</h5>
>
<q-btn
unelevated
color="gray"
outline
type="a"
@click="refreshBalance(props.row)"
Expand Down

0 comments on commit 0c44024

Please sign in to comment.