From 22b1c539f6dd4be7e4172ee3ae9584467bcc8008 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Fri, 18 Nov 2022 14:00:34 +0800 Subject: [PATCH] * Modify the execution name width problem in the execution list. --- module/execution/css/all.css | 2 ++ module/execution/model.php | 1 + 2 files changed, 3 insertions(+) diff --git a/module/execution/css/all.css b/module/execution/css/all.css index 1c672bb874..a9bb635b20 100644 --- a/module/execution/css/all.css +++ b/module/execution/css/all.css @@ -42,3 +42,5 @@ canvas {height: 28px;} .table thead .c-estimate.text-right, .table thead .c-consumed.text-right, .table thead .c-left.text-right {padding-right: 8px;} +#executionsForm td.c-name {padding-right: 5px;} +#executionsForm td.c-name.delay {padding-right: 55px;} diff --git a/module/execution/model.php b/module/execution/model.php index 129b2aa23c..39ac5f0b96 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -4944,6 +4944,7 @@ class executionModel extends model { $title = " title='{$execution->name}'"; if(!empty($execution->children)) $class .= ' has-child'; + if(isset($execution->delay)) $class .= ' delay'; } if($id == 'teamCount')