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