diff --git a/boards/static/css/md/base_page.css b/boards/static/css/md/base_page.css
--- a/boards/static/css/md/base_page.css
+++ b/boards/static/css/md/base_page.css
@@ -85,13 +85,14 @@ body {
color: #eee;
}
-.navigation_panel .link {
+.navigation_panel .link:first-child {
border-right: 1px solid #fff;
font-weight: bold;
margin-right: 1ex;
padding-right: 1ex;
}
-.navigation_panel .link:last-child {
+
+.navigation_panel .right-link {
border-left: 1px solid #fff;
border-right: none;
float: right;
@@ -101,6 +102,10 @@ body {
padding-right: 0;
}
+.navigation_panel .link {
+ font-weight: bold;
+}
+
.navigation_panel::after, .post::after {
clear: both;
content: ".";
diff --git a/boards/static/css/sw/base_page.css b/boards/static/css/sw/base_page.css
--- a/boards/static/css/sw/base_page.css
+++ b/boards/static/css/sw/base_page.css
@@ -48,7 +48,7 @@ li {
margin-right: 1ex;
padding-right: 1ex;
}
-.navigation_panel .link:last-child {
+.navigation_panel .right-link {
border-left: 1px solid #fff;
border-right: none;
float: right;
diff --git a/boards/templates/boards/base.html b/boards/templates/boards/base.html
--- a/boards/templates/boards/base.html
+++ b/boards/templates/boards/base.html
@@ -36,7 +36,7 @@
[S].
{% if username %}
-
+
{% trans 'Notifications' %}
{% ifnotequal new_notifications_count 0 %}
({{ new_notifications_count }})
@@ -44,7 +44,7 @@
{% endif %}
- {% trans 'Settings' %}
+ {% trans 'Settings' %}
{% block content %}{% endblock %}