mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-11 21:00:35 +00:00
14 lines
505 B
Rust
14 lines
505 B
Rust
|
use gpui::{InteractiveElement, SharedString, Styled};
|
||
|
|
||
|
pub trait VisibleOnHover: InteractiveElement + Styled + Sized {
|
||
|
/// Sets the element to only be visible when the specified group is hovered.
|
||
|
///
|
||
|
/// Pass `""` as the `group_name` to use the global group.
|
||
|
fn visible_on_hover(self, group_name: impl Into<SharedString>) -> Self {
|
||
|
self.invisible()
|
||
|
.group_hover(group_name, |style| style.visible())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<E: InteractiveElement + Styled> VisibleOnHover for E {}
|