# HG changeset patch # User neko259 # Date 2015-03-24 14:45:18 # Node ID 783302c5c53c1b90dbcce06fe697961a88f8e3af # Parent a79fce7485b8b7b1b2562cea228783b2b655bf48 Moved notifications link to right 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 %}