This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository echobase. See http://git.codelutin.com/echobase.git commit a577d2620e41e6c2ba0c03d3de30a0430b321b2e Author: Tony CHEMIT <chemit@codelutin.com> Date: Tue Dec 30 13:45:52 2014 +0100 fixes #6270: Problème de feuille de style si plusieurs notifications --- .../main/webapp/WEB-INF/decorators/layout-default.jsp | 9 +++++---- echobase-ui/src/main/webapp/css/screen.css | 19 +++++++++---------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/echobase-ui/src/main/webapp/WEB-INF/decorators/layout-default.jsp b/echobase-ui/src/main/webapp/WEB-INF/decorators/layout-default.jsp index 17513bf..a9f15ff 100644 --- a/echobase-ui/src/main/webapp/WEB-INF/decorators/layout-default.jsp +++ b/echobase-ui/src/main/webapp/WEB-INF/decorators/layout-default.jsp @@ -53,12 +53,13 @@ <s:if test="%{#session.echoBaseSession.withFlashMessages}"> <div class="info_success clearfix"> - <ul class="actionMessages fleft"> <s:iterator value="%{#session.echoBaseSession.flashMessages}" var="message"> - <li><span><s:property value="#message" escapeHtml="false"/></span> - </li> - </s:iterator> + <ul class="actionMessages fleft"> + + <li><span><s:property value="#message" escapeHtml="false"/></span></li> + </ul> + </s:iterator> </div> </s:if> diff --git a/echobase-ui/src/main/webapp/css/screen.css b/echobase-ui/src/main/webapp/css/screen.css index 3d8285d..86d54d9 100644 --- a/echobase-ui/src/main/webapp/css/screen.css +++ b/echobase-ui/src/main/webapp/css/screen.css @@ -89,26 +89,25 @@ select{ padding:2px; margin-bottom: 10px; } -.info_success { - background:url(../images/left_success.png) no-repeat 0 0; - padding-left:42px; + +.info_success ul { + background:url(../images/left_success.png) no-repeat 0 0; + padding-left:42px; margin-bottom: 5px; - /*width: 800px;*/ } -.info_success ul { + +.info_success li { + margin-bottom: 5px; margin-top: 5px; background:url(../images/success.png) repeat-x 0 0; - line-height:26px; -} -.info_success li { + line-height:26px; + background-attachment: scroll; background-clip: border-box; background-color: transparent; - /*background-image: url("../images/true.png");*/ background-origin: padding-box; background-position: 0 0; - background-repeat: no-repeat; background-size: auto auto; color: #006729; font-style: italic; -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.