From: Dominik Csapak <d.csapak@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH yew-comp] tasks: make column sizes a bit more dynamic
Date: Thu, 23 Jan 2025 15:41:02 +0100 [thread overview]
Message-ID: <20250123144104.3849889-1-d.csapak@proxmox.com> (raw)
make the user and status relative in size to the desription
(while keeping the current size as minimum)
This makes it more usable by default when those fields contain longer
text.
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
src/tasks.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/tasks.rs b/src/tasks.rs
index 1b65c8e..9518313 100644
--- a/src/tasks.rs
+++ b/src/tasks.rs
@@ -126,17 +126,17 @@ impl ProxmoxTasks {
})
.into(),
DataTableColumn::new(tr!("User name"))
- .width("150px")
+ .width("minmax(150px, 1fr)")
.render(|item: &TaskListItem| {
html! {&item.user}
})
.into(),
DataTableColumn::new(tr!("Description"))
- .flex(1)
+ .flex(4)
.render(move |item: &TaskListItem| html! {format_upid(&item.upid)})
.into(),
DataTableColumn::new(tr!("Status"))
- .width("200px")
+ .width("minmax(200px, 1fr)")
.render(|item: &TaskListItem| {
let text = item.status.as_deref().unwrap_or("");
html! {text}
--
2.39.5
_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel
next reply other threads:[~2025-01-23 14:41 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-23 14:41 Dominik Csapak [this message]
2025-01-23 14:41 ` [pdm-devel] [PATCH datacenter-manager 1/2] ui: remote selector: update remotes when context changes Dominik Csapak
2025-01-23 14:41 ` [pdm-devel] [PATCH datacenter-manager 2/2] ui: remote tasks: make column sizes a bit more dynamic Dominik Csapak
2025-01-28 15:18 ` [pdm-devel] applied: [PATCH yew-comp] " Thomas Lamprecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250123144104.3849889-1-d.csapak@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=pdm-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox