##// END OF EJS Templates
icons: try to use consistent size of icons for dashboard.
marcink -
r2092:270f562f default
parent child Browse files
Show More
@@ -79,11 +79,11 b''
79 79
80 80 ##TYPE OF REPO
81 81 %if h.is_hg(rtype):
82 <span title="${_('Mercurial repository')}"><i class="icon-hg"></i></span>
82 <span title="${_('Mercurial repository')}"><i class="icon-hg" style="font-size: 14px;"></i></span>
83 83 %elif h.is_git(rtype):
84 <span title="${_('Git repository')}"><i class="icon-git"></i></span>
84 <span title="${_('Git repository')}"><i class="icon-git" style="font-size: 14px"></i></span>
85 85 %elif h.is_svn(rtype):
86 <span title="${_('Subversion repository')}"><i class="icon-svn"></i></span>
86 <span title="${_('Subversion repository')}"><i class="icon-svn" style="font-size: 14px"></i></span>
87 87 %endif
88 88
89 89 ##PRIVATE/PUBLIC
@@ -203,7 +203,7 b''
203 203 <%def name="repo_group_name(repo_group_name, children_groups=None)">
204 204 <div>
205 205 <a href="${h.route_path('repo_group_home', repo_group_name=repo_group_name)}">
206 <i class="icon-folder-close" title="${_('Repository group')}"></i>
206 <i class="icon-folder-close" title="${_('Repository group')}" style="font-size: 16px"></i>
207 207 %if children_groups:
208 208 ${h.literal(' &raquo; '.join(children_groups))}
209 209 %else:
General Comments 0
You need to be logged in to leave comments. Login now