Author: bleny Date: 2013-07-25 14:57:07 +0200 (Thu, 25 Jul 2013) New Revision: 340 Url: http://forge.codelutin.com/projects/franciaflex-magalie/repository/revisions... Log: fixes #2938 remove one line of space in storage movements block in withdraw-item-input, remove useless space below header Modified: trunk/magalie-web/src/main/webapp/WEB-INF/content/withdraw-item-input.jsp trunk/magalie-web/src/main/webapp/css/magalie-ck3x-reduced.css Modified: trunk/magalie-web/src/main/webapp/WEB-INF/content/withdraw-item-input.jsp =================================================================== --- trunk/magalie-web/src/main/webapp/WEB-INF/content/withdraw-item-input.jsp 2013-07-25 12:43:22 UTC (rev 339) +++ trunk/magalie-web/src/main/webapp/WEB-INF/content/withdraw-item-input.jsp 2013-07-25 12:57:07 UTC (rev 340) @@ -37,20 +37,22 @@ </head> <header> - <dl class="dl-horizontal"> - <dt>Réf.</dt> - <dd><s:property value="article.code" /></dd> - <dt>Desc.</dt> - <dd><s:property value="article.description" /></dd> - <dt>Prélev.</dt> - <dd> - <span id="withdrawn">0</span> - <s:if test="expectedQuantity"> - / <s:property value="expectedQuantity" /> - </s:if> - <s:property value="article.unit" /> - </dd> - </dl> + <ul class="oneItemPerLine"> + <li> + Réf. : <s:property value="article.code" /> + </li> + <li> + Desc. : <s:property value="article.description" /> + </li> + <li> + Stocké : + <span id="withdrawn">0</span> + <s:if test="expectedQuantity"> + / <s:property value="expectedQuantity" /> + </s:if> + <s:property value="article.unit" /> + </li> + </ul> </header> <section id="storageMovements"> </section> Modified: trunk/magalie-web/src/main/webapp/css/magalie-ck3x-reduced.css =================================================================== --- trunk/magalie-web/src/main/webapp/css/magalie-ck3x-reduced.css 2013-07-25 12:43:22 UTC (rev 339) +++ trunk/magalie-web/src/main/webapp/css/magalie-ck3x-reduced.css 2013-07-25 12:57:07 UTC (rev 340) @@ -60,9 +60,13 @@ margin-bottom: 1px; } +.oneItemPerLine { + margin-bottom: 0px; +} + #storageMovements, #locations { - min-height: 120px; + min-height: 100px; /* 5 * 20px for each element */ } #storageMovements div,
participants (1)
-
bleny@users.forge.codelutin.com