##// END OF EJS Templates
changeset: do not uppercase the hash in breadcrumbs
Aras Pranckevicius -
r1956:fe64fecd beta
parent child Browse files
Show More
@@ -2984,6 +2984,11 table.code-browser .browser-dir {
2984 padding: 11px 0 11px 10px;
2984 padding: 11px 0 11px 10px;
2985 }
2985 }
2986
2986
2987 .breadcrumbs .hash {
2988 text-transform: none;
2989 color: #fff;
2990 }
2991
2987 .breadcrumbs a {
2992 .breadcrumbs a {
2988 color: #FFF;
2993 color: #FFF;
2989 }
2994 }
@@ -11,7 +11,7
11 »
11 »
12 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
12 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
13 »
13 »
14 ${_('Changeset')} - r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)}
14 ${_('Changeset')} - <span class='hash'>r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)}</span>
15 </%def>
15 </%def>
16
16
17 <%def name="page_nav()">
17 <%def name="page_nav()">
General Comments 0
You need to be logged in to leave comments. Login now