1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 18:29:23 +00:00

improved user-info-popup & top-nav-grp-info popup

This commit is contained in:
llj
2014-02-07 18:41:20 +08:00
parent b3599c7ff5
commit 4dfddf6150
2 changed files with 5 additions and 2 deletions

View File

@@ -1103,6 +1103,9 @@ textarea:-moz-placeholder {/* for FF */
top:48px; top:48px;
font-size:13px; font-size:13px;
} }
#user-info-popup {
width:220px;
}
#top-nav-grp-info { #top-nav-grp-info {
top:40px; top:40px;
} }

View File

@@ -3,8 +3,8 @@
<ul> <ul>
{% for grp in groups %} {% for grp in groups %}
<li> <li>
<a href="{% url "group_info" grp.id %}" class="item"> <a href="{% url "group_info" grp.id %}" class="item" title="{{ grp.group_name }}">
{% grp_avatar grp.id 36 %} <span class="vam">{{ grp.group_name }}</span> {% grp_avatar grp.id 36 %} <span class="vam">{{ grp.group_name|truncatechars:14 }}</span>
</a> </a>
</li> </li>
{% endfor %} {% endfor %}