WF: fixes

This commit is contained in:
jokob-sk
2026-06-16 23:12:28 +10:00
parent 3e44fac200
commit 7311ed8dc5
2 changed files with 12 additions and 1 deletions

View File

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

View File

@@ -325,7 +325,7 @@ function generateWorkflowUI(wf, wfIndex) {
.append($("<i>", { class: "fa-solid fa-crosshairs" }))
.append(` ${getString("WF_Action_target_conditions")}:`);
let $tokenHint = $("<div>", { class: "text-muted small col-sm-12 col-xs-12" })
let $tokenHint = $("<div>", { class: "text-muted inline-hint small col-sm-12 col-xs-12" })
.html(getString("WF_Action_token_hint"));
$targetConditionsWrap.append($targetConditionsTitle);