From a38dcd0e919d37e648f81b99b863ea2764163b56 Mon Sep 17 00:00:00 2001 From: uahmed-assecor Date: Thu, 12 Dec 2024 15:49:54 +0100 Subject: [PATCH] Styling changes (#69) * Style tom app Add AdvertisementCard Add routes for create, list of demands apply styles for dackl tabs Add customt dackl tablist Apply auto-load by using watchers * Add stepper to create demands * feat: Move tabs to shared ui components * Moved components and composables to shared * Styled Service Provider step * Styled Create Demand step * Fix minor dropdown positions * Finish Create Demand Styles * Finish Active Loan Page * Fix bugs in Demands * Remove Service component * WIP Demand process layout added status according to the layout created new layout for the demands * Enhance UX by rerouting and change sorting * Minor styling fixes in create demand * Scroll into card with same amount if it is set * Scroll into card after accepting an offer * Add Dackl Header Bar * Add tab in bank app Add tab in bank app Change the background color for the header * wip showing relevant data on tab clicked wip showing relevant data on tab clicked * fix: use red label for terminated demands * Add Reload Button to Page heade * Fix styling for card fix styling for card * Fix Tab states fix tab states for demands * integrated data with dialog box integrated data in dialog box * Add loading skeletons for demands Add loading skeletons for demands * update styling for demand card update styling for demand card * fix disable state of dropdown fix disable state of dropdown * Refactoring remove unused code remove unused code move constatns and enums to another folder * fix title for active loans fix title for active loans * Refactor chip status add chip status component * add test sample for tom/sme app * add test samples to all apps * add jest setup to declare textencoder and so on * move request access body to request access file move request access body to request access file * move code to the service request access * add computed values for the template * fix file path fix file path for status chip component * add test for lisa app - Status chip - Business Data Panel - Demand Processor - Demand Skeleton * Fix no data issue in bank app Fix no data card issue in the bank app * Header background color change Header background color change for lisa and max * update header color for max update header color for max app * add link for tom app add link for tom app * remove underline from link remove underline from link * remove unused code in DemandProcessor remove unused code in DemandProcessor * feat: add package json information * v1.0.0 * feat: add types to package json improved docker environment * v1.0.1 * fix: use 1.0.1 in dependencies * fix: order in github action fixed Need build BEFORE test because we need to have all dist folders. * fix: order in dockerfile fixed Need build BEFORE test because we need to have all dist folders. * fix: ignore dist folder in docker * fix: cache dist folders * fix: ci clean up * Revert "fix: ci clean up" This reverts commit b241e345370f8fe927a595e3f2250258616ba2cc. * fix: fix ci caching * fix: enhance ci.yml using variables * Revert "fix: enhance ci.yml using variables" This reverts commit cafba6fc3bc017576fee7ab81edd4fd25d6bb4f5. * fix: chore in ci.yml * Add redirect on asterisk in tom app Add redirect on asterisk in tom app --------- Co-authored-by: Christian Illies (FINATIX) --- apps/lisa/src/App.vue | 2 +- apps/lisa/src/views/Home.vue | 2 +- apps/max/src/App.vue | 3 ++- apps/tom/src/components/AdvertisementCard.vue | 13 ++++++------- apps/tom/src/views/CreateDemand.vue | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/apps/lisa/src/App.vue b/apps/lisa/src/App.vue index aebf4af7..5cd2cecd 100644 --- a/apps/lisa/src/App.vue +++ b/apps/lisa/src/App.vue @@ -49,7 +49,7 @@ const isLoggedIn = computed(() => { return ((session.webId && !memberOf) || (session.webId && memberOf && session.rdp) ? true : false) }); -const backgroundColor = ref("rgba(237, 240, 243, 1)"); +const backgroundColor = ref("linear-gradient(90deg, #2e399e 0%, #00c6ff 100%)"); // re-use Solid session router.isReady().then(restoreSession) diff --git a/apps/lisa/src/views/Home.vue b/apps/lisa/src/views/Home.vue index 3f107c9a..32e7141d 100644 --- a/apps/lisa/src/views/Home.vue +++ b/apps/lisa/src/views/Home.vue @@ -1,5 +1,5 @@