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);