Customers portal : Fixed css glitch on portal instances menu

SVN:trunk[4274]
This commit is contained in:
Guillaume Lajarige
2016-07-01 10:48:02 +00:00
parent beb53fd9dc
commit 7330154dd0
2 changed files with 4 additions and 2 deletions

View File

@@ -184,7 +184,7 @@
{% for aPortal in app['combodo.portal.instance.conf'].portals %}
{% if aPortal.id != app['combodo.portal.instance.conf'].properties.id %}
{% set sGlyphiconClass = (aPortal.id == 'backoffice') ? 'fa-list-alt' : 'fa-external-link' %}
<li><a href="{{ aPortal.url }}" target="_blank"><span class="brick_icon fa {{ sGlyphiconClass }} fa-lg fa-fw"></span>{{ aPortal.label|dict_s }}</a></li>
<li><a href="{{ aPortal.url }}" target="_blank" title="{{ aPortal.label|dict_s }}"><span class="brick_icon fa {{ sGlyphiconClass }} fa-lg fa-fw"></span>{{ aPortal.label|dict_s }}</a></li>
{% endif %}
{% endfor %}
{# We display the separator only if the user has more then 1 portal. Meaning default portal + console or several portal at least #}

View File

@@ -2648,7 +2648,9 @@ tbody.collapse.in {
font-weight: normal;
line-height: $line-height-base;
color: #444444;
white-space: nowrap
white-space: nowrap;
overflow-x: hidden;
text-overflow: ellipsis;
}
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {