Reduce intensity of project panel icons
This commit is contained in:
parent
47eaf1abd8
commit
d099d35948
1 changed files with 4 additions and 2 deletions
|
@ -1389,7 +1389,9 @@ impl ProjectPanel {
|
||||||
entry_id: *entry_id,
|
entry_id: *entry_id,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.drag_over::<ProjectEntryId>(|style| style.bg(cx.theme().colors().ghost_element_hover))
|
.drag_over::<ProjectEntryId>(|style| {
|
||||||
|
style.bg(cx.theme().colors().drop_target_background)
|
||||||
|
})
|
||||||
.on_drop(cx.listener(move |this, dragged_id: &ProjectEntryId, cx| {
|
.on_drop(cx.listener(move |this, dragged_id: &ProjectEntryId, cx| {
|
||||||
this.move_entry(*dragged_id, entry_id, kind.is_file(), cx);
|
this.move_entry(*dragged_id, entry_id, kind.is_file(), cx);
|
||||||
}))
|
}))
|
||||||
|
@ -1399,7 +1401,7 @@ impl ProjectPanel {
|
||||||
.indent_step_size(px(settings.indent_size))
|
.indent_step_size(px(settings.indent_size))
|
||||||
.selected(is_selected)
|
.selected(is_selected)
|
||||||
.child(if let Some(icon) = &icon {
|
.child(if let Some(icon) = &icon {
|
||||||
div().child(IconElement::from_path(icon.to_string()))
|
div().child(IconElement::from_path(icon.to_string()).color(Color::Muted))
|
||||||
} else {
|
} else {
|
||||||
div()
|
div()
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue