Skip to content
Snippets Groups Projects
Commit 0bc41f50 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix regression. lost overflow on left menu.

parent 3c54cb5b
No related branches found
No related tags found
No related merge requests found
...@@ -1245,6 +1245,7 @@ div.menu_titre { ...@@ -1245,6 +1245,7 @@ div.menu_titre {
padding-bottom: 4px; padding-bottom: 4px;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
width: 188px; /* required to have overflow working. must be same than menu_contenu */
} }
.mainmenuaspan .mainmenuaspan
{ {
...@@ -1627,6 +1628,7 @@ div.vmenu, td.vmenu { ...@@ -1627,6 +1628,7 @@ div.vmenu, td.vmenu {
padding-bottom: 3px; padding-bottom: 3px;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
width: 188px; /* required to have overflow working. must be same than .menu_titre */
} }
#menu_contenu_logo { padding-top: 0; } #menu_contenu_logo { padding-top: 0; }
.companylogo { } .companylogo { }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment