M src/wiki/templates/wiki/article.html => src/wiki/templates/wiki/article.html +1 -1
@@ 12,7 12,7 @@
<div id="article-container">
<nav id="article-menu" class="navbar navbar-expand-md nav-pills">
- <ul class="navbar-nav w-100">
+ <ul class="navbar-nav w-75">
<li class="float-left nav-item" id="article-title-li">
<h1 id="article-title">
{{ article.current_revision.title }}
M src/wiki/templates/wiki/includes/article_menu.html => src/wiki/templates/wiki/includes/article_menu.html +6 -6
@@ 3,7 3,7 @@
{% with selected_tab as selected %}
<li class="nav-item">
- <a href="{% url 'wiki:get' article_id=article.id path=urlpath.path %}" class="nav-link{% if selected == "view" %} active{% endif %}">
+ <a href="{% url 'wiki:get' article_id=article.id path=urlpath.path %}" class="px-3 nav-link{% if selected == "view" %} active{% endif %}">
<span class="fa fa-home"></span>
<span class="hidden-xs">{% trans "View" %}</span>
</a>
@@ 11,14 11,14 @@
{% if article|can_write:user and not article.current_revision.locked %}
<li class="nav-item">
- <a href="{% url 'wiki:edit' article_id=article.id path=urlpath.path %}" class="nav-link{% if selected == "edit" %} active{% endif %}">
+ <a href="{% url 'wiki:edit' article_id=article.id path=urlpath.path %}" class="px-3 nav-link{% if selected == "edit" %} active{% endif %}">
<span class="fa fa-edit"></span>
<span class="hidden-xs">{% trans "Edit" %}</span>
</a>
</li>
{% else %}
<li class="nav-item">
- <a href="{% url 'wiki:source' article_id=article.id path=urlpath.path %}" class="nav-link{% if selected == "source" %} active{% endif %}">
+ <a href="{% url 'wiki:source' article_id=article.id path=urlpath.path %}" class="px-3 nav-link{% if selected == "source" %} active{% endif %}">
<span class="fa fa-lock"></span>
<span class="hidden-xs">{% trans "View Source" %}</span>
</a>
@@ 26,7 26,7 @@
{% endif %}
<li class="nav-item">
- <a href="{% url 'wiki:history' article_id=article.id path=urlpath.path %}" class="nav-link{% if selected == "history" %} active{% endif %}">
+ <a href="{% url 'wiki:history' article_id=article.id path=urlpath.path %}" class="px-3 nav-link{% if selected == "history" %} active{% endif %}">
<span class="fa fa-clock"></span>
<span class="hidden-xs">{% trans "Changes" %}</span>
</a>
@@ 34,7 34,7 @@
{% for plugin in article_tabs %}
<li class="nav-item">
- <a href="{% url 'wiki:plugin' slug=plugin.slug article_id=article.id path=urlpath.path %}" class="nav-link{% if selected == plugin.slug %} active{% endif %}">
+ <a href="{% url 'wiki:plugin' slug=plugin.slug article_id=article.id path=urlpath.path %}" class="px-3 nav-link{% if selected == plugin.slug %} active{% endif %}">
<span class="{{ plugin.article_tab.1 }}"></span>
<span class="hidden-xs">{{ plugin.article_tab.0 }}</span>
</a>
@@ 43,7 43,7 @@
{% if not user.is_anonymous %}
<li class="nav-item">
- <a href="{% url 'wiki:settings' article_id=article.id path=urlpath.path %}" class="nav-link{% if selected == "settings" %} active{% endif %}">
+ <a href="{% url 'wiki:settings' article_id=article.id path=urlpath.path %}" class="px-3 nav-link{% if selected == "settings" %} active{% endif %}">
<span class="fa fa-wrench"></span>
<span class="hidden-xs">{% trans "Settings" %}</span>
</a>