Compute border colours on album indices, too.

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

View File

@ -35,8 +35,12 @@ class AlbumIndex extends SubTemplate
foreach ($photos as $album)
{
$color = isset($album['thumbnail']) ? $album['thumbnail']->bestColor() : 'ccc';
if ($color == 'FFFFFF')
$color = 'ccc';
echo '
<div class="landscape">';
<div class="landscape" style="border-color: #', $color, '">';
if ($this->show_edit_buttons)
echo '

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');