mirror of https://github.com/apache/cloudstack.git
Fix wrapping reorder column in IE9
This commit is contained in:
parent
ec4361e2f5
commit
261eba9011
|
|
@ -6257,7 +6257,9 @@ ul.ui-tabs-nav {
|
|||
.list-view table th.actions, .list-view table td.actions {
|
||||
width: 80px; }
|
||||
.list-view table th.reorder, .list-view table td.reorder {
|
||||
width: 150px; }
|
||||
width: 150px;
|
||||
min-width: 150px;
|
||||
max-width: 150px; }
|
||||
.list-view table td.first {
|
||||
cursor: pointer; }
|
||||
.list-view table td.first:hover {
|
||||
|
|
@ -6759,7 +6761,9 @@ ul.ui-tabs-nav {
|
|||
.multi-edit table th.actions, .multi-edit table td.actions {
|
||||
width: 80px; }
|
||||
.multi-edit table th.reorder, .multi-edit table td.reorder {
|
||||
width: 150px; }
|
||||
width: 150px;
|
||||
min-width: 150px;
|
||||
max-width: 150px; }
|
||||
.multi-edit table td.first {
|
||||
cursor: pointer; }
|
||||
.multi-edit table td.first:hover {
|
||||
|
|
|
|||
|
|
@ -60,7 +60,11 @@
|
|||
}
|
||||
|
||||
&.reorder {
|
||||
width: 150px;
|
||||
$width: 150px;
|
||||
|
||||
width: $width;
|
||||
min-width: $width;
|
||||
max-width: $width;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue