diff options
author | Mario <mario@mariovavti.com> | 2022-11-02 19:19:24 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-11-02 19:19:24 +0000 |
commit | 00694f0dfd03ab51c511a0ba35c98cfe1e22f918 (patch) | |
tree | 62cd4c58de55c21e824f6164d1cb247c790ecac0 | |
parent | 134f4c5b520c09ed583cda6c4c4946b8b9629838 (diff) | |
download | volse-hubzilla-00694f0dfd03ab51c511a0ba35c98cfe1e22f918.tar.gz volse-hubzilla-00694f0dfd03ab51c511a0ba35c98cfe1e22f918.tar.bz2 volse-hubzilla-00694f0dfd03ab51c511a0ba35c98cfe1e22f918.zip |
css fixes
-rw-r--r-- | view/tpl/channel_activities_photos.tpl | 2 | ||||
-rw-r--r-- | view/tpl/photo_top.tpl | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/view/tpl/channel_activities_photos.tpl b/view/tpl/channel_activities_photos.tpl index b0079f382..cba157627 100644 --- a/view/tpl/channel_activities_photos.tpl +++ b/view/tpl/channel_activities_photos.tpl @@ -5,7 +5,7 @@ {{foreach $items as $i}} <a href="{{$i.url}}" title="{{$i.alt}}"> <img src="{{$i.src}}" width="{{$i.width}}" height="{{$i.height}}" alt="{{$i.alt}}"> - <div class='jg-caption autotime' title="{{$i.edited}}"></div> + <div class='jg-caption rounded text-truncate autotime' title="{{$i.edited}}"></div> </a> {{/foreach}} </div> diff --git a/view/tpl/photo_top.tpl b/view/tpl/photo_top.tpl index 16862a8d6..1cfcc7aa3 100644 --- a/view/tpl/photo_top.tpl +++ b/view/tpl/photo_top.tpl @@ -1,4 +1,5 @@ <a href="{{$photo.link}}" id="photo-top-photo-link-{{$photo.id}}" title="{{$photo.title}}"> <img src="{{$photo.src}}" alt="{{if $photo.album.name}}{{$photo.album.name}}{{elseif $photo.desc}}{{$photo.desc}}{{elseif $photo.alt}}{{$photo.alt}}{{else}}{{$photo.unknown}}{{/if}}" title="{{$photo.title}}" id="photo-top-photo-{{$photo.id}}" loading="lazy" /> + <div class="jg-caption rounded text-truncate">{{if $photo.album.name}}{{$photo.album.name}}{{elseif $photo.desc}}{{$photo.desc}}{{elseif $photo.alt}}{{$photo.alt}}{{else}}{{$photo.unknown}}{{/if}}</div> </a> |