diff options
author | git-marijus <mario@mariovavti.com> | 2017-07-16 16:25:52 +0200 |
---|---|---|
committer | git-marijus <mario@mariovavti.com> | 2017-07-16 16:25:52 +0200 |
commit | bd17dc52f263206923fca43bf5c15b0754e66c82 (patch) | |
tree | 1c64728520c060977f0d7ebd1790aa87cf772bc1 /view | |
parent | ce3be598bb2076a20ff6d99ac051ec1667230a77 (diff) | |
download | volse-hubzilla-bd17dc52f263206923fca43bf5c15b0754e66c82.tar.gz volse-hubzilla-bd17dc52f263206923fca43bf5c15b0754e66c82.tar.bz2 volse-hubzilla-bd17dc52f263206923fca43bf5c15b0754e66c82.zip |
fix photo item comments
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/photo_item.tpl | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/view/tpl/photo_item.tpl b/view/tpl/photo_item.tpl index ec643c4a9..b6ee4508b 100755 --- a/view/tpl/photo_item.tpl +++ b/view/tpl/photo_item.tpl @@ -1,10 +1,10 @@ <div class="wall-item-outside-wrapper{{if $indent}} {{$indent}}{{/if}}" id="wall-item-outside-wrapper-{{$id}}" > - <div class="wall-item-content-wrapper{{if $indent}} {{$indent}}{{/if}}" id="wall-item-content-wrapper-{{$id}}" style="clear:both;"> - <div class="wall-item-head"> + <div class="clearfix wall-item-content-wrapper{{if $indent}} {{$indent}}{{/if}}" id="wall-item-content-wrapper-{{$id}}"> + <div class="p-2 clearfix wall-item-head"> <div class="wall-item-info" id="wall-item-info-{{$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}}"> - <img src="{{$thumb}}" class="wall-item-photo" id="wall-item-photo-{{$id}}" style="height: 80px; width: 80px;" alt="{{$name}}" /></a> + <img src="{{$thumb}}" class="wall-item-photo" id="wall-item-photo-{{$id}}" alt="{{$name}}" /></a> </div> </div> <div class="wall-item-wrapper" id="wall-item-wrapper-{{$id}}" > @@ -14,20 +14,18 @@ <div class="wall-item-ago" id="wall-item-ago-{{$id}}">{{$ago}}</div> </div> </div> - <div class="wall-item-content" id="wall-item-content-{{$id}}" > + <div class="p-2 clearfix wall-item-content" id="wall-item-content-{{$id}}" > <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> {{if $drop}} - <div class="wall-item-tools" id="wall-item-tools-{{$id}}" > + <div class="p-2 clearfix wall-item-tools" id="wall-item-tools-{{$id}}" > <div class="wall-item-tools-right pull-right"> {{$drop}} </div> - <div class="clear"></div> </div> {{/if}} - <div class="clear"></div> {{$comment}} </div> </div> |