Merge branch '4.5'

* 4.5:
  CLOUDSTACK-7837: [UI] Make the Source CIDR column wide enough to fit the CIDR value without ellipsizing
This commit is contained in:
Rajani Karuturi 2014-11-05 16:26:08 +05:30
commit 083feab7c0

View File

@ -8267,7 +8267,7 @@ div.container div.panel div#details-tab-addloadBalancer.detail-group div.loadBal
.multi-edit .data .data-body .data-item > table tbody tr td span {
overflow: hidden;
max-width: 78px;
max-width: 90%;
display: block;
float: left;
text-overflow: ellipsis;
@ -8425,6 +8425,17 @@ div.container div.panel div#details-tab-addloadBalancer.detail-group div.loadBal
font-size: 10px;
}
/* special case for 'Source CIDR' column - make it wide enough to fit a CIDR without ellipsizing*/
.detail-view .multi-edit table tr th.cidrlist,
.detail-view .multi-edit table tr td.cidrlist {
min-width: 112px !important;
max-width: 112px !important;
}
.detail-view .multi-edit td.cidrlist input {
width: 85%;
}
/** Header fields*/
.multi-edit .header-fields {
position: relative;