diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css
--- a/kallithea/public/css/style.css
+++ b/kallithea/public/css/style.css
@@ -532,7 +532,7 @@ div.header img {
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
}
-#content div.panel div.title {
+#content div.panel div.panel-heading {
clear: both;
overflow: hidden;
background-color: #577632;
@@ -543,7 +543,7 @@ div.header img {
border-radius: 4px 4px 0 0;
}
-#content div.panel div.title h5 {
+#content div.panel div.panel-heading h5 {
float: left;
border: none;
color: #fff;
@@ -551,22 +551,22 @@ div.header img {
padding: 11px 0 11px 10px;
}
-#content div.panel div.title .link-white {
+#content div.panel div.panel-heading .link-white {
color: #FFFFFF;
}
-#content div.panel div.title .link-white.current {
+#content div.panel div.panel-heading .link-white.current {
color: #BFE3FF;
}
-#content div.panel div.title ul.links li {
+#content div.panel div.panel-heading ul.links li {
list-style: none;
float: left;
margin: 0;
padding: 0;
}
-#content div.panel div.title ul.links li a {
+#content div.panel div.panel-heading ul.links li a {
font-size: 13px;
font-weight: 700;
height: 1%;
@@ -574,14 +574,14 @@ div.header img {
text-decoration: none;
}
-#content div.panel div.title ul.links.nav-tabs li a {
+#content div.panel div.panel-heading ul.links.nav-tabs li a {
float: left;
color: #fff;
margin: 0;
padding: 11px 10px 11px 10px;
}
-#content div.panel div.title ul.links.icon-only-links li a {
+#content div.panel div.panel-heading ul.links.icon-only-links li a {
float: left;
color: #fff;
margin: 0;
@@ -1440,7 +1440,7 @@ a.metatag[tag="license"]:hover {
color: #FFF;
}
-#login div.title {
+#login div.panel-heading {
clear: both;
overflow: hidden;
position: relative;
@@ -1676,7 +1676,7 @@ a.metatag[tag="license"]:hover {
background-color: inherit !important;
}
-#register div.title {
+#register div.panel-heading {
clear: both;
overflow: hidden;
position: relative;
@@ -3057,11 +3057,11 @@ div.gravatar img {
padding: 55px 10px 14px 10px !important;
}
-#content div.panel div.title div.search {
+#content div.panel div.panel-heading div.search {
border-left: 1px solid #576622;
}
-#content div.panel div.title div.search div.input input {
+#content div.panel div.panel-heading div.search div.input input {
border: 1px solid #576622;
}
@@ -3208,7 +3208,7 @@ img.icon, .right .merge img {
}
#header ul#logged-user,
-#content div.panel div.title ul.links,
+#content div.panel div.panel-heading ul.links,
#content div.panel div.message div.dismiss,
#content div.panel div.traffic div.legend ul {
float: right;
@@ -3471,8 +3471,8 @@ div.form div.fields div.buttons {
padding: 0;
}
-#login div.title h5,
-#register div.title h5 {
+#login div.panel-heading h5,
+#register div.panel-heading h5 {
color: #fff;
margin: 10px;
padding: 0;
diff --git a/kallithea/templates/about.html b/kallithea/templates/about.html
--- a/kallithea/templates/about.html
+++ b/kallithea/templates/about.html
@@ -13,7 +13,7 @@
-
+
${_('About')} Kallithea
diff --git a/kallithea/templates/admin/admin.html b/kallithea/templates/admin/admin.html
--- a/kallithea/templates/admin/admin.html
+++ b/kallithea/templates/admin/admin.html
@@ -21,7 +21,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/auth/auth_settings.html b/kallithea/templates/admin/auth/auth_settings.html
--- a/kallithea/templates/admin/auth/auth_settings.html
+++ b/kallithea/templates/admin/auth/auth_settings.html
@@ -18,7 +18,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
${h.form(url('auth_settings'))}
diff --git a/kallithea/templates/admin/defaults/defaults.html b/kallithea/templates/admin/defaults/defaults.html
--- a/kallithea/templates/admin/defaults/defaults.html
+++ b/kallithea/templates/admin/defaults/defaults.html
@@ -18,7 +18,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/gists/edit.html b/kallithea/templates/admin/gists/edit.html
--- a/kallithea/templates/admin/gists/edit.html
+++ b/kallithea/templates/admin/gists/edit.html
@@ -25,7 +25,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/gists/index.html b/kallithea/templates/admin/gists/index.html
--- a/kallithea/templates/admin/gists/index.html
+++ b/kallithea/templates/admin/gists/index.html
@@ -29,7 +29,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
%if c.authuser.username != 'default':
diff --git a/kallithea/templates/admin/gists/new.html b/kallithea/templates/admin/gists/new.html
--- a/kallithea/templates/admin/gists/new.html
+++ b/kallithea/templates/admin/gists/new.html
@@ -25,7 +25,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/gists/show.html b/kallithea/templates/admin/gists/show.html
--- a/kallithea/templates/admin/gists/show.html
+++ b/kallithea/templates/admin/gists/show.html
@@ -17,7 +17,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
%if c.authuser.username != 'default':
diff --git a/kallithea/templates/admin/my_account/my_account.html b/kallithea/templates/admin/my_account/my_account.html
--- a/kallithea/templates/admin/my_account/my_account.html
+++ b/kallithea/templates/admin/my_account/my_account.html
@@ -15,7 +15,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/notifications/notifications.html b/kallithea/templates/admin/notifications/notifications.html
--- a/kallithea/templates/admin/notifications/notifications.html
+++ b/kallithea/templates/admin/notifications/notifications.html
@@ -16,7 +16,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/notifications/show_notification.html b/kallithea/templates/admin/notifications/show_notification.html
--- a/kallithea/templates/admin/notifications/show_notification.html
+++ b/kallithea/templates/admin/notifications/show_notification.html
@@ -18,7 +18,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/permissions/permissions.html b/kallithea/templates/admin/permissions/permissions.html
--- a/kallithea/templates/admin/permissions/permissions.html
+++ b/kallithea/templates/admin/permissions/permissions.html
@@ -18,7 +18,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/repo_groups/repo_group_add.html b/kallithea/templates/admin/repo_groups/repo_group_add.html
--- a/kallithea/templates/admin/repo_groups/repo_group_add.html
+++ b/kallithea/templates/admin/repo_groups/repo_group_add.html
@@ -20,7 +20,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/repo_groups/repo_group_edit.html b/kallithea/templates/admin/repo_groups/repo_group_edit.html
--- a/kallithea/templates/admin/repo_groups/repo_group_edit.html
+++ b/kallithea/templates/admin/repo_groups/repo_group_edit.html
@@ -29,7 +29,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
${self.breadcrumbs_side_links()}
diff --git a/kallithea/templates/admin/repo_groups/repo_groups.html b/kallithea/templates/admin/repo_groups/repo_groups.html
--- a/kallithea/templates/admin/repo_groups/repo_groups.html
+++ b/kallithea/templates/admin/repo_groups/repo_groups.html
@@ -17,7 +17,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
%if h.HasPermissionAny('hg.admin')():
diff --git a/kallithea/templates/admin/repos/repo_add.html b/kallithea/templates/admin/repos/repo_add.html
--- a/kallithea/templates/admin/repos/repo_add.html
+++ b/kallithea/templates/admin/repos/repo_add.html
@@ -26,7 +26,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
<%include file="repo_add_base.html"/>
diff --git a/kallithea/templates/admin/repos/repo_creating.html b/kallithea/templates/admin/repos/repo_creating.html
--- a/kallithea/templates/admin/repos/repo_creating.html
+++ b/kallithea/templates/admin/repos/repo_creating.html
@@ -19,7 +19,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/repos/repo_edit.html b/kallithea/templates/admin/repos/repo_edit.html
--- a/kallithea/templates/admin/repos/repo_edit.html
+++ b/kallithea/templates/admin/repos/repo_edit.html
@@ -19,7 +19,7 @@
<%def name="main()">
${self.repo_context_bar('options')}
-
+
diff --git a/kallithea/templates/admin/repos/repos.html b/kallithea/templates/admin/repos/repos.html
--- a/kallithea/templates/admin/repos/repos.html
+++ b/kallithea/templates/admin/repos/repos.html
@@ -14,7 +14,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
%if h.HasPermissionAny('hg.admin','hg.create.repository')():
diff --git a/kallithea/templates/admin/settings/settings.html b/kallithea/templates/admin/settings/settings.html
--- a/kallithea/templates/admin/settings/settings.html
+++ b/kallithea/templates/admin/settings/settings.html
@@ -17,7 +17,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/user_groups/user_group_add.html b/kallithea/templates/admin/user_groups/user_group_add.html
--- a/kallithea/templates/admin/user_groups/user_group_add.html
+++ b/kallithea/templates/admin/user_groups/user_group_add.html
@@ -19,7 +19,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/user_groups/user_group_edit.html b/kallithea/templates/admin/user_groups/user_group_edit.html
--- a/kallithea/templates/admin/user_groups/user_group_edit.html
+++ b/kallithea/templates/admin/user_groups/user_group_edit.html
@@ -19,7 +19,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/user_groups/user_groups.html b/kallithea/templates/admin/user_groups/user_groups.html
--- a/kallithea/templates/admin/user_groups/user_groups.html
+++ b/kallithea/templates/admin/user_groups/user_groups.html
@@ -17,7 +17,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
%if h.HasPermissionAny('hg.admin', 'hg.usergroup.create.true')():
diff --git a/kallithea/templates/admin/users/user_add.html b/kallithea/templates/admin/users/user_add.html
--- a/kallithea/templates/admin/users/user_add.html
+++ b/kallithea/templates/admin/users/user_add.html
@@ -19,7 +19,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/users/user_edit.html b/kallithea/templates/admin/users/user_edit.html
--- a/kallithea/templates/admin/users/user_edit.html
+++ b/kallithea/templates/admin/users/user_edit.html
@@ -19,7 +19,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/admin/users/users.html b/kallithea/templates/admin/users/users.html
--- a/kallithea/templates/admin/users/users.html
+++ b/kallithea/templates/admin/users/users.html
@@ -16,7 +16,7 @@
<%def name="main()">
-
+
${self.breadcrumbs()}
-
diff --git a/kallithea/templates/changelog/changelog.html b/kallithea/templates/changelog/changelog.html
--- a/kallithea/templates/changelog/changelog.html
+++ b/kallithea/templates/changelog/changelog.html
@@ -29,7 +29,7 @@
${self.repo_context_bar('changelog', c.first_revision.raw_id if c.first_revision else None)}
-
+
${self.breadcrumbs()}
diff --git a/kallithea/templates/changeset/changeset.html b/kallithea/templates/changeset/changeset.html
--- a/kallithea/templates/changeset/changeset.html
+++ b/kallithea/templates/changeset/changeset.html
@@ -20,7 +20,7 @@
${self.repo_context_bar('changelog', c.changeset.raw_id)}