From: <fg...@us...> - 2010-09-01 12:49:57
|
Revision: 2980 http://openutils.svn.sourceforge.net/openutils/?rev=2980&view=rev Author: fgiust Date: 2010-09-01 12:49:50 +0000 (Wed, 01 Sep 2010) Log Message: ----------- fix overflow in chrome (to be tested) Modified Paths: -------------- trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/advancedSearch.css Modified: trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/advancedSearch.css =================================================================== --- trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/advancedSearch.css 2010-09-01 12:44:14 UTC (rev 2979) +++ trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/advancedSearch.css 2010-09-01 12:49:50 UTC (rev 2980) @@ -10,6 +10,10 @@ width: 97%; } +form { + overflow: auto; +} + .row { margin-top: 10px; position: relative; @@ -30,10 +34,11 @@ } .row .inner-row { - width: 50%; + width: 45%; float: left; display: inline; margin: 2px 0; + overflow: hidden; } .row .input-date { @@ -44,6 +49,7 @@ float: left; display: inline; border: 0; + width: auto; } .row .inner-row label { @@ -52,6 +58,7 @@ line-height: 15px; margin: 2px 0 0 0; font-weight: normal; + width: 46%; } #button-submit { @@ -59,5 +66,5 @@ float: right; display: inline; width: auto; - margin: 15px 15px 0 0; + margin: 0 15px 0 0; } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |