* [pdm-devel] [PATCH datacenter-manager] ui: views: improve navigation icons
@ 2025-11-27 11:22 Dominik Csapak
2025-11-27 12:35 ` [pdm-devel] applied: " Thomas Lamprecht
0 siblings, 1 reply; 2+ messages in thread
From: Dominik Csapak @ 2025-11-27 11:22 UTC (permalink / raw)
To: pdm-devel
use 'plus-square-o' to represent a single view (it looks like a grid),
and 'th-large' (looks like multiple squares) to represent all views.
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
ui/src/main_menu.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ui/src/main_menu.rs b/ui/src/main_menu.rs
index a9827c73..0847c7a2 100644
--- a/ui/src/main_menu.rs
+++ b/ui/src/main_menu.rs
@@ -187,7 +187,7 @@ impl Component for PdmMainMenu {
&mut content,
view.clone(),
&format!("view-{view}"),
- Some("fa fa-eye"),
+ Some("fa fa-plus-square-o"),
move |_| View::new(Some(view.clone().into())).into(),
);
}
@@ -198,7 +198,7 @@ impl Component for PdmMainMenu {
&mut content,
view.clone(),
&format!("view-{view}"),
- Some("fa fa-tachometer"),
+ Some("fa fa-plus-square-o"),
move |_| View::new(Some(view.clone().into())).into(),
);
}
@@ -208,7 +208,7 @@ impl Component for PdmMainMenu {
&mut content,
tr!("Views"),
"views",
- Some("fa fa-tachometer"),
+ Some("fa fa-th-large"),
move |_| ViewGrid::new().into(),
views,
);
--
2.47.3
_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-11-27 12:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-27 11:22 [pdm-devel] [PATCH datacenter-manager] ui: views: improve navigation icons Dominik Csapak
2025-11-27 12:35 ` [pdm-devel] applied: " Thomas Lamprecht
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox