Compute border colours on album indices, too.

This commit is contained in:
2016-09-04 17:17:51 +02:00
parent 1fe2e5057f
commit 90ed084783
2 changed files with 6 additions and 6 deletions

View File

@@ -139,12 +139,8 @@ class PhotosIndex extends SubTemplate
foreach ($photos as $image)
{
$color = $image->bestColor();
if ($color == 'FFFFFF')
$color = 'ccc';
echo '
<div style="border-color: #', $color, '" class="landscape">';
<div style="border-color: #', $this->color($image), '" class="landscape">';
$this->photo($image, static::TILE_WIDTH, static::TILE_HEIGHT, 'top');