Fix wrapping reorder column in IE9

This commit is contained in:
Brian Federle 2013-10-16 15:17:31 -07:00
parent ec4361e2f5
commit 261eba9011
2 changed files with 11 additions and 3 deletions

View File

@ -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 {

View File

@ -60,7 +60,11 @@
}
&.reorder {
width: 150px;
$width: 150px;
width: $width;
min-width: $width;
max-width: $width;
}
}