]> git.proxmox.com Git - ui/proxmox-yew-widget-toolkit.git/commitdiff
widget: input panel: adapt to recent grid column change
authorDominik Csapak <d.csapak@proxmox.com>
Thu, 3 Oct 2024 13:24:50 +0000 (15:24 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 4 Oct 2024 07:12:08 +0000 (09:12 +0200)
we changed the layout to a 5 column grid (one spacer in the middle),
but forgot to add the middle column when we set the label_width or
field_width manually.

add the same middle column as in the css here

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
src/widget/input_panel.rs

index 848ca5465460958c01daf1169aa4bf7367e17448..0ea63c622aa6a2e46f315c652f4a8e30c9677c38 100644 (file)
@@ -346,7 +346,10 @@ impl Into<VTag> for InputPanel {
             );
 
             if self.two_column {
-                column_template = format!("{} {}", column_template, column_template);
+                column_template = format!(
+                    "{} calc(var(--pwt-spacer-4) * 2) {}",
+                    column_template, column_template
+                );
             }
 
             self.set_style("grid-template-columns", column_template.to_string());