From fe483eb491c425f1e58fcaaf549b052db55b1746 Mon Sep 17 00:00:00 2001 From: Luigi Date: Fri, 28 Oct 2022 16:43:08 +0200 Subject: [PATCH] use currentColor instead of hard-coded color for the slider of the Filter By Price block #7130 use currentColor instead of hard-coded color for the slider of the Filte By Price block --- assets/js/base/components/price-slider/style.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/js/base/components/price-slider/style.scss b/assets/js/base/components/price-slider/style.scss index be5f9400f35..e7d61cdd201 100644 --- a/assets/js/base/components/price-slider/style.scss +++ b/assets/js/base/components/price-slider/style.scss @@ -1,5 +1,6 @@ @mixin thumb { + background: $white; background-color: transparent; background-position: 0 0; box-sizing: content-box; @@ -13,7 +14,6 @@ cursor: pointer; z-index: 20; pointer-events: auto; - background: $white; transition: transform 0.2s ease-in-out; -webkit-appearance: none; -moz-appearance: none; @@ -25,6 +25,7 @@ @mixin thumbFocus { background: $gray-900; + border-color: #fff; }