Commit f371c370 authored by delanoe's avatar delanoe

[CSS] Fixe size of text in menu

parent 4aa06040
...@@ -73,12 +73,12 @@ ...@@ -73,12 +73,12 @@
{% if project %} {% if project %}
<li><a href="/projects/{{project.id}}"> <li><a href="/projects/{{project.id}}">
<span class="glyphicon glyphicon-book" aria-hidden="true"></span> <span class="glyphicon glyphicon-book" aria-hidden="true"></span>
{{project.name}}</a></li> {{project.name | truncatechars:15}}</a></li>
{% endif %} {% endif %}
{% if corpus %} {% if corpus %}
<li><a href="/projects/{{project.id}}/corpora/{{corpus.id}}"> <li><a href="/projects/{{project.id}}/corpora/{{corpus.id}}">
<span class="glyphicon glyphicon-file" aria-hidden="true"></span> <span class="glyphicon glyphicon-file" aria-hidden="true"></span>
{{corpus.name}} {{corpus.name | truncatechars:15}}
</a></li> </a></li>
{% endif %} {% endif %}
</ul> </ul>
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
<li class="dropdown"> <li class="dropdown">
<a href="#" role="button" class="dropdown-toggle" data-toggle="dropdown" title="That is your login"><i class="icon-user"></i> <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> <span class="glyphicon glyphicon-user" aria-hidden="true" style="color:white"></span>
{{ user.username }} {{ user.username | truncatechars:15}}
<i class="caret"></i> <i class="caret"></i>
</a> </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