1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 07:27:04 +00:00

improved home-group

This commit is contained in:
llj
2012-12-03 13:47:45 +08:00
parent a40e947d5c
commit fd3796925d
2 changed files with 3 additions and 3 deletions

View File

@@ -686,10 +686,10 @@ textarea:-moz-placeholder {/* for FF */
text-align:center; text-align:center;
margin:0 1px 5px 1px; margin:0 1px 5px 1px;
} }
.mygroup a { .mygroup .name {
display:inline-block; display:inline-block;
width:100%; width:100%;
white-space:nowrap; height:1.5em;
overflow:hidden; overflow:hidden;
} }
#repo-create, #repo-create,

View File

@@ -9,7 +9,7 @@
<a href="{{ SITE_ROOT }}group/{{ group.props.id }}/" class="no-deco"> <a href="{{ SITE_ROOT }}group/{{ group.props.id }}/" class="no-deco">
<img src="{% grp_avatar_url group.props.id 48 %}" alt="{{ group.props.group_name }}的图标" title="{{ group.props.group_name }}" class="avatar" /> <img src="{% grp_avatar_url group.props.id 48 %}" alt="{{ group.props.group_name }}的图标" title="{{ group.props.group_name }}" class="avatar" />
</a> </a>
<a href="{{ SITE_ROOT }}group/{{ group.props.id }}/" title="{{ group.props.group_name }}">{{ group.props.group_name }}</a> <a class="name" href="{{ SITE_ROOT }}group/{{ group.props.id }}/" title="{{ group.props.group_name }}">{{ group.props.group_name }}</a>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>