You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bf...@apache.org on 2013/10/17 00:17:42 UTC

git commit: updated refs/heads/ui-restyle to 261eba9

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 <br...@citrix.com>
Authored: Wed Oct 16 15:17:31 2013 -0700
Committer: Brian Federle <br...@citrix.com>
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;
             }
         }