diff options
Diffstat (limited to 'view/tpl')
-rwxr-xr-x | view/tpl/contact_slider.tpl | 6 | ||||
-rwxr-xr-x | view/tpl/search_item.tpl | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/view/tpl/contact_slider.tpl b/view/tpl/contact_slider.tpl index 550abc147..0848df673 100755 --- a/view/tpl/contact_slider.tpl +++ b/view/tpl/contact_slider.tpl @@ -4,10 +4,10 @@ $(document).ready(function() { // The slider does not render correct if width is given in % and // the slider container is hidden (display: none) during rendering. // So let's unhide it to render and hide again afterwards. - if(!$("#affinity-tool-collapse").hasClass("in")) { - $("#affinity-tool-collapse").addClass("in"); + if(!$("#affinity-tool-collapse").hasClass("show")) { + $("#affinity-tool-collapse").addClass("show"); makeContactSlider(); - $("#affinity-tool-collapse").removeClass("in"); + $("#affinity-tool-collapse").removeClass("show"); } else { makeContactSlider(); diff --git a/view/tpl/search_item.tpl b/view/tpl/search_item.tpl index 28667eb58..50c0116fb 100755 --- a/view/tpl/search_item.tpl +++ b/view/tpl/search_item.tpl @@ -106,8 +106,8 @@ {{if $item.mode === 'moderate'}} <div class="wall-item-tools-left btn-group"> - <a href="moderate/{{$item.id}}/approve" class="btn btn-outline-secondary btn-small">{{$item.approve}}</a> - <a href="moderate/{{$item.id}}/drop" class="btn btn-outline-secondary btn-small">{{$item.delete}}</a> + <a href="moderate/{{$item.id}}/approve" class="btn btn-success btn-sm">{{$item.approve}}</a> + <a href="moderate/{{$item.id}}/drop" class="btn btn-danger btn-sm">{{$item.delete}}</a> </div> |