From 67a2bc5005a712b2e6421159ea1afba3ad634bbc Mon Sep 17 00:00:00 2001 From: Michael Danielczok <michael@pcsg.de> Date: Mon, 15 Jul 2024 16:22:23 +0200 Subject: [PATCH] fix: design improvements --- bin/frontend/controls/SimpleCheckout.js | 4 ++++ src/QUI/ERP/Order/SimpleCheckout/Basket.css | 2 +- src/QUI/ERP/Order/SimpleCheckout/Checkout.css | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/frontend/controls/SimpleCheckout.js b/bin/frontend/controls/SimpleCheckout.js index 4d9a00c..8027ece 100644 --- a/bin/frontend/controls/SimpleCheckout.js +++ b/bin/frontend/controls/SimpleCheckout.js @@ -718,6 +718,10 @@ define('package/quiqqer/order-simple-checkout/bin/frontend/controls/SimpleChecko moofx(ListNode).animate({ height: InnerNode.offsetHeight, opacity: 1 + }, { + callback: () => { + ListNode.style.height = null; + } }); }, diff --git a/src/QUI/ERP/Order/SimpleCheckout/Basket.css b/src/QUI/ERP/Order/SimpleCheckout/Basket.css index eab6b0f..d84aa2f 100644 --- a/src/QUI/ERP/Order/SimpleCheckout/Basket.css +++ b/src/QUI/ERP/Order/SimpleCheckout/Basket.css @@ -156,7 +156,7 @@ ul.articleData__fields { .articles-sum { border: none; - float: none; + width: 100%; text-align: right; margin-bottom: 0; font-size: 1rem; diff --git a/src/QUI/ERP/Order/SimpleCheckout/Checkout.css b/src/QUI/ERP/Order/SimpleCheckout/Checkout.css index 36d55a9..7e74258 100644 --- a/src/QUI/ERP/Order/SimpleCheckout/Checkout.css +++ b/src/QUI/ERP/Order/SimpleCheckout/Checkout.css @@ -134,6 +134,8 @@ display: flex; cursor: pointer; align-items: baseline; + border: none; + padding: 0; } .quiqqer-simple-checkout-basket__pay :where(.quiqqer-order-step-checkout-notice label) { -- GitLab