fix the display of community-plugin in diabook-themes
This commit is contained in:
parent
9b4bef8ac4
commit
ff12637ceb
100
view/theme/diabook-aerith/search_item.tpl
Executable file
100
view/theme/diabook-aerith/search_item.tpl
Executable file
|
@ -0,0 +1,100 @@
|
||||||
|
{{ if $item.indent }}{{ else }}
|
||||||
|
<div class="wall-item-decor">
|
||||||
|
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||||
|
</div>
|
||||||
|
{{ endif }}
|
||||||
|
<div class="wall-item-container $item.indent">
|
||||||
|
<div class="wall-item-item">
|
||||||
|
<div class="wall-item-info">
|
||||||
|
<div class="contact-photo-wrapper"
|
||||||
|
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||||
|
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||||
|
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
|
||||||
|
<img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
|
||||||
|
</a>
|
||||||
|
<a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
|
||||||
|
<ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
|
||||||
|
$item.item_photo_menu
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-actions-author">
|
||||||
|
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a>
|
||||||
|
<span class="wall-item-ago">-
|
||||||
|
{{ if $item.plink }}<a class="link" title="$item.plink.title" href="$item.plink.href" style="color: #999">$item.ago</a>{{ else }} $item.ago {{ endif }}
|
||||||
|
{{ if $item.lock }} - <span class="fakelink" style="color: #999" onclick="lockview(event,$item.id);">$item.lock</span> {{ endif }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-content">
|
||||||
|
{{ if $item.title }}<h2><a href="$item.plink.href">$item.title</a></h2>{{ endif }}
|
||||||
|
$item.body
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="wall-item-links">
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-tags">
|
||||||
|
{{ for $item.tags as $tag }}
|
||||||
|
<span class='tag'>$tag</span>
|
||||||
|
{{ endfor }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-actions">
|
||||||
|
|
||||||
|
<div class="wall-item-actions-social">
|
||||||
|
|
||||||
|
|
||||||
|
{{ if $item.vote }}
|
||||||
|
<a href="#" id="like-$item.id" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
|
||||||
|
<a href="#" id="dislike-$item.id" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.vote.share }}
|
||||||
|
<a href="#" id="share-$item.id" class="icon recycle" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
|
||||||
|
{{ if $item.star }}
|
||||||
|
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle">
|
||||||
|
<img src="images/star_dummy.png" class="icon star" alt="$item.star.do" /> </a>
|
||||||
|
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.filer }}
|
||||||
|
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item icon file-as" title="$item.star.filer"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.plink }}<a class="icon link" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wall-item-actions-tools">
|
||||||
|
|
||||||
|
{{ if $item.drop.dropping }}
|
||||||
|
<input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
|
||||||
|
<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drop" title="$item.drop.delete">$item.drop.delete</a>
|
||||||
|
{{ endif }}
|
||||||
|
{{ if $item.edpost }}
|
||||||
|
<a class="icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||||
|
{{ endif }}
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-location">$item.location </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="wall-item-links"></div>
|
||||||
|
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
|
||||||
|
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wall-item-comment-wrapper" >
|
||||||
|
$item.comment
|
||||||
|
</div>
|
|
@ -2122,7 +2122,7 @@ max-width: 85%;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
top: -20px; left:0px;
|
top: -16px; left:0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-indent: 40px;
|
text-indent: 40px;
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -2501,8 +2501,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -2110,7 +2110,7 @@ max-width: 85%;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
top: -20px; left:0px;
|
top: -16px; left:0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-indent: 40px;
|
text-indent: 40px;
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -2489,8 +2489,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/**
|
/opt/lampp/htdocs/friendica/view/theme/diabook/search_item.tpl/**
|
||||||
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
|
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
|
||||||
* Additional Changes: Michael Vogel <icarus@dabo.de>
|
* Additional Changes: Michael Vogel <icarus@dabo.de>
|
||||||
**/
|
**/
|
||||||
|
@ -1233,92 +1233,6 @@ body .pageheader{
|
||||||
.tread-wrapper a{
|
.tread-wrapper a{
|
||||||
color: #3465A4;
|
color: #3465A4;
|
||||||
}
|
}
|
||||||
.wall-item-photo-menu-button {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
background-image: url("../../../view/theme/diabook-aerith/icons/photo-menu.jpg");
|
|
||||||
background-position: top left;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
margin: 0px;
|
|
||||||
padding: 0px;
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
top: 90px;
|
|
||||||
left: 17px;
|
|
||||||
overflow: hidden;
|
|
||||||
text-indent: 40px;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.wall-item-content-wrapper {
|
|
||||||
margin-top: 10px;
|
|
||||||
border: 1px solid #CCC;
|
|
||||||
-moz-border-radius: 3px;
|
|
||||||
border-radius: 3px;
|
|
||||||
display: table;
|
|
||||||
width: 775px;
|
|
||||||
}
|
|
||||||
.wall-item-info {
|
|
||||||
/*display: block;
|
|
||||||
float: left;
|
|
||||||
width: 110px;
|
|
||||||
margin-right: 10px;*/
|
|
||||||
display: table-cell;
|
|
||||||
vertical-align: top;
|
|
||||||
text-align: left;
|
|
||||||
width: 80px;
|
|
||||||
}
|
|
||||||
.wall-item-content {
|
|
||||||
font-size: 12.5px;
|
|
||||||
max-width: 720px;
|
|
||||||
word-wrap: break-word;
|
|
||||||
line-height: 1.2;
|
|
||||||
}
|
|
||||||
.wrapper-end {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
.wall-item-photo-wrapper {
|
|
||||||
margin-top: 10px;
|
|
||||||
margin-left: 10px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
width: 100px;
|
|
||||||
}
|
|
||||||
.wall-item-photo-menu ul { margin:0px; padding: 0px; list-style: none }
|
|
||||||
.wall-item-photo-menu li a { display: block; padding: 2px; }
|
|
||||||
.wall-item-photo-menu li a:hover { color: #FFFFFF; background: #3465A4; text-decoration: none; }
|
|
||||||
.wall-item-wrapper {
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
.wall-item-title-end {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wall-item-body {
|
|
||||||
float: left;
|
|
||||||
/*width: 450px;*/
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wall-item-tools {
|
|
||||||
clear: both;
|
|
||||||
background-image: url("head.jpg");
|
|
||||||
background-position: 0 -20px;
|
|
||||||
background-repeat: repeat-x;
|
|
||||||
padding: 5px 10px 0px;
|
|
||||||
}
|
|
||||||
.wall-item-author {
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
.wall-item-photo-menu {
|
|
||||||
width: auto;
|
|
||||||
border: 2px solid #444;
|
|
||||||
background: white;
|
|
||||||
position: absolute;
|
|
||||||
left: 10px;
|
|
||||||
top: 90px;
|
|
||||||
display: none;
|
|
||||||
z-index: 10000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wall-item-decor {
|
.wall-item-decor {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 790px;
|
left: 790px;
|
||||||
|
@ -2136,7 +2050,7 @@ max-width: 85%;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
top: -20px; left:0px;
|
top: -16px; left:0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-indent: 40px;
|
text-indent: 40px;
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -2506,8 +2420,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
100
view/theme/diabook-blue/search_item.tpl
Executable file
100
view/theme/diabook-blue/search_item.tpl
Executable file
|
@ -0,0 +1,100 @@
|
||||||
|
{{ if $item.indent }}{{ else }}
|
||||||
|
<div class="wall-item-decor">
|
||||||
|
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||||
|
</div>
|
||||||
|
{{ endif }}
|
||||||
|
<div class="wall-item-container $item.indent">
|
||||||
|
<div class="wall-item-item">
|
||||||
|
<div class="wall-item-info">
|
||||||
|
<div class="contact-photo-wrapper"
|
||||||
|
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||||
|
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||||
|
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
|
||||||
|
<img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
|
||||||
|
</a>
|
||||||
|
<a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
|
||||||
|
<ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
|
||||||
|
$item.item_photo_menu
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-actions-author">
|
||||||
|
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a>
|
||||||
|
<span class="wall-item-ago">-
|
||||||
|
{{ if $item.plink }}<a class="link" title="$item.plink.title" href="$item.plink.href" style="color: #999">$item.ago</a>{{ else }} $item.ago {{ endif }}
|
||||||
|
{{ if $item.lock }} - <span class="fakelink" style="color: #999" onclick="lockview(event,$item.id);">$item.lock</span> {{ endif }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-content">
|
||||||
|
{{ if $item.title }}<h2><a href="$item.plink.href">$item.title</a></h2>{{ endif }}
|
||||||
|
$item.body
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="wall-item-links">
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-tags">
|
||||||
|
{{ for $item.tags as $tag }}
|
||||||
|
<span class='tag'>$tag</span>
|
||||||
|
{{ endfor }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-actions">
|
||||||
|
|
||||||
|
<div class="wall-item-actions-social">
|
||||||
|
|
||||||
|
|
||||||
|
{{ if $item.vote }}
|
||||||
|
<a href="#" id="like-$item.id" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
|
||||||
|
<a href="#" id="dislike-$item.id" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.vote.share }}
|
||||||
|
<a href="#" id="share-$item.id" class="icon recycle" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
|
||||||
|
{{ if $item.star }}
|
||||||
|
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle">
|
||||||
|
<img src="images/star_dummy.png" class="icon star" alt="$item.star.do" /> </a>
|
||||||
|
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.filer }}
|
||||||
|
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item icon file-as" title="$item.star.filer"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.plink }}<a class="icon link" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wall-item-actions-tools">
|
||||||
|
|
||||||
|
{{ if $item.drop.dropping }}
|
||||||
|
<input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
|
||||||
|
<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drop" title="$item.drop.delete">$item.drop.delete</a>
|
||||||
|
{{ endif }}
|
||||||
|
{{ if $item.edpost }}
|
||||||
|
<a class="icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||||
|
{{ endif }}
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-location">$item.location </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="wall-item-links"></div>
|
||||||
|
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
|
||||||
|
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wall-item-comment-wrapper" >
|
||||||
|
$item.comment
|
||||||
|
</div>
|
|
@ -2454,8 +2454,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -2448,8 +2448,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -2368,8 +2368,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
100
view/theme/diabook-red/search_item.tpl
Executable file
100
view/theme/diabook-red/search_item.tpl
Executable file
|
@ -0,0 +1,100 @@
|
||||||
|
{{ if $item.indent }}{{ else }}
|
||||||
|
<div class="wall-item-decor">
|
||||||
|
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||||
|
</div>
|
||||||
|
{{ endif }}
|
||||||
|
<div class="wall-item-container $item.indent">
|
||||||
|
<div class="wall-item-item">
|
||||||
|
<div class="wall-item-info">
|
||||||
|
<div class="contact-photo-wrapper"
|
||||||
|
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||||
|
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||||
|
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
|
||||||
|
<img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
|
||||||
|
</a>
|
||||||
|
<a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
|
||||||
|
<ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
|
||||||
|
$item.item_photo_menu
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-actions-author">
|
||||||
|
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a>
|
||||||
|
<span class="wall-item-ago">-
|
||||||
|
{{ if $item.plink }}<a class="link" title="$item.plink.title" href="$item.plink.href" style="color: #999">$item.ago</a>{{ else }} $item.ago {{ endif }}
|
||||||
|
{{ if $item.lock }} - <span class="fakelink" style="color: #999" onclick="lockview(event,$item.id);">$item.lock</span> {{ endif }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-content">
|
||||||
|
{{ if $item.title }}<h2><a href="$item.plink.href">$item.title</a></h2>{{ endif }}
|
||||||
|
$item.body
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="wall-item-links">
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-tags">
|
||||||
|
{{ for $item.tags as $tag }}
|
||||||
|
<span class='tag'>$tag</span>
|
||||||
|
{{ endfor }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-actions">
|
||||||
|
|
||||||
|
<div class="wall-item-actions-social">
|
||||||
|
|
||||||
|
|
||||||
|
{{ if $item.vote }}
|
||||||
|
<a href="#" id="like-$item.id" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
|
||||||
|
<a href="#" id="dislike-$item.id" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.vote.share }}
|
||||||
|
<a href="#" id="share-$item.id" class="icon recycle" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
|
||||||
|
{{ if $item.star }}
|
||||||
|
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle">
|
||||||
|
<img src="images/star_dummy.png" class="icon star" alt="$item.star.do" /> </a>
|
||||||
|
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.filer }}
|
||||||
|
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item icon file-as" title="$item.star.filer"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.plink }}<a class="icon link" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wall-item-actions-tools">
|
||||||
|
|
||||||
|
{{ if $item.drop.dropping }}
|
||||||
|
<input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
|
||||||
|
<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drop" title="$item.drop.delete">$item.drop.delete</a>
|
||||||
|
{{ endif }}
|
||||||
|
{{ if $item.edpost }}
|
||||||
|
<a class="icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||||
|
{{ endif }}
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-location">$item.location </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="wall-item-links"></div>
|
||||||
|
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
|
||||||
|
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wall-item-comment-wrapper" >
|
||||||
|
$item.comment
|
||||||
|
</div>
|
|
@ -2119,7 +2119,7 @@ max-width: 85%;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
top: -20px; left:0px;
|
top: -16px; left:0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-indent: 40px;
|
text-indent: 40px;
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -2498,8 +2498,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -2091,7 +2091,7 @@ max-width: 85%;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
top: -20px; left:0px;
|
top: -16px; left:0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-indent: 40px;
|
text-indent: 40px;
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -2470,8 +2470,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -1216,108 +1216,7 @@ body .pageheader{
|
||||||
width: 775px;
|
width: 775px;
|
||||||
}
|
}
|
||||||
.tread-wrapper a{
|
.tread-wrapper a{
|
||||||
color: #1872A2;
|
color: red;
|
||||||
}
|
|
||||||
/*community-plugin*/
|
|
||||||
aside #likes a, a:visited, a:link {
|
|
||||||
color: red;
|
|
||||||
text-decoration: none;
|
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
}
|
|
||||||
aside #likes a:hover{
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
.wall-item-photo-menu-button {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
background-image: url("../../../view/theme/diabook-red/icons/photo-menu.jpg");
|
|
||||||
background-position: top left;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
margin: 0px;
|
|
||||||
padding: 0px;
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
top: 90px;
|
|
||||||
left: 17px;
|
|
||||||
overflow: hidden;
|
|
||||||
text-indent: 40px;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.wall-item-name {
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
.wall-item-conv a{
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
.wall-item-content-wrapper {
|
|
||||||
margin-top: 10px;
|
|
||||||
border: 1px solid #CCC;
|
|
||||||
-moz-border-radius: 3px;
|
|
||||||
border-radius: 3px;
|
|
||||||
display: table;
|
|
||||||
width: 775px;
|
|
||||||
}
|
|
||||||
.wall-item-info {
|
|
||||||
/*display: block;
|
|
||||||
float: left;
|
|
||||||
width: 110px;
|
|
||||||
margin-right: 10px;*/
|
|
||||||
display: table-cell;
|
|
||||||
vertical-align: top;
|
|
||||||
text-align: left;
|
|
||||||
width: 80px;
|
|
||||||
}
|
|
||||||
.wall-item-content {
|
|
||||||
font-size: 12.5px;
|
|
||||||
max-width: 720px;
|
|
||||||
word-wrap: break-word;
|
|
||||||
line-height: 1.2;
|
|
||||||
}
|
|
||||||
.wrapper-end {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
.wall-item-photo-wrapper {
|
|
||||||
margin-top: 10px;
|
|
||||||
margin-left: 10px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
width: 100px;
|
|
||||||
}
|
|
||||||
.wall-item-photo-menu ul { margin:0px; padding: 0px; list-style: none }
|
|
||||||
.wall-item-photo-menu li a { display: block; padding: 2px; }
|
|
||||||
.wall-item-photo-menu li a:hover { color: #FFFFFF; background: #3465A4; text-decoration: none; }
|
|
||||||
.wall-item-wrapper {
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
.wall-item-title-end {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wall-item-body {
|
|
||||||
float: left;
|
|
||||||
/*width: 450px;*/
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wall-item-tools {
|
|
||||||
clear: both;
|
|
||||||
background-image: url("head.jpg");
|
|
||||||
background-position: 0 -20px;
|
|
||||||
background-repeat: repeat-x;
|
|
||||||
padding: 5px 10px 0px;
|
|
||||||
}
|
|
||||||
.wall-item-author {
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
.wall-item-photo-menu {
|
|
||||||
width: auto;
|
|
||||||
border: 2px solid #444;
|
|
||||||
background: white;
|
|
||||||
position: absolute;
|
|
||||||
left: 10px;
|
|
||||||
top: 90px;
|
|
||||||
display: none;
|
|
||||||
z-index: 10000;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-decor {
|
.wall-item-decor {
|
||||||
|
@ -2136,7 +2035,7 @@ max-width: 85%;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
top: -20px; left:0px;
|
top: -16px; left:0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-indent: 40px;
|
text-indent: 40px;
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -2506,8 +2405,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
100
view/theme/diabook/search_item.tpl
Executable file
100
view/theme/diabook/search_item.tpl
Executable file
|
@ -0,0 +1,100 @@
|
||||||
|
{{ if $item.indent }}{{ else }}
|
||||||
|
<div class="wall-item-decor">
|
||||||
|
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||||
|
</div>
|
||||||
|
{{ endif }}
|
||||||
|
<div class="wall-item-container $item.indent">
|
||||||
|
<div class="wall-item-item">
|
||||||
|
<div class="wall-item-info">
|
||||||
|
<div class="contact-photo-wrapper"
|
||||||
|
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||||
|
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||||
|
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
|
||||||
|
<img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
|
||||||
|
</a>
|
||||||
|
<a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
|
||||||
|
<ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
|
||||||
|
$item.item_photo_menu
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-actions-author">
|
||||||
|
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a>
|
||||||
|
<span class="wall-item-ago">-
|
||||||
|
{{ if $item.plink }}<a class="link" title="$item.plink.title" href="$item.plink.href" style="color: #999">$item.ago</a>{{ else }} $item.ago {{ endif }}
|
||||||
|
{{ if $item.lock }} - <span class="fakelink" style="color: #999" onclick="lockview(event,$item.id);">$item.lock</span> {{ endif }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-content">
|
||||||
|
{{ if $item.title }}<h2><a href="$item.plink.href">$item.title</a></h2>{{ endif }}
|
||||||
|
$item.body
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="wall-item-links">
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-tags">
|
||||||
|
{{ for $item.tags as $tag }}
|
||||||
|
<span class='tag'>$tag</span>
|
||||||
|
{{ endfor }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-actions">
|
||||||
|
|
||||||
|
<div class="wall-item-actions-social">
|
||||||
|
|
||||||
|
|
||||||
|
{{ if $item.vote }}
|
||||||
|
<a href="#" id="like-$item.id" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
|
||||||
|
<a href="#" id="dislike-$item.id" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.vote.share }}
|
||||||
|
<a href="#" id="share-$item.id" class="icon recycle" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
|
||||||
|
{{ if $item.star }}
|
||||||
|
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle">
|
||||||
|
<img src="images/star_dummy.png" class="icon star" alt="$item.star.do" /> </a>
|
||||||
|
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.filer }}
|
||||||
|
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item icon file-as" title="$item.star.filer"></a>
|
||||||
|
{{ endif }}
|
||||||
|
|
||||||
|
{{ if $item.plink }}<a class="icon link" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wall-item-actions-tools">
|
||||||
|
|
||||||
|
{{ if $item.drop.dropping }}
|
||||||
|
<input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
|
||||||
|
<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drop" title="$item.drop.delete">$item.drop.delete</a>
|
||||||
|
{{ endif }}
|
||||||
|
{{ if $item.edpost }}
|
||||||
|
<a class="icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||||
|
{{ endif }}
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-location">$item.location </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wall-item-bottom">
|
||||||
|
<div class="wall-item-links"></div>
|
||||||
|
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
|
||||||
|
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wall-item-comment-wrapper" >
|
||||||
|
$item.comment
|
||||||
|
</div>
|
|
@ -2041,7 +2041,7 @@ ul.tabs li .active {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
top: -20px; left:0px;
|
top: -16px; left:0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-indent: 40px;
|
text-indent: 40px;
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -2415,8 +2415,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -2035,7 +2035,7 @@ ul.tabs li .active {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
top: -20px; left:0px;
|
top: -16px; left:0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-indent: 40px;
|
text-indent: 40px;
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -2409,8 +2409,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -1966,7 +1966,7 @@ ul.tabs li .active {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
top: -20px; left:0px;
|
top: -16px; left:0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-indent: 40px;
|
text-indent: 40px;
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -2340,8 +2340,8 @@ float: left;
|
||||||
display: none;
|
display: none;
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
/* position: absolute; */
|
/* position: absolute; */
|
||||||
left: -2px;
|
left: 0px;
|
||||||
top: -20px;
|
top: -16px;
|
||||||
}
|
}
|
||||||
.contact-wrapper {
|
.contact-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
Loading…
Reference in a new issue