Making big project title a link

This commit is contained in:
Dan Cryer 2014-12-03 10:12:33 +00:00
parent 92a5078225
commit 951e3b4827
2 changed files with 7 additions and 1 deletions

View file

@ -80,7 +80,9 @@ foreach($projects as $project):
<div class="small-box bg-<?php print $subcls; ?>">
<div class="inner">
<h3>
<?php print $project->getTitle(); ?>
<a href="<?php print PHPCI_URL; ?>project/view/<?php print $project->getId(); ?>">
<?php print $project->getTitle(); ?>
</a>
</h3>
<p>
<?php if ($failures > 0): ?>

View file

@ -67,6 +67,10 @@
margin-bottom: 20px;
}
.small-box h3 a {
color: #fff;
}
</style>
</head>
<body class="skin-blue">