From 7311ed8dc55a9ae88af79e1f66f68de2fbd84d50 Mon Sep 17 00:00:00 2001 From: jokob-sk Date: Tue, 16 Jun 2026 23:12:28 +1000 Subject: [PATCH] WF: fixes --- front/css/app.css | 11 +++++++++++ front/workflowsCore.php | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/front/css/app.css b/front/css/app.css index 4a5b39fa..7f5a43b0 100755 --- a/front/css/app.css +++ b/front/css/app.css @@ -2338,6 +2338,17 @@ textarea[readonly], padding: 5px; } +.workflows .add-target-condition +{ + margin: 10px; + text-align: center; +} + +.workflows .inline-hint +{ + margin: 5px; +} + .workflows { max-width: 800px; diff --git a/front/workflowsCore.php b/front/workflowsCore.php index 4cc02744..4601e628 100755 --- a/front/workflowsCore.php +++ b/front/workflowsCore.php @@ -325,7 +325,7 @@ function generateWorkflowUI(wf, wfIndex) { .append($("", { class: "fa-solid fa-crosshairs" })) .append(` ${getString("WF_Action_target_conditions")}:`); - let $tokenHint = $("
", { class: "text-muted small col-sm-12 col-xs-12" }) + let $tokenHint = $("
", { class: "text-muted inline-hint small col-sm-12 col-xs-12" }) .html(getString("WF_Action_token_hint")); $targetConditionsWrap.append($targetConditionsTitle);