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

19333 UX tweaks part 2 #2718

Merged
merged 1 commit into from
Feb 8, 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
4 changes: 2 additions & 2 deletions auth-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auth-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth-web",
"version": "2.5.2",
"version": "2.5.3",
"appName": "Auth Web",
"sbcName": "SBC Common Components",
"private": true,
Expand Down
10 changes: 8 additions & 2 deletions auth-web/src/components/pay/eft/ShortNameAccountLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
color="link"
left
>
mdi-bank-check
mdi-bank-transfer
</v-icon>
<b>Short Name and Account Linkage</b>
Short Name and Account Linkage
</v-card-title>

<v-card-text
Expand Down Expand Up @@ -70,6 +70,12 @@ export default defineComponent({
background-color: $app-lt-blue;
justify-content: left;
height: 75px;
font-weight: bold;
font-size: 1.125rem;

.v-icon {
font-size: 36px;
}
}

</style>
8 changes: 6 additions & 2 deletions auth-web/src/components/pay/eft/ShortNameTransactions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
class="transaction-list"
itemKey="id"
:loading="state.loading"
loadingText="Loading Transaction Records..."
noDataText="No Transaction Records"
loadingText="Loading Records..."
noDataText="No Records."
:setItems="state.results"
:setHeaders="headers"
:setTableDataOptions="state.options"
Expand Down Expand Up @@ -157,6 +157,10 @@ export default defineComponent({
overflow-y: auto;
}

.v-data-table__empty-wrapper {
background-color: transparent !important; // remove highlight on no records row
}

.base-table__header__title {
padding-bottom: 16px;
top: 75px !important; // prevent fixed header sliding when there is a title
Expand Down
Loading