changeset 7235:06c7273e2086

templates: remove references to "breadcrumbs" class after special styling was dropped in 23a8484 panel-title and breadcrumbs() could probably also be removed.
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 08 Apr 2018 16:49:54 +0200
parents 0bf6ccd6f67c
children 0d39e48baec0
files kallithea/templates/base/base.html kallithea/templates/index_base.html kallithea/templates/pullrequests/pullrequest_show.html kallithea/templates/summary/summary.html
diffstat 4 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/base/base.html	Mon Apr 02 14:22:11 2018 +0200
+++ b/kallithea/templates/base/base.html	Sun Apr 08 16:49:54 2018 +0200
@@ -45,7 +45,7 @@
 </%def>
 
 <%def name="breadcrumbs()">
-    <div class="breadcrumbs panel-title">
+    <div class="panel-title">
     ${self.breadcrumbs_links()}
     </div>
 </%def>
--- a/kallithea/templates/index_base.html	Mon Apr 02 14:22:11 2018 +0200
+++ b/kallithea/templates/index_base.html	Sun Apr 08 16:49:54 2018 +0200
@@ -1,7 +1,7 @@
 <%page args="parent,group_name=''" />
     <div class="panel panel-primary">
         <div class="panel-heading clearfix">
-            <div class="pull-left breadcrumbs panel-title">
+            <div class="pull-left panel-title">
                 %if c.group is not None:
                     %for group in c.group.parents:
                         ${h.link_to(group.name, url('repos_group_home', group_name=group.group_name))}
--- a/kallithea/templates/pullrequests/pullrequest_show.html	Mon Apr 02 14:22:11 2018 +0200
+++ b/kallithea/templates/pullrequests/pullrequest_show.html	Sun Apr 08 16:49:54 2018 +0200
@@ -265,7 +265,7 @@
 
 <div class="panel panel-primary">
     <div class="panel-heading clearfix">
-      <div class="breadcrumbs">${_('Pull Request Content')}</div>
+      <div class="panel-title">${_('Pull Request Content')}</div>
     </div>
     <div class="panel-body">
         <div>
--- a/kallithea/templates/summary/summary.html	Mon Apr 02 14:22:11 2018 +0200
+++ b/kallithea/templates/summary/summary.html	Sun Apr 08 16:49:54 2018 +0200
@@ -170,7 +170,7 @@
 
 <div class="panel panel-primary">
     <div class="panel-heading">
-        <div class="breadcrumbs panel-title">
+        <div class="panel-title">
         %if c.cs_pagination:
             ${h.link_to(_('Latest Changes'),h.url('changelog_home',repo_name=c.repo_name))}
         %else:
@@ -220,7 +220,7 @@
 </div>
 <div class="panel panel-primary">
     <div class="panel-heading" title="${_('Readme file from revision %s:%s') % (c.db_repo.landing_rev[0], c.db_repo.landing_rev[1])}">
-        <div class="breadcrumbs panel-title">
+        <div class="panel-title">
             <a href="${h.url('files_home',repo_name=c.repo_name,revision='tip',f_path=c.readme_file)}">${c.readme_file}</a>
         </div>
     </div>