Merge branch 'themetests' of https://github.com/fabrixxm/friendika into fabrixxm-themetests
This commit is contained in:
commit
079e63bba9
|
@ -831,7 +831,7 @@ function photos_content(&$a) {
|
||||||
$a->set_pager_itemspage(20);
|
$a->set_pager_itemspage(20);
|
||||||
}
|
}
|
||||||
|
|
||||||
$r = q("SELECT `resource-id`, `id`, `filename`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` = '%s'
|
$r = q("SELECT `resource-id`, `id`, `filename`, max(`scale`) AS `scale`, `desc` FROM `photo` WHERE `uid` = %d AND `album` = '%s'
|
||||||
$sql_extra GROUP BY `resource-id` ORDER BY `created` DESC LIMIT %d , %d",
|
$sql_extra GROUP BY `resource-id` ORDER BY `created` DESC LIMIT %d , %d",
|
||||||
intval($owner_uid),
|
intval($owner_uid),
|
||||||
dbesc($album),
|
dbesc($album),
|
||||||
|
@ -873,7 +873,8 @@ function photos_content(&$a) {
|
||||||
'$photolink' => $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id'],
|
'$photolink' => $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id'],
|
||||||
'$phototitle' => t('View Photo'),
|
'$phototitle' => t('View Photo'),
|
||||||
'$imgsrc' => $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] . '.jpg',
|
'$imgsrc' => $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] . '.jpg',
|
||||||
'$imgalt' => $rr['filename']
|
'$imgalt' => $rr['filename'],
|
||||||
|
'$desc'=> $rr['desc']
|
||||||
));
|
));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
|
<div class="wall-item-outside-wrapper$indent wallwall" id="wall-item-outside-wrapper-$id" >
|
||||||
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
||||||
|
<span class="wall-item-info" id="wall-item-info-$id">
|
||||||
<div class="wall-item-photo-wrapper" id="wall-item-ownerphoto-wrapper-$id" >
|
<div class="wall-item-photo-wrapper" id="wall-item-ownerphoto-wrapper-$id" >
|
||||||
<a href="$owner_url" title="Gehe zum Profil von $owner_name" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
<a href="$owner_url" title="Gehe zum Profil von $owner_name" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
||||||
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" height="80" width="80" alt="$owner_name" /></a>
|
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" height="80" width="80" alt="$owner_name" /></a>
|
||||||
|
@ -9,7 +10,6 @@
|
||||||
<a href="$profile_url" title="Betrachte das Profil von $name" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
<a href="$profile_url" title="Betrachte das Profil von $name" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||||
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
|
<div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
|
||||||
$lock
|
$lock
|
||||||
<a href="$profile_url" title="Betrachte das Profil von $name" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> to <a href="$owner_url" title="View $owner_name's profile" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> via Wall-To-Wall:<br />
|
<a href="$profile_url" title="Betrachte das Profil von $name" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> to <a href="$owner_url" title="View $owner_name's profile" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> via Wall-To-Wall:<br />
|
||||||
|
@ -17,13 +17,16 @@
|
||||||
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
||||||
$vote
|
$vote
|
||||||
</div>
|
</div>
|
||||||
|
</span>
|
||||||
<div class="wall-item-content" id="wall-item-content-$id" >
|
<div class="wall-item-content" id="wall-item-content-$id" >
|
||||||
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
||||||
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="wall-item-tools" id="wall-item-tools-$id">
|
||||||
$plink
|
$plink
|
||||||
$drop
|
$drop
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="wall-item-wrapper-end"></div>
|
<div class="wall-item-wrapper-end"></div>
|
||||||
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
||||||
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
|
<div class="wall-item-outside-wrapper$indent wallwall" id="wall-item-outside-wrapper-$id" >
|
||||||
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
||||||
|
<span class="wall-item-info" id="wall-item-info-$id">
|
||||||
<div class="wall-item-photo-wrapper" id="wall-item-ownerphoto-wrapper-$id" >
|
<div class="wall-item-photo-wrapper" id="wall-item-ownerphoto-wrapper-$id" >
|
||||||
<a href="$owner_url" title="View $owner_name's profile" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
<a href="$owner_url" title="View $owner_name's profile" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
||||||
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" height="80" width="80" alt="$owner_name" /></a>
|
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" height="80" width="80" alt="$owner_name" /></a>
|
||||||
|
@ -9,7 +10,6 @@
|
||||||
<a href="$profile_url" title="View $name's profile" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
<a href="$profile_url" title="View $name's profile" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||||
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
|
<div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
|
||||||
$lock
|
$lock
|
||||||
<a href="$profile_url" title="View $name's profile" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> to <a href="$owner_url" title="View $owner_name's profile" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> via Wall-To-Wall:<br />
|
<a href="$profile_url" title="View $name's profile" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> to <a href="$owner_url" title="View $owner_name's profile" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> via Wall-To-Wall:<br />
|
||||||
|
@ -17,13 +17,16 @@
|
||||||
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
||||||
$vote
|
$vote
|
||||||
</div>
|
</div>
|
||||||
|
</span>
|
||||||
<div class="wall-item-content" id="wall-item-content-$id" >
|
<div class="wall-item-content" id="wall-item-content-$id" >
|
||||||
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
||||||
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="wall-item-tools" id="wall-item-tools-$id">
|
||||||
$plink
|
$plink
|
||||||
$drop
|
$drop
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="wall-item-wrapper-end"></div>
|
<div class="wall-item-wrapper-end"></div>
|
||||||
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
||||||
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
|
<div class="wall-item-outside-wrapper$indent wallwall" id="wall-item-outside-wrapper-$id" >
|
||||||
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
||||||
|
<span class="wall-item-info" id="wall-item-info-$id">
|
||||||
<div class="wall-item-photo-wrapper" id="wall-item-ownerphoto-wrapper-$id" >
|
<div class="wall-item-photo-wrapper" id="wall-item-ownerphoto-wrapper-$id" >
|
||||||
<a href="$owner_url" title="View $owner_name's profile" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
<a href="$owner_url" title="View $owner_name's profile" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
||||||
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" height="80" width="80" alt="$owner_name" /></a>
|
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" height="80" width="80" alt="$owner_name" /></a>
|
||||||
|
@ -9,7 +10,6 @@
|
||||||
<a href="$profile_url" title="View $name's profile" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
<a href="$profile_url" title="View $name's profile" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||||
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
|
<div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
|
||||||
$lock
|
$lock
|
||||||
<a href="$profile_url" title="View $name's profile" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> to <a href="$owner_url" title="View $owner_name's profile" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> via Wall-To-Wall:<br />
|
<a href="$profile_url" title="View $name's profile" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> to <a href="$owner_url" title="View $owner_name's profile" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> via Wall-To-Wall:<br />
|
||||||
|
@ -17,13 +17,16 @@
|
||||||
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
||||||
$vote
|
$vote
|
||||||
</div>
|
</div>
|
||||||
|
</span>
|
||||||
<div class="wall-item-content" id="wall-item-content-$id" >
|
<div class="wall-item-content" id="wall-item-content-$id" >
|
||||||
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
||||||
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="wall-item-tools" id="wall-item-tools-$id">
|
||||||
$plink
|
$plink
|
||||||
$drop
|
$drop
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="wall-item-wrapper-end"></div>
|
<div class="wall-item-wrapper-end"></div>
|
||||||
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
||||||
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
|
<div class="wall-item-outside-wrapper$indent wallwall" id="wall-item-outside-wrapper-$id" >
|
||||||
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
||||||
|
<span class="wall-item-info" id="wall-item-info-$id">
|
||||||
<div class="wall-item-photo-wrapper" id="wall-item-ownerphoto-wrapper-$id" >
|
<div class="wall-item-photo-wrapper" id="wall-item-ownerphoto-wrapper-$id" >
|
||||||
<a href="$owner_url" title="Guarda il profilo di $owner_name" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
<a href="$owner_url" title="Guarda il profilo di $owner_name" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
||||||
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" height="80" width="80" alt="$owner_name" /></a>
|
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" height="80" width="80" alt="$owner_name" /></a>
|
||||||
|
@ -9,7 +10,6 @@
|
||||||
<a href="$profile_url" title="Guarda il profilo di $name" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
<a href="$profile_url" title="Guarda il profilo di $name" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||||
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
|
<div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
|
||||||
$lock
|
$lock
|
||||||
<a href="$profile_url" title="Guarda il profilo di $name" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> a <a href="$owner_url" title="Guarda il profilo di $owner_name" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> via Bacheca-A-Bacheca:<br />
|
<a href="$profile_url" title="Guarda il profilo di $name" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> a <a href="$owner_url" title="Guarda il profilo di $owner_name" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> via Bacheca-A-Bacheca:<br />
|
||||||
|
@ -17,13 +17,16 @@
|
||||||
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
||||||
$vote
|
$vote
|
||||||
</div>
|
</div>
|
||||||
|
</span>
|
||||||
<div class="wall-item-content" id="wall-item-content-$id" >
|
<div class="wall-item-content" id="wall-item-content-$id" >
|
||||||
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
||||||
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="wall-item-tools" id="wall-item-tools-$id">
|
||||||
$plink
|
$plink
|
||||||
$drop
|
$drop
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="wall-item-wrapper-end"></div>
|
<div class="wall-item-wrapper-end"></div>
|
||||||
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
||||||
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
|
|
||||||
<div class="photo-album-image-wrapper" id="photo-album-image-wrapper-$id">
|
<div class="photo-album-image-wrapper" id="photo-album-image-wrapper-$id">
|
||||||
<a href="$photolink" class="photo-album-photo-link" id="photo-album-photo-link-$id" title="$phototitle"><img src="$imgsrc" alt="$imgalt" title="$phototitle" class="photo-album-photo" id="photo-album-photo-$id" /></a>
|
<a href="$photolink" class="photo-album-photo-link" id="photo-album-photo-link-$id" title="$phototitle">
|
||||||
|
<img src="$imgsrc" alt="$imgalt" title="$phototitle" class="photo-album-photo" id="photo-album-photo-$id" />
|
||||||
|
<p class='caption'>$desc</p>
|
||||||
|
</a>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="photo-album-image-wrapper-end"></div>
|
<div class="photo-album-image-wrapper-end"></div>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
|
<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
|
||||||
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
||||||
|
<span class="wall-item-info" id="wall-item-info-$id">
|
||||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$id" >
|
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$id" >
|
||||||
<a href="$profile_url" title="View $name's profile" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
<a href="$profile_url" title="View $name's profile" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||||
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
||||||
|
@ -11,12 +12,15 @@
|
||||||
<div class="wall-item-ago" id="wall-item-ago-$id">$ago</div>
|
<div class="wall-item-ago" id="wall-item-ago-$id">$ago</div>
|
||||||
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
||||||
</div>
|
</div>
|
||||||
|
</span>
|
||||||
<div class="wall-item-content" id="wall-item-content-$id" >
|
<div class="wall-item-content" id="wall-item-content-$id" >
|
||||||
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
||||||
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="wall-item-tools" id="wall-item-tools-$id">
|
||||||
$drop
|
$drop
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="wall-item-wrapper-end"></div>
|
<div class="wall-item-wrapper-end"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -650,14 +650,17 @@ input#dfrn-url {
|
||||||
#profile-in-netdir-yes,
|
#profile-in-netdir-yes,
|
||||||
#profile-in-netdir-no,
|
#profile-in-netdir-no,
|
||||||
#hide-friends-yes,
|
#hide-friends-yes,
|
||||||
#hide-friends-no,
|
#hide-friends-no {
|
||||||
#settings-normal,
|
|
||||||
#settings-soapbox,
|
|
||||||
#settings-community,
|
|
||||||
#settings-freelove {
|
|
||||||
float: left;
|
float: left;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
#settings-normal,
|
||||||
|
#settings-soapbox,
|
||||||
|
#settings-freelove,
|
||||||
|
#settings-community {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#profile-in-dir-yes-label,
|
#profile-in-dir-yes-label,
|
||||||
#profile-in-dir-no-label,
|
#profile-in-dir-no-label,
|
||||||
|
@ -697,8 +700,12 @@ input#dfrn-url {
|
||||||
#settings-soapbox-desc,
|
#settings-soapbox-desc,
|
||||||
#settings-community-desc,
|
#settings-community-desc,
|
||||||
#settings-freelove-desc {
|
#settings-freelove-desc {
|
||||||
float: left;
|
/*float: left;
|
||||||
margin-left: 75px;
|
margin-left: 75px;*/
|
||||||
|
clear: left;
|
||||||
|
color: #666666;
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 20px
|
||||||
}
|
}
|
||||||
|
|
||||||
#profile-edit-profile-name-end,
|
#profile-edit-profile-name-end,
|
||||||
|
@ -796,6 +803,7 @@ input#dfrn-url {
|
||||||
.wall-item-content-wrapper {
|
.wall-item-content-wrapper {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
border: 1px solid #CCC;
|
border: 1px solid #CCC;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-content-wrapper.comment {
|
.wall-item-content-wrapper.comment {
|
||||||
|
@ -803,26 +811,43 @@ input#dfrn-url {
|
||||||
background: #EEEEEE;
|
background: #EEEEEE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wall-item-info {
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
width:150px;
|
||||||
|
}
|
||||||
|
.wallwall .wall-item-info {
|
||||||
|
width: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.wall-item-photo-wrapper {
|
.wall-item-photo-wrapper {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
width: 100px;
|
width: 100px;
|
||||||
|
}
|
||||||
|
.wallwall .wall-item-photo-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-arrowphoto-wrapper {
|
.wall-item-arrowphoto-wrapper {
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.wall-item-wrapper {
|
.wall-item-wrapper {
|
||||||
float: left;
|
/*float: left;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
width: 250px;
|
width: 250px;*/
|
||||||
|
margin-left:10px;
|
||||||
}
|
}
|
||||||
.wall-item-lock {
|
.wall-item-lock {
|
||||||
height: 20px;
|
/*height: 20px;*/
|
||||||
margin-top: 10px;
|
/*margin-top: 10px;*/
|
||||||
|
left: 135px;
|
||||||
|
position: absolute;
|
||||||
|
top: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-ago {
|
.wall-item-ago {
|
||||||
|
@ -836,14 +861,10 @@ input#dfrn-url {
|
||||||
|
|
||||||
.wall-item-links-wrapper {
|
.wall-item-links-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
margin-bottom: 5px;
|
|
||||||
margin-left: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-delete-wrapper {
|
.wall-item-delete-wrapper {
|
||||||
float: right;
|
float: right;
|
||||||
margin-top: 5px;
|
|
||||||
margin-right: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-delete-end {
|
.wall-item-delete-end {
|
||||||
|
@ -866,12 +887,15 @@ input#dfrn-url {
|
||||||
.wall-item-photo {
|
.wall-item-photo {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
.comment .wall-item-photo {
|
||||||
|
width: 50px; height: 50px;
|
||||||
|
}
|
||||||
.wall-item-content {
|
.wall-item-content {
|
||||||
float: left;
|
/*float: left;*/
|
||||||
/*width: 450px;*/
|
/*width: 450px;*/
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
/* margin-bottom: 20px;*/
|
/*margin-bottom: 20px;*/
|
||||||
padding: 20px;
|
/*padding: 20px;*/
|
||||||
max-height: 400px;
|
max-height: 400px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
@ -879,15 +903,26 @@ input#dfrn-url {
|
||||||
.wall-item-title {
|
.wall-item-title {
|
||||||
float: left;
|
float: left;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
width: 450px;
|
/*width: 450px;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-body {
|
.wall-item-body {
|
||||||
float: left;
|
float: left;
|
||||||
width: 450px;
|
/*width: 450px;*/
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wall-item-tools {
|
||||||
|
clear: both;
|
||||||
|
background-image: url("head.jpg");
|
||||||
|
background-position: 0 -20px;
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
padding: 5px 10px 0px;
|
||||||
|
}
|
||||||
|
.comment .wall-item-tools {
|
||||||
|
background:none;
|
||||||
|
}
|
||||||
|
|
||||||
.comment-edit-wrapper {
|
.comment-edit-wrapper {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
background: #f3f3f3;
|
background: #f3f3f3;
|
||||||
|
@ -1593,8 +1628,23 @@ a.mail-list-link {
|
||||||
.photo-album-image-wrapper {
|
.photo-album-image-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
height: 350px;
|
margin-right: 15px;
|
||||||
width: 350px;
|
width: 200px; height: 200px;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.photo-album-image-wrapper .caption {
|
||||||
|
display: none;
|
||||||
|
width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0px;
|
||||||
|
padding: 0.5em 0.5em 0px 0.5em;
|
||||||
|
background-color: rgba(245, 245, 255, 0.8);
|
||||||
|
border-bottom: 2px solid #CCC;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
.photo-album-image-wrapper a:hover .caption {
|
||||||
|
display:block;
|
||||||
}
|
}
|
||||||
|
|
||||||
#photo-album-end {
|
#photo-album-end {
|
||||||
|
@ -1602,12 +1652,22 @@ a.mail-list-link {
|
||||||
}
|
}
|
||||||
|
|
||||||
.photo-top-image-wrapper {
|
.photo-top-image-wrapper {
|
||||||
|
position: relative;
|
||||||
float: left;
|
float: left;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
height: 350px;
|
margin-right: 15px;
|
||||||
width: 350px;
|
width: 200px; height: 200px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.photo-top-album-name {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 2em;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0px;
|
||||||
|
padding: 0px 3px;
|
||||||
|
padding-top: 0.5em;
|
||||||
|
background-color: rgb(255, 255, 255);
|
||||||
}
|
}
|
||||||
|
|
||||||
#photo-top-end {
|
#photo-top-end {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
@ -1935,3 +1995,5 @@ a.mail-list-link {
|
||||||
.tool-link {
|
.tool-link {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
|
<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
|
||||||
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
||||||
|
<span class="wall-item-info" id="wall-item-info-$id">
|
||||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$id" >
|
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$id" >
|
||||||
<a href="$profile_url" title="$title" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
<a href="$profile_url" title="$title" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||||
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a>
|
||||||
|
@ -12,13 +13,16 @@
|
||||||
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
||||||
$vote
|
$vote
|
||||||
</div>
|
</div>
|
||||||
|
</span>
|
||||||
<div class="wall-item-content" id="wall-item-content-$id" >
|
<div class="wall-item-content" id="wall-item-content-$id" >
|
||||||
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
||||||
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="wall-item-tools" id="wall-item-tools-$id">
|
||||||
$plink
|
$plink
|
||||||
$drop
|
$drop
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="wall-item-wrapper-end"></div>
|
<div class="wall-item-wrapper-end"></div>
|
||||||
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
||||||
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
||||||
|
|
Loading…
Reference in a new issue