aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortomtom84 <63dc41d76451@ba77e90e49a6.anonbox.net>2012-03-03 10:09:28 -0800
committertomtom84 <63dc41d76451@ba77e90e49a6.anonbox.net>2012-03-03 10:09:28 -0800
commit1dfd5c4f85f2e0407f006ca962dc3dd62b092aba (patch)
tree4c599a703cca28734ee4860b724249c1dad8b037
parente84e684fdc55967601047cc9f8e366749aaceafc (diff)
parentd4ac1f2a9cc8d744c6e47eb358ac1f1cfa4ce458 (diff)
downloadvolse-hubzilla-1dfd5c4f85f2e0407f006ca962dc3dd62b092aba.tar.gz
volse-hubzilla-1dfd5c4f85f2e0407f006ca962dc3dd62b092aba.tar.bz2
volse-hubzilla-1dfd5c4f85f2e0407f006ca962dc3dd62b092aba.zip
Merge pull request #67 from tomtom84/master
fixes in diabook theme
-rwxr-xr-ximages/star.pngbin0 -> 388 bytes
-rw-r--r--images/star_dummy.pngbin0 -> 183 bytes
-rw-r--r--view/theme/diabook/icons/isstar.pngbin0 -> 1277 bytes
-rwxr-xr-xview/theme/diabook/icons/star.pngbin339 -> 388 bytes
-rw-r--r--view/theme/diabook/icons/star_dummy.pngbin0 -> 183 bytes
-rw-r--r--view/theme/diabook/style.css4
-rw-r--r--view/theme/diabook/wall_item.tpl23
7 files changed, 17 insertions, 10 deletions
diff --git a/images/star.png b/images/star.png
new file mode 100755
index 000000000..0b00cb189
--- /dev/null
+++ b/images/star.png
Binary files differ
diff --git a/images/star_dummy.png b/images/star_dummy.png
new file mode 100644
index 000000000..ce11f30d4
--- /dev/null
+++ b/images/star_dummy.png
Binary files differ
diff --git a/view/theme/diabook/icons/isstar.png b/view/theme/diabook/icons/isstar.png
new file mode 100644
index 000000000..c955b25b5
--- /dev/null
+++ b/view/theme/diabook/icons/isstar.png
Binary files differ
diff --git a/view/theme/diabook/icons/star.png b/view/theme/diabook/icons/star.png
index 32eff5a50..0b00cb189 100755
--- a/view/theme/diabook/icons/star.png
+++ b/view/theme/diabook/icons/star.png
Binary files differ
diff --git a/view/theme/diabook/icons/star_dummy.png b/view/theme/diabook/icons/star_dummy.png
new file mode 100644
index 000000000..ce11f30d4
--- /dev/null
+++ b/view/theme/diabook/icons/star_dummy.png
Binary files differ
diff --git a/view/theme/diabook/style.css b/view/theme/diabook/style.css
index d9d88690f..ecd995d5f 100644
--- a/view/theme/diabook/style.css
+++ b/view/theme/diabook/style.css
@@ -100,11 +100,13 @@
.icon.recycle { background-image: url("../../../view/theme/diabook/icons/recycle.png");}
.icon.remote-link { background-image: url("../../../view/theme/diabook/icons/remote.png");}
.icon.tagged { background-image: url("../../../view/theme/diabook/icons/tagged.png");}
-.icon.unstarred { background-image: url("../../../view/theme/diabook/icons/unstarred.png");}
+.icon.unstarred { background-image: url("../../../view/theme/diabook/icons/star.png");}
.icon.star { background-image: url("../../../view/theme/diabook/icons/star.png");}
.icon.link { background-image: url("../../../view/theme/diabook/icons/link.png");}
.icon.lock { background-image: url("../../../view/theme/diabook/icons/lock.png");}
.icon.unlock { background-image: url("../../../view/theme/diabook/icons/unlock.png");}
+.icon.isstar { background-image: url("../../../view/theme/diabook/icons/isstar.png");}
+
.camera { background-image: url("../../../view/theme/diabook/icons/camera.png");
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
diff --git a/view/theme/diabook/wall_item.tpl b/view/theme/diabook/wall_item.tpl
index 10d395316..c836d4fbb 100644
--- a/view/theme/diabook/wall_item.tpl
+++ b/view/theme/diabook/wall_item.tpl
@@ -1,6 +1,6 @@
{{ if $item.indent }}{{ else }}
<div class="wall-item-decor">
- <span class="icon star $item.isstarred" id="starred-$item.id" title="$item.star.starred">$item.star.starred</span>
+ <span class="icon isstar $item.isstarred" id="starred-$item.id" title="$item.star.starred">$item.star.starred</span>
{{ if $item.lock }}<span class="icon lock fakelink" onclick="lockview(event,$item.id);" title="$item.lock">$item.lock</span>{{ endif }}
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
@@ -38,9 +38,7 @@
</div>
</div>
<div class="wall-item-bottom">
- <div class="wall-item-links">
- {{ if $item.plink }}<a class="icon link" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
- </div>
+ <div></div>
<div class="wall-item-tags">
{{ for $item.tags as $tag }}
<span class='tag'>$tag</span>
@@ -54,7 +52,8 @@
<div class="wall-item-actions">
<div class="wall-item-location">$item.location&nbsp;</div>
<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>
@@ -62,13 +61,19 @@
{{ 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 }}
+ {{ endif }}
{{ if $item.star }}
- <a href="#" id="star-$item.id" class="icon star" onclick="dostar($item.id); return false;" class="$item.star.classdo" title="$item.star.do">$item.star.do</a>
- <a href="#" id="unstar-$item.id" class="icon unstarred" onclick="dostar($item.id); return false;" class="$item.star.classundo" title="$item.star.undo">$item.star.undo</a>
+ <a href="#" id="star-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classdo" title="$item.star.do" >
+ <img src="images/star_dummy.png" class="icon star" alt="$item.star.do" /> </a>
+ <a href="#" id="unstar-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classundo" title="$item.star.undo">
+ <img src="images/star_dummy.png" class="icon star" alt="$item.star.undo" /> </a>
<a href="#" id="tagger-$item.id" class="icon tagged" onclick="itemTag($item.id); return false;" class="$item.star.classtagger" title="$item.star.tagger">$item.star.tagger</a>
- {{ endif }}
+ {{ endif }}
+
+ {{ if $item.plink }}<a class="icon link" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
+
+
</div>