From 9974244719a6b00faa602835ddfd607c993fe7d3 Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Tue, 9 Sep 2025 06:55:56 -0400 Subject: [PATCH 1/9] CASH-1437: fix #1 for button shadow --- src/ux-components/list-button/list-button.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ux-components/list-button/list-button.vue b/src/ux-components/list-button/list-button.vue index ebc137866..293f29d73 100644 --- a/src/ux-components/list-button/list-button.vue +++ b/src/ux-components/list-button/list-button.vue @@ -79,7 +79,7 @@ export default { color: $black; font-weight: 500; background: $blue-100; - box-shadow: 0 0 0 1px $blue; + border: 1px solid $blue; } &:checked:focus + .list-button-content { box-shadow: 0 0 0 2.5px $blue; From 7d015707c03af4d9316611850bd5a023aac3da54 Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Tue, 9 Sep 2025 07:33:01 -0400 Subject: [PATCH 2/9] CASH-1437: fix #2 for hop form drop shadow --- public/css/hop-styling.css | 1 + public/scss/hop-styling.scss | 1 + 2 files changed, 2 insertions(+) diff --git a/public/css/hop-styling.css b/public/css/hop-styling.css index da2f3ef22..d46039051 100644 --- a/public/css/hop-styling.css +++ b/public/css/hop-styling.css @@ -53,6 +53,7 @@ body select { background-color: #fff; font-family: Urbanist, Arial, Helvetica, sans-serif; font-weight: 400; + box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2); } body input:focus, body input:focus-visible, body select:focus, diff --git a/public/scss/hop-styling.scss b/public/scss/hop-styling.scss index d3afaf985..9f6711f1c 100644 --- a/public/scss/hop-styling.scss +++ b/public/scss/hop-styling.scss @@ -63,6 +63,7 @@ body { background-color: #fff; font-family: Urbanist, Arial, Helvetica, sans-serif; font-weight: 400; + box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2); &:focus, &:focus-visible { box-shadow: 0 0 0 2.5px #1574a1; From 1b0f4510d14c3e84c94c4b6c08c501a520bfc534 Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Tue, 9 Sep 2025 07:36:37 -0400 Subject: [PATCH 3/9] CASH-1437: fix #3 for heritage parity, color --- src/layouts/estimate/estimate.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/layouts/estimate/estimate.vue b/src/layouts/estimate/estimate.vue index 75ca29ddf..68dbe3426 100644 --- a/src/layouts/estimate/estimate.vue +++ b/src/layouts/estimate/estimate.vue @@ -286,5 +286,6 @@ export default { .select-option { font-family: UrbanistSemibold, Arial, Helvetica, sans-serif; font-weight: 600; + color: $black; } From c73474208a28fa901229912caad2f7bbca28cb24 Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Tue, 9 Sep 2025 07:46:33 -0400 Subject: [PATCH 4/9] CASH-1437: fix #4 for blank background --- src/layouts/quote/quote.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index d453964c4..5feb7ea4a 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -899,6 +899,9 @@ export default { From 737da37e356b9fa0f74d729d80d7bea1627fc77e Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Tue, 9 Sep 2025 09:17:34 -0400 Subject: [PATCH 7/9] CASH-1437: fix #9 for schedule --- .../quote/afterpay-modal-banner/afterpay-modal-banner.vue | 2 +- src/layouts/schedule/schedule.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/quote/afterpay-modal-banner/afterpay-modal-banner.vue b/src/layouts/quote/afterpay-modal-banner/afterpay-modal-banner.vue index d51988ee4..3b0e0042a 100644 --- a/src/layouts/quote/afterpay-modal-banner/afterpay-modal-banner.vue +++ b/src/layouts/quote/afterpay-modal-banner/afterpay-modal-banner.vue @@ -139,7 +139,7 @@ export default { line-height: 2rem; @include media-breakpoint-down(md) { border-bottom: 1px solid; - padding-bottom: .5rem; + padding-bottom: 0.5rem; width: 100%; justify-content: center; diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 192273f49..6f1cf5e8b 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -1794,7 +1794,7 @@ export default { text-underline-offset: 4px; } -.text-block.duration-text-block b { +:deep(.text-block.duration-text-block b) { font-family: UrbanistSemibold; } :deep(.alert-warning.widget-name-AlertRecalNoMobileWidget .alert-heading), From ad5326d7cbd7fdaeb0db83ff5cfb58661ec96290 Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Tue, 9 Sep 2025 09:49:01 -0400 Subject: [PATCH 8/9] CASH-1437: fix #5 for spacing --- src/layouts/schedule/time-slot-question/time-slot-question.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/schedule/time-slot-question/time-slot-question.vue b/src/layouts/schedule/time-slot-question/time-slot-question.vue index 418f7e77b..900db972d 100644 --- a/src/layouts/schedule/time-slot-question/time-slot-question.vue +++ b/src/layouts/schedule/time-slot-question/time-slot-question.vue @@ -15,7 +15,7 @@ From 2c1e1c25d7254722d47f6d21bdedc5ab9d50ecee Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Tue, 9 Sep 2025 09:52:03 -0400 Subject: [PATCH 9/9] CASH-1437: fix #7 for font size --- src/layouts/mobile-details/mobile-details.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/layouts/mobile-details/mobile-details.vue b/src/layouts/mobile-details/mobile-details.vue index bd41dd86c..1c1a48249 100644 --- a/src/layouts/mobile-details/mobile-details.vue +++ b/src/layouts/mobile-details/mobile-details.vue @@ -240,4 +240,7 @@ export default { color: $gray-600; font-family: UrbanistRegular; } +:deep(.caption) { + font-size: 0.875rem; +}