diff options
author | tommy tomson <thomas.bierey@gmx.de> | 2012-04-16 17:12:08 +0200 |
---|---|---|
committer | tommy tomson <thomas.bierey@gmx.de> | 2012-04-16 17:12:08 +0200 |
commit | b32a7315172937490b5a63095d595a48d837823d (patch) | |
tree | 879583b6ebe44ac2bb17c199a8763216014b7bf8 /view/theme/diabook-aerith | |
parent | 947b6073b1920dfcb7de273dd6dae9b1ff3d7458 (diff) | |
download | volse-hubzilla-b32a7315172937490b5a63095d595a48d837823d.tar.gz volse-hubzilla-b32a7315172937490b5a63095d595a48d837823d.tar.bz2 volse-hubzilla-b32a7315172937490b5a63095d595a48d837823d.zip |
diabook-themes: bug-fixes
Diffstat (limited to 'view/theme/diabook-aerith')
-rw-r--r-- | view/theme/diabook-aerith/comment_item.tpl | 14 | ||||
-rwxr-xr-x[-rw-r--r--] | view/theme/diabook-aerith/directory_item.tpl | 1 | ||||
-rw-r--r-- | view/theme/diabook-aerith/nets.tpl | 14 |
3 files changed, 17 insertions, 12 deletions
diff --git a/view/theme/diabook-aerith/comment_item.tpl b/view/theme/diabook-aerith/comment_item.tpl index 47046c371..ee4dfba45 100644 --- a/view/theme/diabook-aerith/comment_item.tpl +++ b/view/theme/diabook-aerith/comment_item.tpl @@ -12,13 +12,13 @@ </div> <div class="comment-edit-photo-end"></div> <textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);tautogrow($id)" onBlur="commentClose(this,$id);" >$comment</textarea> - <a class="icon bb-image" onclick="insertFormatting('$comment','img',$id);">img</a> - <a class="icon bb-url" onclick="insertFormatting('$comment','url',$id);">url</a> - <a class="icon bb-video" onclick="insertFormatting('$comment','video',$id);">video</a> - <a class="icon underline" onclick="insertFormatting('$comment','u',$id);">u</a> - <a class="icon italic" onclick="insertFormatting('$comment','i',$id);">i</a> - <a class="icon bold" onclick="insertFormatting('$comment','b',$id);">b</a> - <a class="icon quote" onclick="insertFormatting('$comment','quote',$id);">quote</a> + <a class="icon bb-image" style="cursor: pointer;" onclick="insertFormatting('$comment','img',$id);">img</a> + <a class="icon bb-url" style="cursor: pointer;" onclick="insertFormatting('$comment','url',$id);">url</a> + <a class="icon bb-video" style="cursor: pointer;" onclick="insertFormatting('$comment','video',$id);">video</a> + <a class="icon underline" style="cursor: pointer;" onclick="insertFormatting('$comment','u',$id);">u</a> + <a class="icon italic" style="cursor: pointer;" onclick="insertFormatting('$comment','i',$id);">i</a> + <a class="icon bold" style="cursor: pointer;" onclick="insertFormatting('$comment','b',$id);">b</a> + <a class="icon quote" style="cursor: pointer;" onclick="insertFormatting('$comment','quote',$id);">quote</a> {{ if $qcomment }} <select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" > <option value=""></option> diff --git a/view/theme/diabook-aerith/directory_item.tpl b/view/theme/diabook-aerith/directory_item.tpl index db1936e4b..bc2af16c2 100644..100755 --- a/view/theme/diabook-aerith/directory_item.tpl +++ b/view/theme/diabook-aerith/directory_item.tpl @@ -7,4 +7,5 @@ </a> </div> </div> + <div class="contact-name" id="directory-name-$id">$name</div> </div> diff --git a/view/theme/diabook-aerith/nets.tpl b/view/theme/diabook-aerith/nets.tpl index 637b7a04d..68a8e88e9 100644 --- a/view/theme/diabook-aerith/nets.tpl +++ b/view/theme/diabook-aerith/nets.tpl @@ -1,11 +1,15 @@ -<div id="nets-sidebar" class="widget"> +<div id="profile_side"> <h3>$title</h3> <div id="nets-desc">$desc</div> - - <ul class="nets-ul"> - <li class="tool {{ if $sel_all }}selected{{ endif }}"><a style="text-decoration: none;" href="$base" class="nets-link nets-all">$all</a></li> + + <ul class="menu-profile-side"> + <li class="menu-profile-list"> + <span class="menu-profile-icon {{ if $sel_all }}group_selected{{else}}group_unselected{{ endif }}"></span> + <a style="text-decoration: none;" href="$base" class="menu-profile-list-item">$all</a></li> {{ for $nets as $net }} - <li class="tool {{ if $net.selected }}selected{{ endif }}"><a href="$base?nets=$net.ref" class="nets-link nets-selected">$net.name</a></li> + <li class="menu-profile-list"> + <span class="menu-profile-icon {{ if $net.selected }}group_selected{{else}}group_unselected{{ endif }}"></span> + <a href="$base?nets=$net.ref" class="menu-profile-list-item">$net.name</a></li> {{ endfor }} </ul> </div> |