# HG changeset patch # User Marcin Kuzminski # Date 2011-11-04 19:27:53 # Node ID 713315371e03c7b657568838a1adde8140c73877 # Parent b1e1dffd595c6b3a10a310e3865e78932c32901d added quick filters into branches and tags diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css +++ b/rhodecode/public/css/style.css @@ -3009,15 +3009,12 @@ div#legend_container table td,div#legend -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset; -webkit-border-radius: 4px; -moz-border-radius: 4px; - border-radius: 4px; -} - -#q_filter { - border: 0 none; - color: #AAAAAA; - margin-bottom: -4px; - margin-top: -4px; - padding-left: 3px; + border-radius: 4px; + border: 0 none; + color: #AAAAAA; + margin-bottom: -4px; + margin-top: -4px; + padding-left: 3px; } #node_filter { diff --git a/rhodecode/templates/branches/branches.html b/rhodecode/templates/branches/branches.html --- a/rhodecode/templates/branches/branches.html +++ b/rhodecode/templates/branches/branches.html @@ -6,6 +6,7 @@ <%def name="breadcrumbs_links()"> + ${h.link_to(u'Home',h.url('/'))} » ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} @@ -27,5 +28,13 @@
<%include file='branches_data.html'/>
- + + \ No newline at end of file diff --git a/rhodecode/templates/tags/tags.html b/rhodecode/templates/tags/tags.html --- a/rhodecode/templates/tags/tags.html +++ b/rhodecode/templates/tags/tags.html @@ -7,6 +7,7 @@ <%def name="breadcrumbs_links()"> + ${h.link_to(u'Home',h.url('/'))} » ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} @@ -27,5 +28,13 @@
<%include file='tags_data.html'/>
- + + \ No newline at end of file