You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2007/11/15 00:58:17 UTC

svn commit: r595142 - /lenya/trunk/src/webapp/lenya/resources/css/tabs.css

Author: andreas
Date: Wed Nov 14 15:58:17 2007
New Revision: 595142

URL: http://svn.apache.org/viewvc?rev=595142&view=rev
Log:
Use display:table-cell instead of float:left for tabbed areas to avoid wrapping

Modified:
    lenya/trunk/src/webapp/lenya/resources/css/tabs.css

Modified: lenya/trunk/src/webapp/lenya/resources/css/tabs.css
URL: http://svn.apache.org/viewvc/lenya/trunk/src/webapp/lenya/resources/css/tabs.css?rev=595142&r1=595141&r2=595142&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/resources/css/tabs.css (original)
+++ lenya/trunk/src/webapp/lenya/resources/css/tabs.css Wed Nov 14 15:58:17 2007
@@ -22,7 +22,8 @@
   background-color: #F5F4E9; 
   color: black;
   border: solid 1px #CCCCCC;
-  float: left;
+  display: table-cell;
+  vertical-align: top;
   padding: 0 20px 20px 20px;
   min-height: 400px;
 }
@@ -39,7 +40,8 @@
 }
 
 .lenya-tabs {
-  float: left;
+  display: table-cell;
+  vertical-align: top;
   /* margin-top: 40px; */
 }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org