Commit f371c370 authored by delanoe's avatar delanoe

[CSS] Fixe size of text in menu

parent 4aa06040
......@@ -73,12 +73,12 @@
{% if project %}
<li><a href="/projects/{{project.id}}">
<span class="glyphicon glyphicon-book" aria-hidden="true"></span>
{{project.name}}</a></li>
{{project.name | truncatechars:15}}</a></li>
{% endif %}
{% if corpus %}
<li><a href="/projects/{{project.id}}/corpora/{{corpus.id}}">
<span class="glyphicon glyphicon-file" aria-hidden="true"></span>
{{corpus.name}}
{{corpus.name | truncatechars:15}}
</a></li>
{% endif %}
</ul>
......@@ -87,7 +87,7 @@
<li class="dropdown">
<a href="#" role="button" class="dropdown-toggle" data-toggle="dropdown" title="That is your login"><i class="icon-user"></i>
<span class="glyphicon glyphicon-user" aria-hidden="true" style="color:white"></span>
{{ user.username }}
{{ user.username | truncatechars:15}}
<i class="caret"></i>
</a>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment