From b5fa2bb18edb241eadf84c68128e662545876a39 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 2 Apr 2025 12:38:30 +0200 Subject: [PATCH] fix: fixed cardSummary to use ellipsis and fixed summary cards to flex correctly --- src/components/ui/CardSummary.vue | 6 ++- src/pages/Entry/Card/EntrySummary.vue | 4 +- src/pages/InvoiceIn/Card/InvoiceInSummary.vue | 47 ++++++++++++++-- src/pages/Travel/Card/TravelSummary.vue | 54 +++++++++++++++++-- src/pages/Zone/Card/ZoneSummary.vue | 12 ++--- src/pages/Zone/ZoneList.vue | 2 +- 6 files changed, 107 insertions(+), 18 deletions(-) diff --git a/src/components/ui/CardSummary.vue b/src/components/ui/CardSummary.vue index 2ec6bea78..cca5cabba 100644 --- a/src/components/ui/CardSummary.vue +++ b/src/components/ui/CardSummary.vue @@ -172,6 +172,8 @@ async function fetch() { .value { color: var(--vn-text-color); overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; } } .header { @@ -210,13 +212,15 @@ async function fetch() { .vn-card-content { display: flex; flex-direction: column; + overflow: hidden; + white-space: nowrap; text-overflow: ellipsis; > div { max-height: 70px; } } -@media (min-width: 1010px) { +@media (min-width: 1150px) { .vn-card-group { flex-direction: row; } diff --git a/src/pages/Entry/Card/EntrySummary.vue b/src/pages/Entry/Card/EntrySummary.vue index 37a28968c..986bf0684 100644 --- a/src/pages/Entry/Card/EntrySummary.vue +++ b/src/pages/Entry/Card/EntrySummary.vue @@ -202,13 +202,15 @@ onMounted(async () => { .card-content { display: flex; flex-direction: column; + overflow: hidden; + white-space: nowrap; text-overflow: ellipsis; > div { max-height: 24px; } } -@media (min-width: 1010px) { +@media (min-width: 1350px) { .card-group { flex-direction: row; } diff --git a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue index 74936f00a..e43302f09 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue @@ -219,8 +219,8 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; :url="getLink('basic-data')" :text="t('globals.pageTitles.basicData')" /> -
-
+
+
`#/invoice-in/${entityId.value}/${param}`; :value="entity.supplier?.country?.code" />
-
+
`#/invoice-in/${entityId.value}/${param}`; :value="entity.supplier?.isVies" />
-
+
`#/invoice-in/${entityId.value}/${param}`; :value="invoiceIn?.isBooked" />
-
+
`#/invoice-in/${entityId.value}/${param}`; } } } + +.card-group { + display: flex; + flex-wrap: wrap; +} + +.card-content { + display: flex; + flex-direction: column; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + width: 100%; + margin-bottom: 16px; + + > div { + max-height: 60px; + } +} + +@media (min-width: 768px) { + .card-content { + width: 48%; + margin-right: 2%; + } +} + +@media (min-width: 1350px) { + .card-content { + width: 23%; + margin-right: 2%; + } + + .card-content.last-content { + margin-right: 0; + } +} es: diff --git a/src/pages/Travel/Card/TravelSummary.vue b/src/pages/Travel/Card/TravelSummary.vue index 22e2cff86..79e79a0ad 100644 --- a/src/pages/Travel/Card/TravelSummary.vue +++ b/src/pages/Travel/Card/TravelSummary.vue @@ -291,8 +291,8 @@ onMounted(async () => { :url="getLink('basic-data')" :text="t('globals.pageTitles.basicData')" /> -
-
+
+
{ size="sm" />
-
+
{ size="sm" />
-
+
@@ -432,3 +432,49 @@ onMounted(async () => { + diff --git a/src/pages/Zone/Card/ZoneSummary.vue b/src/pages/Zone/Card/ZoneSummary.vue index 61475b1f6..6fd34d0d3 100644 --- a/src/pages/Zone/Card/ZoneSummary.vue +++ b/src/pages/Zone/Card/ZoneSummary.vue @@ -75,13 +75,13 @@ onMounted(async () => { - + --> diff --git a/src/pages/Zone/ZoneList.vue b/src/pages/Zone/ZoneList.vue index 8d7c4a165..6d2247e30 100644 --- a/src/pages/Zone/ZoneList.vue +++ b/src/pages/Zone/ZoneList.vue @@ -146,7 +146,7 @@ const columns = computed(() => [ { title: t('components.smartCard.viewSummary'), icon: 'preview', - action: (row) => viewSummary(row.id, ZoneSummary), + action: (row) => viewSummary(row.id, ZoneSummary, 'lg-width'), isPrimary: true, }, {