mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-523:When adding Vms to an LB rule , when there are vms with display name that were provided by user and autogenearated uuid , the list vm screen extends beyond the frames original width: Fixed by associating a class with the dialog box
This commit is contained in:
parent
f7ba73f7d9
commit
ecbd0e91aa
|
|
@ -7217,6 +7217,21 @@ div.container div.panel div#details-tab-addloadBalancer.detail-group div.loadBal
|
|||
min-width: 100px;
|
||||
}
|
||||
|
||||
div.ui-dialog div.multi-edit-add-list div.view div.data-table table.body tbody tr.even td
|
||||
{
|
||||
border-right: 1px solid #BFBFBF;
|
||||
clear: none;
|
||||
color: #495A76;
|
||||
font-size: 10px;
|
||||
margin-right: 25px;
|
||||
min-width: -moz-available;
|
||||
max-width:90px;
|
||||
overflow: hidden;
|
||||
padding: 9px 5px 8px 0;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.multi-edit {
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -469,7 +469,7 @@
|
|||
// Change action label
|
||||
$listView.find('th.actions').html(_l('Select'));
|
||||
|
||||
var $dataList = $listView.dialog({
|
||||
var $dataList = $listView.addClass('multi-edit-add-list').dialog({
|
||||
dialogClass: 'multi-edit-add-list panel',
|
||||
width: 825,
|
||||
title: label,
|
||||
|
|
|
|||
Loading…
Reference in New Issue