From 6bf9e1917c59df53d77dad3ff9cc0b33782f91a8 Mon Sep 17 00:00:00 2001 From: Iniubong Obonguko Date: Sat, 17 May 2025 01:51:50 +0000 Subject: [PATCH] fix(Dropdown): make p-input-filled styling work properly --- theme-base/components/input/_dropdown.scss | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/theme-base/components/input/_dropdown.scss b/theme-base/components/input/_dropdown.scss index d4130ab..260b21a 100644 --- a/theme-base/components/input/_dropdown.scss +++ b/theme-base/components/input/_dropdown.scss @@ -250,3 +250,21 @@ input.p-dropdown-label { } } } + +.p-input-filled { + .p-dropdown { + background: $inputFilledBg; + + &:not(.p-disabled):hover { + background-color: $inputFilledHoverBg; + } + + &:not(.p-disabled).p-focus { + background-color: $inputFilledFocusBg; + + .p-inputtext { + background-color: transparent; + } + } + } +} \ No newline at end of file