diff options
Diffstat (limited to 'src/pick_list.rs')
| -rw-r--r-- | src/pick_list.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/pick_list.rs b/src/pick_list.rs index c4d8a68..cbe8efa 100644 --- a/src/pick_list.rs +++ b/src/pick_list.rs @@ -2,6 +2,7 @@ use iced_widget::core::{Background, border}; use iced_widget::pick_list::{Catalog, Status, Style, StyleFn}; use super::Theme; +use crate::utils::{disabled_container, disabled_text}; impl Catalog for Theme { type Class<'a> = StyleFn<'a, Self>; @@ -26,7 +27,7 @@ pub fn default(theme: &Theme, status: Status) -> Style { text_color: surface.text, placeholder_color: surface.text_variant, handle_color: surface.text_variant, - background: Background::Color(surface.container.highest), + background: Background::Color(surface.container.high), border: border::rounded(4), }; @@ -41,5 +42,10 @@ pub fn default(theme: &Theme, status: Status) -> Style { border: border::rounded(4), ..active }, + Status::Disabled => Style { + text_color: disabled_text(surface.text), + background: disabled_container(surface.text).into(), + ..active + }, } } |
