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:26:22 +0200 |
commit | b7d92d3a09e50f8cef0b2017c0500bcee9032a1c (patch) | |
tree | 68f98b07ff66092631c1c0894fe2640639efa367 /view/tpl/photo_item.tpl | |
parent | e6315d252ad1cee23dbca9d6f9970bf77e553215 (diff) | |
download | volse-hubzilla-b7d92d3a09e50f8cef0b2017c0500bcee9032a1c.tar.gz volse-hubzilla-b7d92d3a09e50f8cef0b2017c0500bcee9032a1c.tar.bz2 volse-hubzilla-b7d92d3a09e50f8cef0b2017c0500bcee9032a1c.zip |
fix photo item comments
Diffstat (limited to 'view/tpl/photo_item.tpl')
-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> |