Fix i18n for menu strings

- There should not be a space in front of the text. This is a styling issue.

- Remove the CSS rule causing issues with spacing.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Sunil Mohan Adapa 2019-01-14 17:32:24 -08:00
parent de5ba012e1
commit d89011cc01
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2
2 changed files with 3 additions and 7 deletions

View File

@ -110,7 +110,7 @@
{% if user.is_authenticated and user_is_admin %}
<li>
{% url 'index' as index_url %}
<a href="{{ index_url }}" title='{% trans " Home" %}'
<a href="{{ index_url }}" title='{% trans "Home" %}'
class="{% if not submenu.url %}
menu_link_active {% else %} menu_link {% endif %}">
{% trans "Home" %}
@ -118,7 +118,7 @@
</li>
<li>
{% url 'apps' as apps_url %}
<a href="{{ apps_url }}" title='{% trans " Apps" %}'
<a href="{{ apps_url }}" title='{% trans "Apps" %}'
class="{% if apps_url == submenu.url %}
menu_link_active {% else %} menu_link {% endif %}">
<span class="fa fa-th"></span>
@ -127,7 +127,7 @@
</li>
<li>
{% url 'system' as system_url %}
<a href="{{ system_url }}" title='{% trans " System" %}'
<a href="{{ system_url }}" title='{% trans "System" %}'
class="{% if system_url == submenu.url %}
menu_link_active {% else %} menu_link {% endif %}">
<span class="fa fa-cog nav-icon"></span>

View File

@ -264,10 +264,6 @@ footer license-info p {
background: transparent;
}
.main-header .navbar-nav>li>a .nav-icon {
margin-right: 0px;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #FFF;
}