diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-15 12:41:37 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-15 12:41:37 +0100 |
commit | 0c973cc9fa4034ae894dfac841987b3f9e8ec335 (patch) | |
tree | ef5549fcb6547cdc67c4de41e48affc04eb1a5d5 | |
parent | 3b2398ed015f1ada35b4098f6cc7f4431c65423d (diff) | |
download | volse-hubzilla-0c973cc9fa4034ae894dfac841987b3f9e8ec335.tar.gz volse-hubzilla-0c973cc9fa4034ae894dfac841987b3f9e8ec335.tar.bz2 volse-hubzilla-0c973cc9fa4034ae894dfac841987b3f9e8ec335.zip |
various fixes
-rw-r--r-- | view/css/conversation.css | 4 | ||||
-rwxr-xr-x | view/tpl/conv_item.tpl | 4 | ||||
-rwxr-xr-x | view/tpl/nav.tpl | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/view/css/conversation.css b/view/css/conversation.css index 78dd29741..9f9c1fd42 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -94,6 +94,10 @@ line-height: 1.2; } +.wall-item-head-new { + border-top: 3px solid #0275d8; +} + .wall-item-info { display: block; float: left; diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index 4a4ae7273..8eb2cf754 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -4,7 +4,7 @@ </div> <div id="collapsed-comments-{{$item.id}}" class="collapsed-comments" style="display: none;"> {{/if}} - <div id="thread-wrapper-{{$item.id}}" class="mb-4 clearfix thread-wrapper{{if $item.toplevel}} {{$item.toplevel}} generic-content-wrapper h-entry {{else}} u-comment h-cite {{/if}} item_{{$item.submid}}"> + <div id="thread-wrapper-{{$item.id}}" class="clearfix thread-wrapper{{if $item.toplevel}} {{$item.toplevel}} mb-4 generic-content-wrapper h-entry {{else}} u-comment h-cite {{/if}} item_{{$item.submid}}"> <a name="item_{{$item.id}}" ></a> <div class="clearfix wall-item-outside-wrapper{{if $item.is_comment}} comment{{/if}}{{if $item.previewing}} preview{{/if}}" id="wall-item-outside-wrapper-{{$item.id}}" > <div class="clearfix wall-item-content-wrapper{{if $item.is_comment}} comment{{/if}}" id="wall-item-content-wrapper-{{$item.id}}" style="clear:both;"> @@ -26,7 +26,7 @@ <hr class="m-0"> {{/if}} {{/if}} - <div class="p-2 wall-item-head"> + <div class="p-2 wall-item-head{{if $item.is_new && !$item.title && !$item.event && !$item.is_comment}} wall-item-head-new rounded-top{{/if}}"> <div class="wall-item-info" id="wall-item-info-{{$item.id}}" > <div class="wall-item-photo-wrapper{{if $item.owner_url}} wwfrom{{/if}} h-card p-author" id="wall-item-photo-wrapper-{{$item.id}}"> <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-photo-link u-url" id="wall-item-photo-link-{{$item.id}}"><img src="{{$item.thumb}}" class="wall-item-photo{{$item.sparkle}} u-photo p-name" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" /></a> diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index 003c17fa7..5903df689 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -173,12 +173,12 @@ <ul id="nav-right" class="navbar-nav hidden-sm-down ml-auto"> <li class="nav-item collapse clearfix" id="nav-search"> <form class="form-inline" method="get" action="search" role="search"> - <input class="form-control form-control-sm mt-1 mr-2" id="nav-search-text" type="text" value="" placeholder=" {{$help}}" name="search" title="{{$nav.search.3}}" onclick="this.submit();" onblur=" $('#nav-search').hide(); $('#nav-search-btn').show();"/> + <input class="form-control form-control-sm mt-1 mr-2" id="nav-search-text" type="text" value="" placeholder=" {{$help}}" name="search" title="{{$nav.search.3}}" onclick="this.submit();" onblur="closeMenu('nav-search'); openMenu('nav-search-btn');"/> </form> <div id="nav-search-spinner"></div> </li> <li class="nav-item" id="nav-search-btn"> - <a class="nav-link" href="#nav-search" title="{{$nav.search.3}}" onclick="$('#nav-search').show(); $('#nav-search-btn').hide(); $('#nav-search-text').focus(); return false;"><i class="fa fa-fw fa-search"></i></a> + <a class="nav-link" href="#nav-search" title="{{$nav.search.3}}" onclick="openMenu('nav-search'); closeMenu('nav-search-btn'); $('#nav-search-text').focus(); return false;"><i class="fa fa-fw fa-search"></i></a> </li> {{if $nav.help.6}} <li class="nav-item dropdown {{$sel.help}}"> |