Skip to content

Commit

Permalink
Fix transparent button for v-card-actions (#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sai-CITZ authored Oct 26, 2023
1 parent 948cccf commit de6a9dd
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
5 changes: 3 additions & 2 deletions app/frontend/src/components/forms/PrintOptions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,10 @@ export default {
<template #activator="{ props }">
<v-btn
id="file-input-submit"
color="primary"
class="btn-file-input-submit"
variant="flat"
class="btn-file-input-submit px-4"
:disabled="!templateForm.files"
color="primary"
:loading="loading"
v-bind="props"
@click="generate"
Expand Down
1 change: 1 addition & 0 deletions app/frontend/src/components/forms/manage/ShareForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ export default {
:class="{ 'dir-rtl': isRTL }"
class="mb-5 close-dlg"
color="primary"
variant="flat"
@click="dialog = false"
>
<span :lang="lang">{{ $t('trans.shareForm.close') }}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,12 @@ export default {
</v-card-text>

<v-card-actions class="justify-center">
<v-btn class="mb-5 close-dlg" color="primary" @click="dialog = false">
<v-btn
class="mb-5 close-dlg"
color="primary"
variant="flat"
@click="dialog = false"
>
<span :lang="lang">{{ $t('trans.auditHistory.close') }}</span>
</v-btn>
</v-card-actions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,12 @@ export default {
</v-card-text>

<v-card-actions class="justify-center">
<v-btn class="mb-5 close-dlg" color="primary" @click="dialog = false">
<v-btn
class="mb-5 close-dlg"
color="primary"
variant="flat"
@click="dialog = false"
>
<span :lang="lang">
{{ $t('trans.manageSubmissionUsers.close') }}</span
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,7 @@ export default {
class="mb-5 close-dlg"
:class="{ 'dir-rtl': isRTL }"
color="primary"
variant="flat"
@click="historyDialog = false"
>
<span :lang="lang">{{
Expand Down

0 comments on commit de6a9dd

Please sign in to comment.