diff --git a/ui/stylesheets/cloudstack.css b/ui/stylesheets/cloudstack.css index b2c9f417172..6e09ab07f8f 100644 --- a/ui/stylesheets/cloudstack.css +++ b/ui/stylesheets/cloudstack.css @@ -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 { diff --git a/ui/stylesheets/csui/_list.scss b/ui/stylesheets/csui/_list.scss index c441b6e8164..0a61e175220 100644 --- a/ui/stylesheets/csui/_list.scss +++ b/ui/stylesheets/csui/_list.scss @@ -60,7 +60,11 @@ } &.reorder { - width: 150px; + $width: 150px; + + width: $width; + min-width: $width; + max-width: $width; } }