##// END OF EJS Templates
css: drop -moz-border-radius and -moz-box-shadow...
css: drop -moz-border-radius and -moz-box-shadow Firefox 4.0 added support for border-radius and box-shadow. Firefox 13.0 and later emits errors for -moz-border-radius. There is thus no reasons to keep the old styles.

File last commit:

r3392:f74be335 beta
r3432:cc337324 beta
Show More
forks.html
32 lines | 665 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Forks') % c.repo_name} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_(u'Home'),h.url('/'))}
&raquo;
${h.repo_link(c.rhodecode_db_repo.groups_and_repo)}
&raquo;
${_('forks')}
</%def>
<%def name="page_nav()">
${self.menu('forks')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
<div id="forks">
${c.forks_data}
</div>
</div>
</div>
</%def>