Skip to content

Commit

Permalink
Added delete accent color
Browse files Browse the repository at this point in the history
  • Loading branch information
mecha-cat committed Aug 14, 2024
1 parent d48efaa commit 727e923
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/modals/BoardMessageEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@
</IonItem>

<IonItem button @click="deleteBoardMessage">
<IonIcon :ios="trashIOS" :md="trashMD" slot="start" aria-hidden="true" />
<IonLabel>
<IonIcon :ios="trashIOS" :md="trashMD" slot="start" aria-hidden="true" color="danger"/>
<IonLabel color="danger">
<h3>{{ $t("options:messageBoard.edit.delete.title") }}</h3>
<p>{{ $t("options:messageBoard.edit.delete.desc") }}</p>
</IonLabel>
Expand Down
4 changes: 2 additions & 2 deletions src/modals/FrontingEntryEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@
</IonToggle>
</IonItem>
<IonItem button @click="deleteFrontingEntry">
<IonIcon :ios="trashIOS" :md="trashMD" slot="start" aria-hidden="true" />
<IonLabel>
<IonIcon :ios="trashIOS" :md="trashMD" slot="start" aria-hidden="true" color="danger"/>
<IonLabel color="danger">
<h3>{{ $t("options:frontHistory.edit.delete.title") }}</h3>
<p>{{ $t("options:frontHistory.edit.delete.desc") }}</p>
</IonLabel>
Expand Down
4 changes: 2 additions & 2 deletions src/modals/MemberEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@
</IonLabel>
</IonItem>
<IonItem button v-if="member.uuid" @click="deleteMember">
<IonIcon :ios="trashIOS" :md="trashMD" slot="start" aria-hidden="true" />
<IonLabel>
<IonIcon :ios="trashIOS" :md="trashMD" slot="start" aria-hidden="true" color="danger"/>
<IonLabel color="danger">
<h3>{{ $t("members:edit.delete.title") }}</h3>
<p>{{ $t("members:edit.delete.desc") }}</p>
</IonLabel>
Expand Down
4 changes: 2 additions & 2 deletions src/modals/TagEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@
</IonItem>

<IonItem button v-if="tag.uuid" @click="deleteTag">
<IonIcon :ios="trashIOS" :md="trashMD" slot="start" aria-hidden="true" />
<IonLabel>
<IonIcon :ios="trashIOS" :md="trashMD" slot="start" aria-hidden="true" color="danger"/>
<IonLabel color="danger">
<h3>{{ $t("options:tagManagement.edit.actions.delete.title") }}</h3>
<p>{{ $t("options:tagManagement.edit.actions.delete.desc") }}</p>
</IonLabel>
Expand Down

0 comments on commit 727e923

Please sign in to comment.