##// END OF EJS Templates
Moved notifications link to right
neko259 -
r1049:783302c5 default
parent child Browse files
Show More
@@ -85,13 +85,14 b' body {'
85 85 color: #eee;
86 86 }
87 87
88 .navigation_panel .link {
88 .navigation_panel .link:first-child {
89 89 border-right: 1px solid #fff;
90 90 font-weight: bold;
91 91 margin-right: 1ex;
92 92 padding-right: 1ex;
93 93 }
94 .navigation_panel .link:last-child {
94
95 .navigation_panel .right-link {
95 96 border-left: 1px solid #fff;
96 97 border-right: none;
97 98 float: right;
@@ -101,6 +102,10 b' body {'
101 102 padding-right: 0;
102 103 }
103 104
105 .navigation_panel .link {
106 font-weight: bold;
107 }
108
104 109 .navigation_panel::after, .post::after {
105 110 clear: both;
106 111 content: ".";
@@ -48,7 +48,7 b' li {'
48 48 margin-right: 1ex;
49 49 padding-right: 1ex;
50 50 }
51 .navigation_panel .link:last-child {
51 .navigation_panel .right-link {
52 52 border-left: 1px solid #fff;
53 53 border-right: none;
54 54 float: right;
@@ -36,7 +36,7 b''
36 36 <a href="{% url 'search' %}" title="{% trans 'Search' %}">[S]</a>.
37 37
38 38 {% if username %}
39 <a href="{% url 'notifications' username %}" title="{% trans 'Notifications' %}">
39 <a class="right-link link" href="{% url 'notifications' username %}" title="{% trans 'Notifications' %}">
40 40 {% trans 'Notifications' %}
41 41 {% ifnotequal new_notifications_count 0 %}
42 42 (<b>{{ new_notifications_count }}</b>)
@@ -44,7 +44,7 b''
44 44 </a>
45 45 {% endif %}
46 46
47 <a class="link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
47 <a class="right-link link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
48 48 </div>
49 49
50 50 {% block content %}{% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now