From e4042292cccfdb4b9888902451c803e283536cf5 Mon Sep 17 00:00:00 2001 From: ghiscoding Date: Wed, 14 Feb 2024 17:18:37 -0500 Subject: [PATCH] fix(styling): ms-select filter should use same color as other filters --- examples/vite-demo-vanilla-bundle/src/material-styles.scss | 4 ++-- packages/common/src/styles/_variables.scss | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/vite-demo-vanilla-bundle/src/material-styles.scss b/examples/vite-demo-vanilla-bundle/src/material-styles.scss index f47bad252..5b6a8af50 100644 --- a/examples/vite-demo-vanilla-bundle/src/material-styles.scss +++ b/examples/vite-demo-vanilla-bundle/src/material-styles.scss @@ -99,8 +99,8 @@ font-weight: bold; } .search-filter.filled .ms-choice { - box-shadow: inset 0 0 0 1px #55B876; - border: 1px solid #ccc; + box-shadow: none; + border: 1px solid #55B876; span { font-weight: normal; color: #555; diff --git a/packages/common/src/styles/_variables.scss b/packages/common/src/styles/_variables.scss index 77f61cc88..103863b12 100644 --- a/packages/common/src/styles/_variables.scss +++ b/packages/common/src/styles/_variables.scss @@ -783,6 +783,7 @@ $slick-multiselect-select-all-text-color: darken($slick-primar $slick-multiselect-select-all-text-hover-color: transparent !default; // override some multiple-select SASS variables +$ms-choice-border: $slick-multiselect-input-filter-border; $ms-drop-list-padding: $slick-multiselect-dropdown-list-padding; $ms-drop-list-item-align-items: center; $ms-drop-list-item-display: flex;