Updated Branches: refs/heads/ui-restyle ec4361e2f -> 261eba901
Fix wrapping reorder column in IE9 Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/261eba90 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/261eba90 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/261eba90 Branch: refs/heads/ui-restyle Commit: 261eba90116adfeef9cec5669dd04e61f32fe6ec Parents: ec4361e Author: Brian Federle <[email protected]> Authored: Wed Oct 16 15:17:31 2013 -0700 Committer: Brian Federle <[email protected]> Committed: Wed Oct 16 15:17:31 2013 -0700 ---------------------------------------------------------------------- ui/stylesheets/cloudstack.css | 8 ++++++-- ui/stylesheets/csui/_list.scss | 6 +++++- 2 files changed, 11 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/261eba90/ui/stylesheets/cloudstack.css ---------------------------------------------------------------------- diff --git a/ui/stylesheets/cloudstack.css b/ui/stylesheets/cloudstack.css index b2c9f41..6e09ab0 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 { http://git-wip-us.apache.org/repos/asf/cloudstack/blob/261eba90/ui/stylesheets/csui/_list.scss ---------------------------------------------------------------------- diff --git a/ui/stylesheets/csui/_list.scss b/ui/stylesheets/csui/_list.scss index c441b6e..0a61e17 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; } }
