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 2012/11/01 23:32:15 UTC

git commit: Multi-edit table: add scrollbars for longer values

Updated Branches:
  refs/heads/master ed26f6986 -> 33a7f9ad9


Multi-edit table: add scrollbars for longer values

Add horizontal scrollbar to fix longer values (such as CIDR lists)
causing table to overflow.


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/33a7f9ad
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/33a7f9ad
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/33a7f9ad

Branch: refs/heads/master
Commit: 33a7f9ad9c91444bdb8ee48c24cbe3f776065c60
Parents: ed26f69
Author: Brian Federle <br...@citrix.com>
Authored: Thu Nov 1 15:31:45 2012 -0700
Committer: Brian Federle <br...@citrix.com>
Committed: Thu Nov 1 15:32:10 2012 -0700

----------------------------------------------------------------------
 ui/css/cloudstack3.css |   14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/33a7f9ad/ui/css/cloudstack3.css
----------------------------------------------------------------------
diff --git a/ui/css/cloudstack3.css b/ui/css/cloudstack3.css
index 9357803..75b1d00 100644
--- a/ui/css/cloudstack3.css
+++ b/ui/css/cloudstack3.css
@@ -7266,8 +7266,9 @@ div.panel.ui-dialog div.list-view div.fixed-header {
   border-radius: 5px;
   border-radius: 5px 5px 5px 5px;
   width: 74px;
+  text-indent: 0px;
   text-align: center;
-  padding: 6px 9px 4px 0px;
+  padding: 6px 0px 4px;
   background: url(../images/bg-gradients.png) repeat-x 0px -220px;
   /*+placement:shift 4px 0px;*/
   position: relative;
@@ -7389,10 +7390,18 @@ div.panel.ui-dialog div.list-view div.fixed-header {
   border-left: none;
   border-right: 1px solid #CFC9C9;
   height: 15px;
-  overflow: hidden;
+  overflow: auto;
   padding-right: 0;
 }
 
+.multi-edit .data .data-body .data-item > table tbody tr td span {
+  overflow-x: auto;
+  overflow-y: hidden;
+  width: 70px;
+  display: block;
+  float: left;
+}
+
 .multi-edit .data .data-body .data-item table tbody tr td.blank {
 }
 
@@ -7437,6 +7446,7 @@ div.panel.ui-dialog div.list-view div.fixed-header {
 .multi-edit .data .data-body .data-item tr td .expand {
   width: 14px;
   height: 15px;
+  display: block;
   cursor: pointer;
   background: #FFFFFF url(../images/sprites.png) -541px -499px;
   border: 1px solid #D0D0D0;