diff options
author | Leif Johansson <leifj@sunet.se> | 2011-06-13 17:42:59 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2011-06-13 17:42:59 +0200 |
commit | 63eac434d82c8a18c3c2b437049f8c2401b0349f (patch) | |
tree | dd1ed31577aeb4017950e50617542c9293424775 /templates/tree.html | |
parent | 70aa706dd2977a386f6662c3f32615e600edecdd (diff) |
style polish, new jstree (still not working with jquery 1.5) and fresh jquery
Diffstat (limited to 'templates/tree.html')
-rw-r--r-- | templates/tree.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/tree.html b/templates/tree.html index bc8b5fd..f925165 100644 --- a/templates/tree.html +++ b/templates/tree.html @@ -35,9 +35,9 @@ $(function() { <li><b>{{ prefix_url }}</b></li> {% if name and render.up %} {% if name.parent %} - <li><a href="{{name.parent.url}}"><div class="ui-icon ui-icon-arrowreturnthick-1-w"></div></a></li> + <li><a class="tip" title="Up one level" href="{{name.parent.url}}"><span style="vertical-align: bottom;" class="ui-icon ui-icon-arrowthick-1-n"></span></a></li> {% else %} - <li><a href="/name"><div class="ui-icon ui-icon-arrowreturnthick-1-w"></div></a></li> + <li><a class="tip" title="Up one level" href="/name"><span style="vertical-align: bottom;" class="ui-icon ui-icon-arrowthickstop-1-n"></span></a></li> {% endif %} {% endif %} </ul> @@ -64,7 +64,7 @@ $(function() { {% endif %} </div --> </li> -<li style="margin-left: 10px; width: 59%;"> +<li style="margin-bottom: 80px; margin-left: 10px; width: 59%;"> <div id="headline"> <a style="text-decoration: none" href="{% if name %}{{name.url}}{% else %}/user/home{% endif %}">{% if name %}{{name.shortname}}{% else %}Dashboard{% endif %}</a> </div> |