diff --git a/wp/wp-content/themes/medicalalert/dist/app.css b/wp/wp-content/themes/medicalalert/dist/app.css index d99406b2..24f0b0ca 100644 --- a/wp/wp-content/themes/medicalalert/dist/app.css +++ b/wp/wp-content/themes/medicalalert/dist/app.css @@ -11591,9 +11591,18 @@ button[type=submit].single_add_to_cart_button, .f-white { color: white; } +.f-white:hover { + color: white !important; +} .f-white p { color: white; } +.f-white a { + color: white; +} +.f-white a:hover { + color: white !important; +} .f-black { color: #110F24; @@ -12327,9 +12336,9 @@ body { grid-template-rows: 1fr auto 1fr; width: 100%; } -.icon-info-grid-slice-container .icon-card-wrapper .icon-card .icon-img { - max-width: 50px; - height: 50px; +.icon-info-grid-slice-container .icon-card-wrapper .icon-card .icon-img img { + max-width: 37px; + height: auto; } .consumer-brand .icon-info-grid-slice-container .icon-card .title { @@ -12427,8 +12436,29 @@ body { max-width: 300px; } +.product-carousel-slice-container .slick-prev:before, +.product-carousel-slice-container .slick-next:before { + opacity: 0; +} +.product-carousel-slice-container .slick-dots { + bottom: -3px; + left: -112px; +} +.product-carousel-slice-container .slick-dots li button { + padding: 0; +} +.product-carousel-slice-container .slick-dots li button::before { + font-size: 12px; + color: white; + opacity: 0.9; +} +.product-carousel-slice-container .slick-dots .slick-active button::before { + color: #507CFF; +} .product-carousel-slice-container .products .product-slide .product-image img { width: 100%; + background: white; + border-radius: 16px; } .product-carousel-slice-container .products .product-slide .title { color: #036396; diff --git a/wp/wp-content/themes/medicalalert/dist/mix-manifest.json b/wp/wp-content/themes/medicalalert/dist/mix-manifest.json index a1a77299..910175ea 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=273836cfd783ff85befd47a49c8f0d58" + "/app.css": "/app.css?id=761e43848c928eae130fd5702a51fe19" } diff --git a/wp/wp-content/themes/medicalalert/src/scss/global.scss b/wp/wp-content/themes/medicalalert/src/scss/global.scss index 905bae1d..aeda9348 100644 --- a/wp/wp-content/themes/medicalalert/src/scss/global.scss +++ b/wp/wp-content/themes/medicalalert/src/scss/global.scss @@ -446,9 +446,22 @@ button[type="submit"].single_add_to_cart_button, .f-white { color: white; + &:hover { + color: white !important; + } + p { color: white; } + + a { + color: white; + + &:hover { + color: white !important; + } + } + } .f-black { diff --git a/wp/wp-content/themes/medicalalert/src/scss/icon-info-grid.scss b/wp/wp-content/themes/medicalalert/src/scss/icon-info-grid.scss index ccc9be14..41a784e0 100644 --- a/wp/wp-content/themes/medicalalert/src/scss/icon-info-grid.scss +++ b/wp/wp-content/themes/medicalalert/src/scss/icon-info-grid.scss @@ -5,9 +5,9 @@ grid-template-rows: 1fr auto 1fr; width: 100%; - .icon-img { - max-width: 50px; - height: 50px; + .icon-img img { + max-width: 37px; + height: auto; } } diff --git a/wp/wp-content/themes/medicalalert/src/scss/product-carousel.scss b/wp/wp-content/themes/medicalalert/src/scss/product-carousel.scss index c230825b..00cc64ae 100644 --- a/wp/wp-content/themes/medicalalert/src/scss/product-carousel.scss +++ b/wp/wp-content/themes/medicalalert/src/scss/product-carousel.scss @@ -1,14 +1,48 @@ .product-carousel-slice-container { - .products { - .product-slide { - .product-image { - img { - width: 100%; - } - } - .title { - color: $blue; - } + + .slick-prev:before, + .slick-next:before { + opacity: 0; + } + + .slick-dots { + bottom: -3px; + left: -112px; + + li { + button { + padding: 0; + + &::before { + font-size: 12px; + color: white; + opacity: .9; + } + } + } + + .slick-active button::before { + color: #507CFF; + } + } + + .products { + .product-slide { + .g-sky-border { + // position: absolute; + } + + .product-image { + img { + width: 100%; + background: white; + border-radius: 16px; + } + } + + .title { + color: $blue; + } + } } - } } \ No newline at end of file diff --git a/wp/wp-content/themes/medicalalert/tpl/image_aside.tpl b/wp/wp-content/themes/medicalalert/tpl/image_aside.tpl index 43308ed8..3a2512ee 100644 --- a/wp/wp-content/themes/medicalalert/tpl/image_aside.tpl +++ b/wp/wp-content/themes/medicalalert/tpl/image_aside.tpl @@ -1,15 +1,17 @@
-
-
+
+
{{image.alt}}
-
-
- {{{copy}}} +
+
+
+ {{{copy}}} +
diff --git a/wp/wp-content/themes/medicalalert/tpl/phone_contact_with_shortcode.tpl b/wp/wp-content/themes/medicalalert/tpl/phone_contact_with_shortcode.tpl index 8c2784cd..dd1ec1e0 100644 --- a/wp/wp-content/themes/medicalalert/tpl/phone_contact_with_shortcode.tpl +++ b/wp/wp-content/themes/medicalalert/tpl/phone_contact_with_shortcode.tpl @@ -1,6 +1,5 @@ -
- +
diff --git a/wp/wp-content/themes/medicalalert/tpl/product_carousel.tpl b/wp/wp-content/themes/medicalalert/tpl/product_carousel.tpl index fc8d57f2..013f516d 100644 --- a/wp/wp-content/themes/medicalalert/tpl/product_carousel.tpl +++ b/wp/wp-content/themes/medicalalert/tpl/product_carousel.tpl @@ -1,50 +1,52 @@
-
-
-
- {{#each product_slides}} -
-
-
-
- {{image.alt}} -
+
+
+
+
+ {{#each product_slides}} +
+
+
+
+
+ {{image.alt}} +
+
+
+
+
+

{{title}}

+
+
+

{{copy}}

+
+ +
+
+
+ {{/each}}
-
-
-

{{title}}

-
-
-

{{copy}}

-
- -
-
- {{/each}}
-
-
- - + +
- + \ No newline at end of file