Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PLA-1779] darkmode fixes #125

Merged
merged 3 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/components/SupportButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
target="_blank"
class="fixed bottom-4 right-6 text-white bg-light-surface-brand text-lg font-medium py-2 px-5 rounded-full flex items-center z-30"
>
<QuestionMarkCircleIcon class="mr-1 w-5 h-5 cursor-pointer" stroke-width="36" />
<QuestionMarkCircleIcon class="mr-1 w-5 h-5 cursor-pointer text-light-content dark:text-dark-content" stroke-width="36" />
<span>Support</span>
</a>
</template>
Expand Down
12 changes: 10 additions & 2 deletions resources/js/components/beam/BeamsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,18 @@
v-if="selectedBeams.length > 0"
class="absolute left-14 top-0 flex h-12 items-center space-x-3 bg-light-surface-primary dark:bg-dark-surface-primary sm:left-12"
>
<Btn dusk="expireAllBtn" class="!px-2 !py-1 text-sm animate-fade-in" @click="expireSelectedBeams"
<Btn
dusk="expireAllBtn"
class="!px-2 !py-1 text-sm animate-fade-in"
@click="expireSelectedBeams"
>{{ `Expire ${selectedBeams.length > 1 ? 'All' : ''} ` }}
</Btn>
<Btn dusk="exportBtn" class="!px-2 !py-1 text-sm animate-fade-in" @click="exportSelectedBeams">Export</Btn>
<Btn
dusk="exportBtn"
class="!px-2 !py-1 text-sm animate-fade-in"
@click="exportSelectedBeams"
>Export</Btn
>
</div>
<table
id="beamsTable"
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/pages/create/CreateCollection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
text="This section determines the rules pertaining to token supply and amount of tokens
available to be minted on future interactions with this collection."
>
<QuestionMarkCircleIcon class="ml-1 w-4 h-4 cursor-pointer" />
<QuestionMarkCircleIcon class="ml-1 w-4 h-4 cursor-pointer text-light-content dark:text-dark-content" />
</Tooltip>
</div>
<FormInput
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/pages/create/CreateFuelTank.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<CollapseCard title="Account Rules" :actions="false" dusk="accountRulesCard">
<template #icon>
<Tooltip text="The fuel tank account rules.">
<QuestionMarkCircleIcon class="ml-1 w-4 h-4 cursor-pointer" />
<QuestionMarkCircleIcon class="ml-1 w-4 h-4 cursor-pointer text-light-content dark:text-dark-content" />
</Tooltip>
</template>
<div class="space-y-6 p-6">
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/pages/create/CreateToken.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
text="Creates a new token in a collection owned by you, the new token will be automatically
minted to the specified recipient account/wallet"
>
<QuestionMarkCircleIcon class="ml-1 w-4 h-4 cursor-pointer" />
<QuestionMarkCircleIcon class="ml-1 w-4 h-4 cursor-pointer text-light-content dark:text-dark-content" />
</Tooltip>
</div>
<a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="space-y-2 pb-3">
<dt class="text-base font-medium text-light-content dark:text-dark-content">Code</dt>
<dd
class="mt-1 text-sm text-light-content-strong dark:text-dark-content-strong break-words"
class="mt-1 flex items-center text-sm text-light-content-strong dark:text-dark-content-strong break-words"
>
{{ item.code }}
<CopyTextIcon :text="item.code" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@
</dd>
</div>

<div class="space-y-2 pt-4 pb-3" v-if="item.flags.length">
<div class="space-y-2 pt-4 pb-3" v-if="item.flags?.length">
<dt class="text-base font-medium text-light-content dark:text-dark-content">Flags</dt>
<Chip v-for="flag in item.flags" :key="flag" :text="flag" :closable="false" class="mr-2" />
</div>
<div class="space-y-2 pt-4 pb-3" v-if="item.claimConditions.length">
<div class="space-y-2 pt-4 pb-3" v-if="item.claimConditions?.length">
<dt class="text-base font-medium text-gray-500">Conditions</dt>
<Chip
v-for="condition in item.claimConditions"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
<dt class="text-base font-medium text-light-content dark:text-dark-content">
Make Asset ID
<Tooltip text="The collection and token ID of the asset being sold.">
<QuestionMarkCircleIcon class="ml-1 w-4 h-4 cursor-pointer" />
<QuestionMarkCircleIcon
class="ml-1 w-4 h-4 cursor-pointer text-light-content dark:text-dark-content"
/>
</Tooltip>
</dt>
<dd class="mt-1 text-sm text-light-content-strong dark:text-dark-content-strong">
Expand All @@ -35,7 +37,9 @@
<dt class="text-base font-medium text-light-content dark:text-dark-content">
Take Asset ID
<Tooltip text="The collection and token ID of the asset being requested.">
<QuestionMarkCircleIcon class="ml-1 w-4 h-4 cursor-pointer" />
<QuestionMarkCircleIcon
class="ml-1 w-4 h-4 cursor-pointer text-light-content dark:text-dark-content"
/>
</Tooltip>
</dt>
<dd class="mt-1 text-sm text-light-content-strong dark:text-dark-content-strong">
Expand Down Expand Up @@ -69,7 +73,9 @@
<dt class="text-base font-medium text-light-content dark:text-dark-content">
Minimum take value
<Tooltip text="The minimum value of the take asset received for the sale to be a success.">
<QuestionMarkCircleIcon class="ml-1 w-4 h-4 cursor-pointer" />
<QuestionMarkCircleIcon
class="ml-1 w-4 h-4 cursor-pointer text-light-content dark:text-dark-content"
/>
</Tooltip>
</dt>
<dd class="mt-1 text-sm text-light-content-strong dark:text-dark-content-strong">
Expand Down
2 changes: 1 addition & 1 deletion resources/js/graphql/query/GetCollectionIds.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default `query GetCollections($after: String, $first: Int) {
export default `query GetCollectionsIds($after: String, $first: Int) {
GetCollections(after: $after, first: $first) {
edges {
node {
Expand Down
Loading