]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/templates/conversation.tpl
Merge pull request #13758 from Raroun/frio_More_space_between_photo_permissions_and_s...
[friendica.git] / view / theme / quattro / templates / conversation.tpl
1 {{$live_update nofilter}}
2 {{foreach $threads as $thread}}
3 <div id="tread-wrapper-{{$thread.id}}" class="tread-wrapper">
4         {{foreach $thread.items as $item}}
5         {{if $mode == display}}
6         {{else}}
7                 {{if $item.comment_firstcollapsed}}
8                         <div class="hide-comments-outer">
9                         <span id="hide-comments-total-{{$thread.id}}" class="hide-comments-total">{{$thread.num_comments}}</span> <span id="hide-comments-{{$thread.id}}" class="hide-comments fakelink" onclick="showHideComments({{$thread.id}});">{{$thread.hide_text}}</span>
10                         </div>
11                         <div id="collapsed-comments-{{$thread.id}}" class="collapsed-comments" style="display: none;">
12                 {{/if}}
13                 {{if $item.comment_lastcollapsed}}</div>{{/if}}
14         {{/if}}
15
16                 {{if $item.type == tag}}
17                         {{include file="wall_item_tag.tpl"}}
18                 {{else}}
19                         {{include file="{{$item.template}}"}}
20                 {{/if}}
21
22         {{/foreach}}
23 </div>
24 {{/foreach}}
25 {{if !$update}}
26 <div id="conversation-end"></div>
27
28 {{if $dropping}}
29 <a href="#" onclick="deleteCheckedItems();return false;">
30         <span class="icon s22 delete text">{{$dropping}}</span>
31 </a>
32 {{/if}}
33
34 <script>
35 // jquery color plugin from https://raw.github.com/gist/1891361/17747b50ad87f7a59a14b4e0f38d8f3fb6a18b27/gistfile1.js
36     (function(d){d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(f,e){d.fx.step[e]=function(g){if(!g.colorInit){g.start=c(g.elem,e);g.end=b(g.end);g.colorInit=true}g.elem.style[e]="rgb("+[Math.max(Math.min(parseInt((g.pos*(g.end[0]-g.start[0]))+g.start[0]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[1]-g.start[1]))+g.start[1]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[2]-g.start[2]))+g.start[2]),255),0)].join(",")+")"}});function b(f){var e;if(f&&f.constructor==Array&&f.length==3){return f}if(e=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(f)){return[parseInt(e[1]),parseInt(e[2]),parseInt(e[3])]}if(e=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(f)){return[parseFloat(e[1])*2.55,parseFloat(e[2])*2.55,parseFloat(e[3])*2.55]}if(e=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(f)){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}if(e=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(f)){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}if(e=/rgba\(0, 0, 0, 0\)/.exec(f)){return a.transparent}return a[d.trim(f).toLowerCase()]}function c(g,e){var f;do{f=d.css(g,e);if(f!=""&&f!="transparent"||d.nodeName(g,"body")){break}e="backgroundColor"}while(g=g.parentNode);return b(f)}var a={transparent:[255,255,255]}})(jQuery);
37     var colWhite = {backgroundColor:'#EFF0F1'};
38     var colShiny = {backgroundColor:'#FCE94F'};
39 </script>
40
41 {{if $mode == display}}
42 <script>
43     var id = window.location.pathname.split("/").pop();
44     $(window).scrollTop($('#item-'+id).position().top);
45     $('#item-'+id).animate(colWhite, 1000).animate(colShiny).animate(colWhite, 2000);
46 </script>
47 {{/if}}
48 {{/if}}