* Finish task #42377.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
.c-id {width: 50px !important;}
|
||||
.c-branch, .c-module, .c-os {width: 120px;}
|
||||
.c-execution {width: 130px;}
|
||||
.c-build, .c-browser, .c-keywords, .c-other {width: 100px;}
|
||||
.c-build, .c-browser, .c-keywords {width: 100px;}
|
||||
.c-steps {width: 150px;}
|
||||
.c-pri, .c-severity {width: 80px;}
|
||||
|
||||
@@ -4,6 +4,6 @@
|
||||
.c-id {width: 50px !important;}
|
||||
.c-branch, .c-module, .c-os {width: 120px;}
|
||||
.c-execution {width: 130px;}
|
||||
.c-build, .c-browser, .c-keywords, .c-other {width: 100px;}
|
||||
.c-build, .c-browser, .c-keywords {width: 100px;}
|
||||
.c-steps, .c-title, .c-plan, .c-assigned, .c-resolution {width: 150px;}
|
||||
.c-pri, .c-severity {width: 80px;}
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
<th class='c-keywords<?php echo zget($visibleFields, 'keywords', ' hidden') . zget($requiredFields, 'keywords', '', ' required');?>'><?php echo $lang->bug->keywords;?></th>
|
||||
<?php
|
||||
$extendFields = $this->bug->getFlowExtendFields();
|
||||
foreach($extendFields as $extendField) echo "<th class='c-other'>{$extendField->name}</th>";
|
||||
foreach($extendFields as $extendField) echo "<th class='c-extend'>{$extendField->name}</th>";
|
||||
?>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@@ -66,7 +66,7 @@
|
||||
<th class='c-resolution<?php echo zget($visibleFields, 'resolution', ' hidden')?>'><?php echo $lang->bug->resolutionAB;?></th>
|
||||
<?php
|
||||
$extendFields = $this->bug->getFlowExtendFields();
|
||||
foreach($extendFields as $extendField) echo "<th class='c-other'>{$extendField->name}</th>";
|
||||
foreach($extendFields as $extendField) echo "<th class='c-extend'>{$extendField->name}</th>";
|
||||
?>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
<th class='c-keywords<?php echo zget($visibleFields, 'keywords', ' hidden') . zget($requiredFields, 'keywords', '', ' required');?>'><?php echo $lang->story->keywords;?></th>
|
||||
<?php
|
||||
$extendFields = $this->story->getFlowExtendFields();
|
||||
foreach($extendFields as $extendField) echo "<th class='c-other'>{$extendField->name}</th>";
|
||||
foreach($extendFields as $extendField) echo "<th class='c-extend'>{$extendField->name}</th>";
|
||||
?>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@@ -61,7 +61,7 @@ foreach(explode(',', $showFields) as $field)
|
||||
<th class='c-keywords<?php echo zget($visibleFields, 'keywords', ' hidden')?>'><?php echo $lang->story->keywords;?></th>
|
||||
<?php
|
||||
$extendFields = $this->story->getFlowExtendFields();
|
||||
foreach($extendFields as $extendField) echo "<th class='c-other'>{$extendField->name}</th>";
|
||||
foreach($extendFields as $extendField) echo "<th class='c-extend'>{$extendField->name}</th>";
|
||||
?>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@@ -71,7 +71,7 @@ js::set('dittoNotice', $dittoNotice);
|
||||
<th class='c-reason<?php echo zget($visibleFields, 'closedReason', ' hidden') . zget($requiredFields, 'closedReason', '', ' required');?>'><?php echo $lang->task->closedReason;?></th>
|
||||
<?php
|
||||
$extendFields = $this->task->getFlowExtendFields();
|
||||
foreach($extendFields as $extendField) echo "<th class='c-other'>{$extendField->name}</th>";
|
||||
foreach($extendFields as $extendField) echo "<th class='c-extend'>{$extendField->name}</th>";
|
||||
?>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@@ -66,7 +66,7 @@
|
||||
<th class='c-review<?php echo zget($visibleFields, 'review', ' hidden') . zget($requiredFields, 'review', '', ' required')?>'><?php echo $lang->testcase->review;?></th>
|
||||
<?php
|
||||
$extendFields = $this->testcase->getFlowExtendFields();
|
||||
foreach($extendFields as $extendField) echo "<th class='c-other'>{$extendField->name}</th>";
|
||||
foreach($extendFields as $extendField) echo "<th class='c-extend'>{$extendField->name}</th>";
|
||||
?>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
<th class='c-stage<?php echo zget($visibleFields, 'stage', ' hidden') . zget($requiredFields, 'stage', '', ' required');?>'><?php echo $lang->testcase->stage;?></th>
|
||||
<?php
|
||||
$extendFields = $this->testcase->getFlowExtendFields();
|
||||
foreach($extendFields as $extendField) echo "<th class='c-other'>{$extendField->name}</th>";
|
||||
foreach($extendFields as $extendField) echo "<th class='c-extend'>{$extendField->name}</th>";
|
||||
?>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@@ -41,7 +41,7 @@ $(function()
|
||||
<th><?php echo $lang->testcase->precondition?></th>
|
||||
<?php if(!empty($appendFields)):?>
|
||||
<?php foreach($appendFields as $appendField):?>
|
||||
<th class='c-other'><?php echo $lang->testcase->{$appendField->field}?></th>
|
||||
<th class='c-extend'><?php echo $lang->testcase->{$appendField->field}?></th>
|
||||
<?php endforeach;?>
|
||||
<?php endif;?>
|
||||
<th class='c-step'>
|
||||
|
||||
@@ -57,7 +57,7 @@ a.showMoreImage:hover {opacity: 1;}
|
||||
.c-estimate {width: 70px;}
|
||||
.c-number, .c-stage, .c-role, .c-estimate-box, .c-result {width: 80px;}
|
||||
.c-company, .c-budget {width: 80px;}
|
||||
.c-status, .c-type, .c-user, .c-date, .c-encode, .c-resolution, .c-pri-box, .c-other {width: 100px;}
|
||||
.c-status, .c-type, .c-user, .c-date, .c-encode, .c-resolution, .c-pri-box, .c-extend {width: 100px;}
|
||||
.c-object-type {width: 130px;}
|
||||
.c-full-date, .c-mobile, .c-email, .c-text, .c-subject, .c-assigned-box, .c-user-box {width: 150px;}
|
||||
.c-module, .c-date-box {width: 180px;}
|
||||
|
||||
Reference in New Issue
Block a user