CLOUDSTACK-7837: [UI] Make the Source CIDR column wide enough to fit the CIDR value without ellipsizing

Signed-off-by: Rajani Karuturi <rajanikaruturi@gmail.com>
This commit is contained in:
Mihaela Stoica 2014-11-04 11:35:57 +00:00 committed by Rajani Karuturi
parent 2cd4ad201a
commit 6490694231
1 changed files with 12 additions and 1 deletions

View File

@ -8261,7 +8261,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;
@ -8419,6 +8419,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;