Move Run/Dry Run/Log buttons below description line
This commit is contained in:
@@ -41,7 +41,8 @@
|
|||||||
.vv-name-cron { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
|
.vv-name-cron { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
|
||||||
.vv-job-label { flex: 1; font-size: 14px; min-width: 80px;
|
.vv-job-label { flex: 1; font-size: 14px; min-width: 80px;
|
||||||
white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
||||||
.vv-job-desc { font-size: 12px; color: #555; margin: 2px 0 6px 0;
|
.vv-job-actions { display: flex; align-items: center; gap: 8px; padding-left: 44px; margin-top: 6px; }
|
||||||
|
.vv-job-desc { font-size: 12px; color: #555; margin: 3px 0 2px 0;
|
||||||
padding-left: 44px; box-sizing: border-box; width: 100%;
|
padding-left: 44px; box-sizing: border-box; width: 100%;
|
||||||
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|
||||||
cursor: default; }
|
cursor: default; }
|
||||||
|
|||||||
@@ -28,10 +28,6 @@ $tree = vv_job_tree();
|
|||||||
<input type="text" class="vv-cron" value="<?= htmlspecialchars($orch['cron']) ?>"
|
<input type="text" class="vv-cron" value="<?= htmlspecialchars($orch['cron']) ?>"
|
||||||
placeholder="cron expression">
|
placeholder="cron expression">
|
||||||
</div>
|
</div>
|
||||||
<button class="vv-btn-sm vv-run-btn" onclick="vvRunJob(this)">▶ Run</button>
|
|
||||||
<button class="vv-btn-sm vv-dry-btn" onclick="vvDryRun(this)">▶ Dry Run</button>
|
|
||||||
<button class="vv-btn-sm" onclick="vvSelectLog(this)">Log</button>
|
|
||||||
<span class="vv-job-dot"></span>
|
|
||||||
<span class="vv-job-status"></span>
|
<span class="vv-job-status"></span>
|
||||||
<?php if (!empty($orch['children'])): ?>
|
<?php if (!empty($orch['children'])): ?>
|
||||||
<button class="vv-advanced-toggle" onclick="vvToggleAdvanced(this)">Advanced ▸</button>
|
<button class="vv-advanced-toggle" onclick="vvToggleAdvanced(this)">Advanced ▸</button>
|
||||||
@@ -40,6 +36,12 @@ $tree = vv_job_tree();
|
|||||||
<?php if (!empty($orch['desc'])): ?>
|
<?php if (!empty($orch['desc'])): ?>
|
||||||
<div class="vv-job-desc" title="<?= htmlspecialchars($orch['desc']) ?>"><?= htmlspecialchars($orch['desc']) ?></div>
|
<div class="vv-job-desc" title="<?= htmlspecialchars($orch['desc']) ?>"><?= htmlspecialchars($orch['desc']) ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
<div class="vv-job-actions">
|
||||||
|
<button class="vv-btn-sm vv-run-btn" onclick="vvRunJob(this)">▶ Run</button>
|
||||||
|
<button class="vv-btn-sm vv-dry-btn" onclick="vvDryRun(this)">▶ Dry Run</button>
|
||||||
|
<button class="vv-btn-sm" onclick="vvSelectLog(this)">Log</button>
|
||||||
|
<span class="vv-job-dot"></span>
|
||||||
|
</div>
|
||||||
|
|
||||||
<?php if (!empty($orch['children'])): ?>
|
<?php if (!empty($orch['children'])): ?>
|
||||||
<div class="vv-children" style="display:none;">
|
<div class="vv-children" style="display:none;">
|
||||||
@@ -57,15 +59,17 @@ $tree = vv_job_tree();
|
|||||||
<input type="text" class="vv-cron" value="<?= htmlspecialchars($child['cron']) ?>"
|
<input type="text" class="vv-cron" value="<?= htmlspecialchars($child['cron']) ?>"
|
||||||
placeholder="cron expression">
|
placeholder="cron expression">
|
||||||
</div>
|
</div>
|
||||||
<button class="vv-btn-sm vv-run-btn" onclick="vvRunJob(this)">▶ Run</button>
|
|
||||||
<button class="vv-btn-sm vv-dry-btn" onclick="vvDryRun(this)">▶ Dry Run</button>
|
|
||||||
<button class="vv-btn-sm" onclick="vvSelectLog(this)">Log</button>
|
|
||||||
<span class="vv-job-dot"></span>
|
|
||||||
<span class="vv-job-status"></span>
|
<span class="vv-job-status"></span>
|
||||||
</div>
|
</div>
|
||||||
<?php if (!empty($child['desc'])): ?>
|
<?php if (!empty($child['desc'])): ?>
|
||||||
<div class="vv-job-desc" title="<?= htmlspecialchars($child['desc']) ?>"><?= htmlspecialchars($child['desc']) ?></div>
|
<div class="vv-job-desc" title="<?= htmlspecialchars($child['desc']) ?>"><?= htmlspecialchars($child['desc']) ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
<div class="vv-job-actions">
|
||||||
|
<button class="vv-btn-sm vv-run-btn" onclick="vvRunJob(this)">▶ Run</button>
|
||||||
|
<button class="vv-btn-sm vv-dry-btn" onclick="vvDryRun(this)">▶ Dry Run</button>
|
||||||
|
<button class="vv-btn-sm" onclick="vvSelectLog(this)">Log</button>
|
||||||
|
<span class="vv-job-dot"></span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user