* Finish task #74082.

This commit is contained in:
tianshujie
2022-10-31 17:09:59 +08:00
parent e56e4acd07
commit 5543d1ec40
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -9,7 +9,6 @@
.project-type-label.label-outline {width: 50px; min-width: 50px;}
.c-date {width: 120px;}
#projectList td.c-name a > i {color: #A6AAB8;}
#projectList td.c-name .project-name {display: flex; align-items: center;}
#projectList td.c-name .project-name > span,
#projectList td.c-name .project-name > span {flex: none;}
+1 -1
View File
@@ -66,7 +66,7 @@
$projectType = $project->model == 'scrum' ? 'sprint' : $project->model;
if(isset($project->delay)) $suffix = "<span class='label label-danger label-badge'>{$lang->project->statusList['delay']}</span></div>";
if(!empty($suffix)) echo '<div class="project-name has-suffix">';
echo html::a($this->createLink('project', 'index', "projectID=$project->id"), "<i class='icon icon-{$projectType}'></i> " . $project->name, '', "data-app='project' title='{$project->name}'");
echo html::a($this->createLink('project', 'index', "projectID=$project->id"), "<i class='icon icon-{$projectType} text-muted'></i> " . $project->name, '', "data-app='project' title='{$project->name}'");
if(!empty($suffix)) echo $suffix;
?>
</td>