diff --git a/wp/wp-content/themes/medicalalert/acf-json/group_625dc5c18c6d5.json b/wp/wp-content/themes/medicalalert/acf-json/group_625dc5c18c6d5.json index 1ca52bc4..9b158b1d 100644 --- a/wp/wp-content/themes/medicalalert/acf-json/group_625dc5c18c6d5.json +++ b/wp/wp-content/themes/medicalalert/acf-json/group_625dc5c18c6d5.json @@ -6468,15 +6468,15 @@ }, "choices": { "white": "White", - "pink": "Pink", - "red": "Red", - "light-blue": "Light Blue" + "light-blue": "Light Blue", + "sky-red": "Blue Red Gradient" }, "default_value": "white", - "allow_null": 0, - "multiple": 0, - "ui": 0, "return_format": "value", + "multiple": 0, + "allow_null": 0, + "allow_in_bindings": 1, + "ui": 0, "ajax": 0, "placeholder": "" }, @@ -8380,5 +8380,5 @@ "active": true, "description": "", "show_in_rest": 0, - "modified": 1734566269 + "modified": 1734570550 } diff --git a/wp/wp-content/themes/medicalalert/dist/app.css b/wp/wp-content/themes/medicalalert/dist/app.css index 832f9c77..e2170929 100644 --- a/wp/wp-content/themes/medicalalert/dist/app.css +++ b/wp/wp-content/themes/medicalalert/dist/app.css @@ -11700,9 +11700,18 @@ button[type=submit].single_add_to_cart_button, .bg-color-sky-red { background: linear-gradient(90deg, #3399ff 0%, #cc0133 100%); } +.bg-color-sky-red h1, .bg-color-sky-red .headline-largest, .bg-color-sky-red .h1 { + color: white !important; +} .bg-color-sky-red h2, .bg-color-sky-red .headline-large, .bg-color-sky-red .h2 { color: white !important; } +.bg-color-sky-red h3, .bg-color-sky-red .headline-standard, .bg-color-sky-red .h3 { + color: white !important; +} +.bg-color-sky-red strong { + color: white !important; +} .bg-color-sky-red p { color: white !important; } @@ -11837,25 +11846,25 @@ button[type=submit].single_add_to_cart_button, color: #00447C; } -.radial-container-col3-card .sonar { +.col3-card-slice-container .radial { + left: 0; width: 250px; top: -646px; } -.radial-container-col3-card .sonar svg { +.col3-card-slice-container .radial svg { width: 100%; max-width: 250px; } @media (min-width: 768px) { - .radial-container-col3-card .sonar { - top: -705px; + .col3-card-slice-container .radial { + top: -666px; } } @media (min-width: 992px) { - .radial-container-col3-card .sonar { - top: -745px; + .col3-card-slice-container .radial { + top: -706px; } } - .col3-card-slice-container .col3-card-wrapper { z-index: 1; } @@ -12306,13 +12315,11 @@ h6, .h6 { .products-list-slice-container .products-list-item .bg-white { border-radius: 16px; } -.products-list-slice-container .products-list-item .products-list-img { - max-width: 50%; -} -@media (min-width: 992px) { - .products-list-slice-container .products-list-item .products-list-img { - max-width: 70%; - } +.products-list-slice-container .products-list-item .img-container { + height: 250px; + display: flex; + align-items: center; + justify-content: center; } .products-list-slice-container .products-list-item .line-sm { width: 57px; @@ -12325,6 +12332,7 @@ h6, .h6 { .products-list-slice-container .products-list-item .products-list-item-inner-wrapper .products-list-title { color: #000066; } + .simple-content-slice-container { overflow: hidden; } diff --git a/wp/wp-content/themes/medicalalert/dist/mix-manifest.json b/wp/wp-content/themes/medicalalert/dist/mix-manifest.json index 141995f5..fd4527aa 100644 --- a/wp/wp-content/themes/medicalalert/dist/mix-manifest.json +++ b/wp/wp-content/themes/medicalalert/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=def087bfee86b3ced20472c4fd21ee05", - "/app.css": "/app.css?id=f939fc4646ec2c4f5fa616ca656f10f2" + "/app.css": "/app.css?id=7aa0119c41bf190070a47379bae56e5e" } diff --git a/wp/wp-content/themes/medicalalert/src/scss/col3-card.scss b/wp/wp-content/themes/medicalalert/src/scss/col3-card.scss index b073f34a..2cf63731 100644 --- a/wp/wp-content/themes/medicalalert/src/scss/col3-card.scss +++ b/wp/wp-content/themes/medicalalert/src/scss/col3-card.scss @@ -1,27 +1,25 @@ -.radial-container-col3-card { - .sonar { +.col3-card-slice-container { + .radial { + left: 0; + width: 250px; + svg { width: 100%; max-width: 250px; } @include media-breakpoint-up(xs) { - width: 250px; top: -646px; } @include media-breakpoint-up(md) { - top: -705px; + top: -666px; } @include media-breakpoint-up(lg) { - top: -745px; + top: -706px; } } -} - -.col3-card-slice-container { - .col3-card-wrapper { z-index: 1; diff --git a/wp/wp-content/themes/medicalalert/src/scss/global.scss b/wp/wp-content/themes/medicalalert/src/scss/global.scss index 0cd0e2f4..9f5b2bdb 100644 --- a/wp/wp-content/themes/medicalalert/src/scss/global.scss +++ b/wp/wp-content/themes/medicalalert/src/scss/global.scss @@ -561,10 +561,22 @@ button[type="submit"].single_add_to_cart_button, .bg-color-sky-red { background: linear-gradient(90deg, rgba(51, 153, 255, 1) 0%, rgba(204, 1, 51, 1) 100%); + h1 { + color: white !important; + } + h2 { color: white !important; } + h3 { + color: white !important; + } + + strong { + color: white !important; + } + p { color: white !important; } diff --git a/wp/wp-content/themes/medicalalert/src/scss/products-list.scss b/wp/wp-content/themes/medicalalert/src/scss/products-list.scss index 309dcfbf..2b78f75f 100644 --- a/wp/wp-content/themes/medicalalert/src/scss/products-list.scss +++ b/wp/wp-content/themes/medicalalert/src/scss/products-list.scss @@ -20,12 +20,11 @@ // min-height: 42em; } - .products-list-img { - max-width: 50%; - - @include media-breakpoint-up(lg) { - max-width: 70%; - } + .img-container { + height: 250px; + display: flex; + align-items: center; + justify-content: center; } .line-sm { @@ -36,17 +35,11 @@ .products-list-item-inner-wrapper { background-color: $white; - // padding: 20px; - - // @include media-breakpoint-up(lg) { - // padding: 33px 25px 16px; - // } .products-list-title { color: $consumer-primary; } - .products-list-link {} } } } \ No newline at end of file diff --git a/wp/wp-content/themes/medicalalert/tpl/col3_card.tpl b/wp/wp-content/themes/medicalalert/tpl/col3_card.tpl index 3441ec2a..1689e797 100644 --- a/wp/wp-content/themes/medicalalert/tpl/col3_card.tpl +++ b/wp/wp-content/themes/medicalalert/tpl/col3_card.tpl @@ -1,80 +1,81 @@ -
- {{#if radial_graphic}} -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- {{/if}} -
-
-
- {{#each image_card}} -
-
-
- {{image.alt}} -
-
-

{{title}}

-
{{{copy}}}
- {{#if link}} - {{link.title}} - {{/if}} -
+
+ +
+ {{#if radial_graphic}} +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ {{/if}} +
+ {{#each image_card}} +
+
+
+ {{image.alt}} +
+
+

{{title}}

+
{{{copy}}}
+ {{#if link}} + {{link.title}} + {{/if}}
- {{/each}}
+ {{/each}}
-
-
+
+ +
\ No newline at end of file diff --git a/wp/wp-content/themes/medicalalert/tpl/products_list.tpl b/wp/wp-content/themes/medicalalert/tpl/products_list.tpl index 253a81c5..6b21e335 100644 --- a/wp/wp-content/themes/medicalalert/tpl/products_list.tpl +++ b/wp/wp-content/themes/medicalalert/tpl/products_list.tpl @@ -7,8 +7,8 @@
-
- {{image.alt}} +
+ {{image.alt}}
diff --git a/wp/wp-content/themes/medicalalert/tpl/video_copy.tpl b/wp/wp-content/themes/medicalalert/tpl/video_copy.tpl index 9f5dee05..4a09caad 100644 --- a/wp/wp-content/themes/medicalalert/tpl/video_copy.tpl +++ b/wp/wp-content/themes/medicalalert/tpl/video_copy.tpl @@ -18,7 +18,6 @@ -