Project dashboard: Fix user label overflow

Adds text-overflow for long user names on project dashboard
This commit is contained in:
Brian Federle 2014-10-23 11:29:02 -07:00
parent 94b16b3bd5
commit 160fc13713
2 changed files with 13 additions and 8 deletions

View File

@ -10012,13 +10012,17 @@ div.container div.panel div#details-tab-addloadBalancer.detail-group div.loadBal
}
.project-dashboard-view .users .system-dashboard li .header {
width: 77px;
/*+placement:shift 7px 110px;*/
position: relative;
left: 7px;
top: 110px;
position: absolute;
text-align: center;
width: 77px;
max-width: 77px;
/*+placement:shift 7px 110px;*/
position: relative;
left: 7px;
top: 110px;
position: absolute;
text-align: center;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/**** Info box*/

View File

@ -106,7 +106,8 @@
$.each(item, function(arrayKey, arrayValue) {
var $arrayElem = $li.find('[data-list-item=' + arrayKey + ']');
$arrayElem.html(_s(arrayValue));
$arrayElem.text(_s(arrayValue));
$arrayElem.attr('title', _s(arrayValue));
});
$li.attr({