mirror of https://github.com/apache/cloudstack.git
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>
(cherry picked from commit 6490694231)
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
e4bf957f94
commit
5cce048f24
|
|
@ -8256,7 +8256,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;
|
||||
|
|
@ -8414,6 +8414,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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue